/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

:root {
    --primary-color: #00FFA3;
    --secondary-color: #00D9FF;
    --accent-color: #DC1FFF;
    --dark-bg: #0a0e27;
    --darker-bg: #050816;
    --card-bg: rgba(21, 25, 50, 0.6);
    --text-color: #ffffff;
    --text-muted: #b8c5d6;
    --gradient: linear-gradient(135deg, #00FFA3 0%, #00D9FF 50%, #DC1FFF 100%);
    --gradient-alt: linear-gradient(135deg, #DC1FFF 0%, #00D9FF 50%, #00FFA3 100%);
    --shadow: 0 10px 40px rgba(0, 255, 163, 0.3);
    --glow: 0 0 40px rgba(0, 255, 163, 0.4), 0 0 80px rgba(0, 217, 255, 0.2);
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, 
        #050816 0%,
        #060918 2%,
        #070a1b 4%,
        #080b1e 6%,
        #090c21 8%,
        #0a0d24 10%,
        #0b0e26 12%,
        #0a0e27 14%,
        #090d25 16%,
        #080c23 18%,
        #080b20 20%,
        #090c22 22%,
        #0a0d24 24%,
        #0b0e25 26%,
        #0a0d24 28%,
        #090c22 30%,
        #080b20 32%,
        #070a1e 34%,
        #070a1d 36%,
        #060919 38%,
        #050816 40%,
        #060918 42%,
        #070a1a 44%,
        #080b1d 46%,
        #080b1e 48%,
        #0a0e27 50%,
        #0b0f29 52%,
        #0c1028 54%,
        #0c112b 56%,
        #0c1230 58%,
        #0c112d 60%,
        #0b1029 62%,
        #0a0f27 64%,
        #0a0e27 66%,
        #090d25 68%,
        #080c23 70%,
        #080b20 72%,
        #070a1e 74%,
        #070a1d 76%,
        #06091a 78%,
        #060918 80%,
        #050816 82%,
        #060918 84%,
        #070a1b 86%,
        #080b1e 88%,
        #090c21 90%,
        #0a0d24 92%,
        #0b0e26 94%,
        #0a0e27 96%,
        #080c23 98%,
        #050816 100%);
    background-attachment: fixed;
    background-size: 100% 100%;
    background-position: center;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: 
        radial-gradient(ellipse at 15% 10%, rgba(0, 255, 163, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 85% 20%, rgba(0, 217, 255, 0.05) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 40%, rgba(0, 200, 200, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 70%, rgba(0, 217, 255, 0.04) 0%, transparent 45%),
        radial-gradient(ellipse at 90% 85%, rgba(0, 180, 180, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 10% 50%, rgba(0, 255, 163, 0.04) 0%, transparent 35%);
    animation: backgroundPulse 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navbar */
.navbar {
    background: rgba(10, 14, 39, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 163, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 255, 163, 0.5));
}

.logo img {
    width: 40px;
    height: 40px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 163, 0.4);
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: rotate(360deg) scale(1.1);
    box-shadow: var(--glow);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: transparent;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 163, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 31, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.glitch {
    position: relative;
}

.tagline {
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn {
    padding: 16px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient);
    background-size: 200% 200%;
    color: var(--dark-bg);
    box-shadow: 0 8px 30px rgba(0, 255, 163, 0.4);
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--glow);
}

.btn-secondary {
    background: rgba(0, 255, 163, 0.08);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::after {
    opacity: 0.15;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 255, 163, 0.5);
    color: #fff;
}

/* Countdown Timer */
.countdown-container {
    margin: 1.5rem 0;
    animation: fadeInUp 0.8s ease 0.7s both;
    padding: 1.5rem;
    background: rgba(21, 25, 50, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 163, 0.3);
    box-shadow: 0 0 40px rgba(0, 255, 163, 0.2), 
                0 0 80px rgba(0, 217, 255, 0.1),
                inset 0 0 40px rgba(0, 255, 163, 0.05);
}

.countdown-title {
    font-size: 1.3rem;
    text-align: center;
    background: var(--gradient);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
    animation: gradientShift 3s ease infinite;
    filter: drop-shadow(0 0 20px rgba(0, 255, 163, 0.5));
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.countdown-item {
    background: rgba(0, 255, 163, 0.05);
    backdrop-filter: blur(20px);
    padding: 1.2rem 1.5rem;
    border-radius: 15px;
    border: 2px solid;
    border-image: var(--gradient) 1;
    border-radius: 15px;
    min-width: 85px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 255, 163, 0.08),
                0 0 20px rgba(0, 217, 255, 0.05),
                inset 0 0 10px rgba(0, 255, 163, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(0, 255, 163, 0.02) 50%, 
        transparent 70%);
    animation: shine 6s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.countdown-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 50px rgba(0, 255, 163, 0.6),
                0 0 100px rgba(0, 217, 255, 0.4),
                inset 0 0 50px rgba(0, 255, 163, 0.2);
    border-image: var(--gradient-alt) 1;
}

.countdown-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--gradient);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.3rem;
    animation: gradientShift 3s ease infinite;
    position: relative;
    z-index: 1;
}

.countdown-label {
    display: block;
    font-size: 0.8rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    filter: drop-shadow(0 0 5px rgba(0, 255, 163, 0.5));
    position: relative;
    z-index: 1;
}

.countdown-date {
    text-align: center;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 163, 0.3));
}

.contract-address {
    animation: fadeInUp 0.8s ease 0.8s both;
}

.contract-address p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.address-box {
    display: flex;
    align-items: center;
    background: rgba(21, 25, 50, 0.4);
    backdrop-filter: blur(20px);
    padding: 15px 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 163, 0.3);
    gap: 10px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37),
                inset 0 0 20px rgba(0, 255, 163, 0.05);
    transition: all 0.3s ease;
}

.address-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px 0 rgba(0, 255, 163, 0.3),
                inset 0 0 30px rgba(0, 255, 163, 0.1);
}

.address-box span {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.copy-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.copy-btn:hover {
    transform: scale(1.2);
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 50px rgba(0, 255, 163, 0.5));
    border: 3px solid var(--primary-color);
    box-shadow: var(--glow);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background: transparent;
}

.about h2, .tokenomics h2, .gallery h2, .how-to-buy h2, .roadmap h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    text-align: center;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: rgba(21, 25, 50, 0.4);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(0, 255, 163, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature:hover::before {
    opacity: 0.05;
}

.feature:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: var(--glow);
}

.feature .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Tokenomics Section */
.tokenomics {
    padding: 80px 0;
    background: transparent;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.token-card {
    background: rgba(21, 25, 50, 0.5);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(0, 255, 163, 0.2);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.token-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 25px;
    background: var(--gradient);
    background-size: 400% 400%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    animation: gradientRotate 8s ease infinite;
}

@keyframes gradientRotate {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.token-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(21, 25, 50, 0.9);
    border-radius: 25px;
    z-index: -1;
}

.token-card:hover::before {
    opacity: 1;
}

.token-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--glow), 0 20px 60px rgba(0, 0, 0, 0.5);
}

.token-card h3 {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.big-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Why DFROG Section */
.why-dfrog {
    padding: 80px 0;
    background: transparent;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.why-card {
    background: rgba(21, 25, 50, 0.5);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(0, 255, 163, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.why-card:hover::before {
    opacity: 0.08;
}

.why-card > * {
    position: relative;
    z-index: 1;
}

.why-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: var(--glow);
}

.why-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0, 255, 163, 0.3));
}

.why-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.why-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-btn i {
    font-size: 1.3rem;
}

.social-btn.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #00aced 100%);
    color: white;
}

.social-btn.twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
    color: white;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1);
}

/* How to Buy Section */
.how-to-buy {
    padding: 80px 0;
    background: transparent;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    background: rgba(21, 25, 50, 0.5);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(0, 255, 163, 0.15);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-alt);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.step:hover::before {
    opacity: 0.05;
}

.step > * {
    position: relative;
    z-index: 1;
}

.step:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: var(--glow);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 255, 163, 0.4);
    animation: gradientShift 3s ease infinite;
    transition: all 0.4s ease;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(360deg);
    box-shadow: var(--glow);
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-muted);
}

.buy-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Roadmap Section */
.roadmap {
    padding: 80px 0;
    background: transparent;
}

/* Merchandise Section */
.merch {
    padding: 80px 0;
    background: transparent;
}

.merch-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: -1.5rem;
    margin-bottom: 3rem;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.merch-item {
    background: rgba(21, 25, 50, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid rgba(0, 255, 163, 0.15);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.merch-item:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: var(--glow);
}

.merch-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 255, 163, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.merch-item:hover .product-image {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.product-image.fallback-image {
    object-fit: contain;
    padding: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.merch-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0, 255, 163, 0.4);
}

.merch-badge.hot {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.merch-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.product-mockup {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
    padding: 2rem;
}

.logo-on-merch {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
}

.merch-item:hover .logo-on-merch {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 15px 40px rgba(0, 255, 163, 0.6));
}

.hoodie-mockup {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hoodie-black-mockup {
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a1a 100%);
}

.tshirt-mockup {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.tshirt-green-mockup {
    background: linear-gradient(135deg, #00FFA3 0%, #00D9FF 100%);
}

.merch-item:hover .product-mockup {
    transform: scale(1.05);
}

.merch-info {
    padding: 1.5rem;
}

.merch-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.merch-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.merch-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-token {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px rgba(0, 255, 163, 0.5));
}

.merch-sizes {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.size-btn {
    padding: 8px 15px;
    background: rgba(0, 255, 163, 0.1);
    border: 1px solid rgba(0, 255, 163, 0.3);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-btn:hover, .size-btn.active {
    background: rgba(0, 255, 163, 0.2);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.btn-merch {
    width: 100%;
    padding: 12px;
    background: var(--gradient);
    background-size: 200% 200%;
    border: none;
    border-radius: 12px;
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: gradientShift 3s ease infinite;
}

.btn-merch:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 163, 0.4);
}

.merch-footer {
    text-align: center;
    padding: 2rem;
    background: rgba(21, 25, 50, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 163, 0.1);
}

.merch-footer p {
    color: var(--text-muted);
    margin: 0.5rem 0;
    font-size: 1rem;
}

.merch-note {
    font-size: 0.9rem !important;
    color: var(--primary-color) !important;
}

.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 163, 0.5);
}

.roadmap-item {
    padding-left: 80px;
    margin-bottom: 3rem;
    position: relative;
}

.roadmap-marker {
    position: absolute;
    left: 18px;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--gradient);
    background-size: 200% 200%;
    border-radius: 50%;
    border: 4px solid var(--dark-bg);
    box-shadow: 0 0 25px rgba(0, 255, 163, 0.6), 0 0 50px rgba(0, 217, 255, 0.3);
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% {
        box-shadow: 0 0 25px rgba(0, 255, 163, 0.6), 0 0 50px rgba(0, 217, 255, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 35px rgba(0, 255, 163, 0.8), 0 0 70px rgba(0, 217, 255, 0.5);
        transform: scale(1.1);
    }
}

.roadmap-item.completed .roadmap-marker {
    background: var(--primary-color);
    box-shadow: 0 0 35px rgba(0, 255, 163, 1), 0 0 70px rgba(0, 255, 163, 0.6);
    animation: markerPulseCompleted 2s ease-in-out infinite;
}

@keyframes markerPulseCompleted {
    0%, 100% {
        box-shadow: 0 0 35px rgba(0, 255, 163, 1), 0 0 70px rgba(0, 255, 163, 0.6);
    }
    50% {
        box-shadow: 0 0 45px rgba(0, 255, 163, 1), 0 0 90px rgba(0, 255, 163, 0.8);
    }
}

.roadmap-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.roadmap-item ul {
    list-style: none;
}

.roadmap-item li {
    color: var(--text-muted);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.roadmap-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.roadmap-item.completed li::before {
    content: '✓';
}

/* Footer */
footer {
    background: var(--darker-bg);
    padding: 2.5rem 0 1rem;
    border-top: 1px solid rgba(0, 255, 163, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 163, 0.3);
}

.footer-logo p {
    color: var(--text-muted);
}

.footer-links h4, .footer-social h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-links a, .footer-social a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-social a i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.footer-links a:hover, .footer-social a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.8rem !important;
    color: #ff6b6b !important;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid rgba(0, 255, 163, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .burger {
        display: block;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 300px;
        margin: 0 auto;
    }

    .countdown {
        gap: 0.8rem;
    }

    .countdown-item {
        padding: 1.5rem 1rem;
        min-width: 75px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .countdown-title {
        font-size: 1.3rem;
    }

    .about h2, .tokenomics h2, .gallery h2, .how-to-buy h2, .roadmap h2 {
        font-size: 2rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .tokenomics-grid {
        grid-template-columns: 1fr;
    }

    .roadmap-timeline::before {
        left: 15px;
    }

    .roadmap-marker {
        left: 5px;
    }

    .roadmap-item {
        padding-left: 50px;
    }
}

/* Animations */
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Scroll animations */
section {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
