:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #FFD700;
    --text-color: #333;
    --background-color: #F5F5DC;
    --scrollbar-thumb: #D2691E;
    --scrollbar-track: #F5F5DC;
    --gradient-1: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    --gradient-2: linear-gradient(135deg, var(--accent-color), #FFA500);
    --gradient-3: linear-gradient(90deg, #8B4513, #D2691E);
    --gradient-4: linear-gradient(45deg, var(--accent-color), #FFA500);
    --card-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    --hover-transform: translateY(-5px) rotate(2deg);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb);
    border-radius: 20px;
    border: 3px solid var(--scrollbar-track);
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 0L100 50L50 100L0 50Z" fill="%238B4513" fill-opacity="0.1"/></svg>');
    background-size: 50px 50px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

header {
    background: var(--gradient-1);
    padding: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-2);
    animation: rainbow 3s linear infinite;
    background-size: 200% 200%;
}

@keyframes rainbow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

h1, h2, h3 {
    font-family: 'Bangers', cursive;
    letter-spacing: 2px;
}

.logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 50%;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1) rotate(10deg);
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

h1 {
    color: var(--accent-color);
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 5px var(--accent-color), 0 0 10px var(--accent-color); }
    to { text-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color); }
}

.hero {
    position: relative;
    text-align: center;
    padding: 40px 0;
}

.banner {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.banner:hover {
    transform: scale(1.02);
}

.hero-text {
    margin-top: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    max-width: 800px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    animation: fadeIn 1s ease-out;
}

.hero-text::before {
    content: '🤠';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 3rem;
    opacity: 0.2;
    transform: rotate(15deg);
}

.about {
    padding: 40px 0;
    text-align: center;
    background-color: var(--secondary-color);
    color: white;
    position: relative;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--accent-color));
    animation: rainbow 3s linear infinite;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px 20px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px) rotate(2deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

footer {
    background-color: var(--primary-color);
    color: var(--accent-color);
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--accent-color));
    animation: rainbow 3s linear infinite;
}

nav {
    margin-top: 20px;
}

nav a {
    color: var(--accent-color);
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

nav a:hover {
    color: white;
}

nav a:hover::after {
    width: 100%;
}

.cta-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-2);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: pulse 2s infinite;
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(5px);
}

.stat-card:hover {
    transform: translateY(-5px) rotate(2deg);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.community {
    text-align: center;
    padding: 60px 0;
    background-color: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h40v40H0z" fill="none"/><path d="M20 0L40 20L20 40L0 20Z" fill="%23FFD700" fill-opacity="0.05"/></svg>');
    background-size: 40px 40px;
    animation: backgroundSlide 20s linear infinite;
}

@keyframes backgroundSlide {
    from { background-position: 0 0; }
    to { background-position: 40px 40px; }
}

.community-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.yeehaw-text {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin: 20px 0;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 20px 30px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--accent-color);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.social-link i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.social-link span {
    font-size: 1.1rem;
    font-weight: bold;
}

.social-link:hover {
    transform: translateY(-5px) rotate(5deg);
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-link::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.2) 0%, rgba(255,215,0,0) 70%);
    transform: scale(0);
    transition: transform 0.6s ease-out;
}

.social-link:hover::before {
    transform: scale(1);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.community-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.lasso {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotateLasso 10s linear infinite;
}

.horseshoe {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 4px solid var(--accent-color);
    border-radius: 40px 40px 0 0;
    opacity: 0.3;
    animation: swingHorseshoe 3s ease-in-out infinite;
}

@keyframes rotateLasso {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes swingHorseshoe {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

.footer-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.footer-decoration {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.footer-decoration span {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer-decoration span:nth-child(2) {
    animation-delay: 0.3s;
}

.footer-decoration span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes dance {
    0%, 100% { transform: translateY(0) rotate(0); }
    25% { transform: translateY(-5px) rotate(-10deg); }
    75% { transform: translateY(-5px) rotate(10deg); }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }

    nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 80%;
    }

    .yeehaw-text {
        font-size: 1.2rem;
    }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particles div {
    pointer-events: none;
    position: absolute;
    animation: float 5s ease-in-out infinite;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.token-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    animation: slideIn 1s ease-out;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

.info-item i {
    font-size: 2rem;
    color: var(--accent-color);
}

.roadmap {
    margin-top: 60px;
    padding: 40px 0;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.timeline-item {
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-out;
    animation-fill-mode: both;
}

.timeline-item:hover {
    transform: var(--hover-transform);
    background: rgba(255, 255, 255, 0.2);
}

.timeline-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.tokenomics {
    padding: 80px 0;
    background: var(--gradient-3);
    position: relative;
    overflow: hidden;
}

.tokenomics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0L60 30L30 60L0 30Z" fill="%23FFD700" fill-opacity="0.05"/></svg>');
    background-size: 60px 60px;
    animation: backgroundSlide 30s linear infinite;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tokenomics-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
    animation: fadeIn 0.5s ease-out;
    animation-fill-mode: both;
}

.tokenomics-card:hover {
    transform: var(--hover-transform);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
}

.tokenomics-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.how-to-buy {
    padding: 80px 0;
    background: var(--background-color);
    position: relative;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    position: relative;
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-out;
    animation-fill-mode: both;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.step-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin: 20px 0;
}

.step-card:hover {
    transform: var(--hover-transform);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.community-stats .stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.community-stats .stat:hover {
    transform: var(--hover-transform);
    background: rgba(255, 255, 255, 0.2);
}

.community-stats .stat i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.community-stats .count {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin: 10px 0;
}

.faq {
    padding: 80px 0;
    background: var(--background-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: var(--hover-transform);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-section a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 10px 0;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
    transform: translateX(10px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .token-info {
        grid-template-columns: 1fr;
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .community-stats {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section a:hover {
        transform: translateY(-5px);
    }
}

@keyframes shine {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

.hero h1 {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

.animate-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.particles div {
    pointer-events: none;
    position: absolute;
    animation: float 5s ease-in-out infinite;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }

.step-card:nth-child(1) { animation-delay: 0.2s; }
.step-card:nth-child(2) { animation-delay: 0.4s; }
.step-card:nth-child(3) { animation-delay: 0.6s; }
.step-card:nth-child(4) { animation-delay: 0.8s; }

.tokenomics-card:nth-child(1) { animation-delay: 0.2s; }
.tokenomics-card:nth-child(2) { animation-delay: 0.4s; }
.tokenomics-card:nth-child(3) { animation-delay: 0.6s; }
.tokenomics-card:nth-child(4) { animation-delay: 0.8s; }

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
} 