/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    color: #2c3e2d;
    background: #000;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.video-background:not(:has(video)) .video-fallback {
    opacity: 1;
}

.video-background video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 1s ease-in-out;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 248, 220, 0.15), 
        rgba(255, 235, 205, 0.1),
        rgba(144, 238, 144, 0.05)
    );
    z-index: 1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(25px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInDown 0.8s ease-out 0.2s forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(30px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0.5rem 0 4rem;
    gap: 4rem;
}

.coin-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e2d;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
    font-family: 'Arial', sans-serif;
    text-align: left;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    margin-right: 4rem;
}

.coin-title:hover {
    transform: translateY(-2px);
    text-shadow: 
        0 3px 6px rgba(255, 255, 255, 0.4),
        0 6px 12px rgba(255, 255, 255, 0.3);
}

.coin-title:active {
    transform: translateY(0);
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.navigation {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #2c3e2d;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link.active {
    color: #22c55e;
    position: relative;
}

.nav-link.active::after {
    width: 100%;
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.nav-link:active {
    transform: translateY(0);
}

/* Main Content */
.main-content {
    margin-top: 100px;
    padding: 2rem 0;
}

/* Content Boxes - Enhanced Glassmorphism */
.content-box {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(25px);
    border-radius: 24px;
    padding: 2rem 3rem;
    margin: 1.5rem auto;
    max-width: 1400px;
    min-height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
}

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

/* Hero Section - Professional Layout */
.hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    margin-top: 1rem;
}

.hero-content {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    overflow: visible;
    padding: 1rem 2rem;
}

.main-title {
    font-size: 12rem;
    font-weight: bold;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #22c55e, #16a34a, #15803d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(34, 197, 94, 0.3);
    letter-spacing: -0.05em;
    line-height: 0.7;
    width: 100%;
    text-align: center;
    padding: 0.5rem 2rem;
    overflow: visible;
    position: relative;
    z-index: 10;
    white-space: nowrap;
    box-sizing: border-box;
}

.hero-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(255, 255, 255, 0.3);
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
    text-align: center;
}

.hero-divider {
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.6), transparent);
    margin: 1.5rem auto 2rem;
    border-radius: 1px;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.contract-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 0.8rem 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.8rem;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.contract-info {
    text-align: left;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contract-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    font-weight: 500;
    display: block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.contract-address {
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    word-break: break-all;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    margin: 0;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
    max-width: 250px;
}

.copy-button {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.8rem 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 4px 12px rgba(34, 197, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-family: 'Arial', sans-serif;
    flex-shrink: 0;
}

.copy-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 16px rgba(34, 197, 94, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.copy-button:active {
    transform: translateY(0);
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 8px 24px rgba(34, 197, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-family: 'Arial', sans-serif;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 32px rgba(34, 197, 94, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.cta-button:active {
    transform: translateY(-2px);
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}


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

.hero-tagline {
    font-size: 1.4rem;
    color: #2c3e2d;
    margin-bottom: 2rem;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    font-style: italic;
    opacity: 0;
    animation: taglineFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

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

.scroll-indicator {
    margin-top: 3rem;
    text-align: center;
    opacity: 0;
    animation: scrollIndicatorFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 1.5s forwards;
}

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

.scroll-arrow {
    display: inline-block;
    cursor: pointer;
    color: #22c55e;
    font-size: 2rem;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scroll-arrow:hover {
    color: #16a34a;
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}


@keyframes titleGlow {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.contract-section {
    margin-top: 2rem;
}

.contract-label {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e2d;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    font-weight: 500;
}

.contract-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contract-address {
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    word-break: break-all;
    max-width: 400px;
    color: #2c3e2d;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.copy-button {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    position: relative;
    box-shadow: 
        0 4px 12px rgba(34, 197, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
}

.copy-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 20px rgba(34, 197, 94, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.copy-button:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 
        0 2px 4px rgba(45, 143, 71, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* CTA Button */
.cta-section {
    margin-top: 2rem;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 16px rgba(34, 197, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 24px rgba(34, 197, 94, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Professional Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #1cf74c, #16d43a);
    color: white;
    box-shadow: 
        0 4px 8px rgba(28, 247, 76, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 
        0 6px 12px rgba(28, 247, 76, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.1),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:active {
    box-shadow: 
        0 2px 4px rgba(28, 247, 76, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Button Ripple Effect */
.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:active::before {
    width: 300px;
    height: 300px;
}

/* Scroll Animations */
.section {
    padding: 2rem;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section:nth-child(1) { transition-delay: 0.1s; }
.section:nth-child(2) { transition-delay: 0.2s; }
.section:nth-child(3) { transition-delay: 0.3s; }
.section:nth-child(4) { transition-delay: 0.4s; }
.section:nth-child(5) { transition-delay: 0.5s; }

.section-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e2d;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.section-description {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e2d;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    line-height: 1.6;
    opacity: 0.8;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

/* Tokenomics Grid - Landscape Layout */
.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.tokenomics-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.tokenomics-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 32px rgba(34, 197, 94, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.tokenomics-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.tokenomics-card h3 {
    color: #2c3e2d;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.tokenomics-card p {
    color: #2c3e2d;
    font-size: 1rem;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    opacity: 0.8;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
    margin-bottom: 0.5rem;
}

.tokenomics-description {
    color: #2c3e2d;
    font-size: 0.85rem;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    opacity: 0.7;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
    line-height: 1.4;
    margin-bottom: 0;
}

.launch-strategy {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(34, 197, 94, 0.2);
    text-align: center;
}

.launch-strategy p {
    color: #2c3e2d;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    opacity: 0.8;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    margin: 0;
}

/* About Section - Premium Layout */
.about-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.about-text-section {
    flex: 1;
    padding-right: 1rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: left;
    font-family: 'Arial', sans-serif;
    color: #2c3e2d;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.about-features {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(25px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(34, 197, 94, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 0 30px rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    filter: drop-shadow(0 2px 4px rgba(34, 197, 94, 0.2));
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    transform: scale(1.1);
}

.feature-item:hover .feature-icon svg {
    filter: drop-shadow(0 4px 8px rgba(34, 197, 94, 0.3));
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
    font-family: 'Arial', sans-serif;
}

.feature-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #2c3e2d;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
    font-family: 'Arial', sans-serif;
    margin: 0;
}

.tokenomics-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.phase-icon {
    margin-bottom: 0.5rem;
}

.phase-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-content h4 {
    color: #22c55e;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.feature-content p {
    color: #2c3e2d;
    line-height: 1.4;
    font-size: 0.85rem;
    margin: 0;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

/* Stream Section */
.stream-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.stream-embed {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stream-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.stream-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(34, 197, 94, 0.1);
}

.stream-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.05) 0%, 
        rgba(5, 150, 105, 0.08) 50%, 
        rgba(34, 197, 94, 0.05) 100%);
    opacity: 0.6;
}

.stream-placeholder::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.stream-content {
    text-align: center;
    z-index: 2;
    position: relative;
    padding: 2rem;
}

.stream-content h3 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stream-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.stream-button {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(34, 197, 94, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stream-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.stream-button:hover::before {
    left: 100%;
}

.stream-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(34, 197, 94, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.stream-button:active {
    transform: translateY(-1px) scale(0.98);
}

.stream-button svg {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.stream-button:hover svg {
    transform: scale(1.15) rotate(5deg);
}

.stream-info {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 500px;
    display: flex;
    flex-direction: column;
}

.stream-info h3 {
    color: #2d8f47;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.stream-info p {
    margin-bottom: 1rem;
    color: #ccc;
    line-height: 1.6;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
}

.schedule-times {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Custom scrollbar styling */
.schedule-times::-webkit-scrollbar {
    width: 6px;
}

.schedule-times::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.schedule-times::-webkit-scrollbar-thumb {
    background: rgba(45, 143, 71, 0.3);
    border-radius: 3px;
}

.schedule-times::-webkit-scrollbar-thumb:hover {
    background: rgba(45, 143, 71, 0.5);
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(45, 143, 71, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(45, 143, 71, 0.2);
    transition: all 0.3s ease;
}

.schedule-item:hover {
    background: rgba(45, 143, 71, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 143, 71, 0.2);
}

.schedule-item .day {
    font-weight: bold;
    color: #2d8f47;
}

.schedule-item .time {
    color: white;
    font-size: 0.9rem;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
}

/* Sweepstakes Hype Section */
.sweepstakes-hype {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(45, 143, 71, 0.1), rgba(30, 107, 58, 0.05));
}

.hype-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(45, 143, 71, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 107, 58, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(45, 143, 71, 0.05) 0%, transparent 50%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.hype-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #2d8f47;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-family: 'Arial', sans-serif;
    animation: pulse 2s ease-in-out infinite;
}

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

.hype-description {
    font-size: 1.2rem;
    color: #ccc;
    text-align: center;
    margin-bottom: 2.5rem;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    line-height: 1.6;
}

.sweepstakes-form {
    margin-bottom: 2rem;
}

.milestone-progress {
    margin-top: 2rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    color: #2c3e2d;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 4px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.3);
}

.next-prize {
    text-align: center;
    color: #22c55e;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(34, 197, 94, 0.3);
}

/* Sweepstakes Section - Premium Horizontal Layout */
.sweepstakes-premium-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-top: 2rem;
    min-height: 200px;
}

.sweepstakes-left {
    flex: 1;
    max-width: 60%;
}

.sweepstakes-content {
    text-align: left;
}

.sweepstakes-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 2rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.sweepstakes-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.sweepstakes-description {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    max-width: 500px;
}

.holder-access-text {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    text-align: right;
    margin: 0;
    opacity: 0.7;
}

.sweepstakes-right {
    flex: 1;
    max-width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sweepstakes-action {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.join-now-button {
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #FFD700;
    border: none;
    border-radius: 16px;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 8px 24px rgba(34, 197, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 20px rgba(34, 197, 94, 0.2);
    font-family: 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.join-now-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 32px rgba(34, 197, 94, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 30px rgba(34, 197, 94, 0.3);
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.join-now-button:active {
    transform: translateY(-1px);
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.join-now-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.join-now-button:hover::before {
    left: 100%;
}

.legal-disclaimer-text {
    font-size: 0.75rem;
    color: #888;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    margin: 0;
    text-align: center;
    max-width: 250px;
    line-height: 1.3;
}

/* Sweepstakes Section - Enhanced Layout */
.sweepstakes-enhanced-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-top: 2rem;
    min-height: 250px;
    position: relative;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(30px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(255, 255, 255, 0.1);
}

.sweepstakes-enhanced-layout::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: -2rem;
    right: -2rem;
    bottom: -1rem;
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.05) 0%, 
        rgba(255, 215, 0, 0.03) 50%, 
        rgba(34, 197, 94, 0.05) 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.sweepstakes-left-column {
    flex: 1;
    max-width: 65%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sweepstakes-main-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.sweepstakes-heading {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 2.2rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.sweepstakes-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sweepstakes-icon svg {
    width: 2rem;
    height: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.sweepstakes-description {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.6;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    max-width: 600px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.sweepstakes-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

.holder-access-info,
.legal-info {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #666;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.detail-icon svg {
    width: 1.2rem;
    height: 1.2rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.detail-text {
    flex: 1;
}

.terms-link {
    color: #22c55e;
    text-decoration: underline;
    text-decoration-color: rgba(34, 197, 94, 0.3);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

.terms-link:hover {
    color: #16a34a;
    text-decoration-color: #22c55e;
}

.sweepstakes-right-column {
    flex: 1;
    max-width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sweepstakes-action-area {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.join-now-enhanced-button {
    padding: 2.5rem 4rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #FFD700;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 
        0 12px 40px rgba(34, 197, 94, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        0 0 30px rgba(34, 197, 94, 0.2);
    font-family: 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.join-now-enhanced-button:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, #16a34a, #15803d);
    box-shadow: 
        0 20px 50px rgba(34, 197, 94, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        0 0 40px rgba(34, 197, 94, 0.3);
}

.join-now-enhanced-button:active {
    transform: translateY(-2px) scale(0.98);
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(34, 197, 94, 0.25),
        inset 0 4px 8px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(34, 197, 94, 0.15);
}

.join-now-enhanced-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.join-now-enhanced-button:hover::before {
    left: 100%;
}

.terms-link-under-button {
    color: #22c55e;
    text-decoration: underline;
    text-decoration-color: rgba(34, 197, 94, 0.3);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    margin-top: 1rem;
    display: block;
    text-align: center;
}

.terms-link-under-button:hover {
    color: #16a34a;
    text-decoration-color: #22c55e;
    transform: translateY(-1px);
}

.main-cta-button {
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #FFD700;
    border: none;
    border-radius: 14px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 
        0 6px 20px rgba(34, 197, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-family: 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.main-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 10px 28px rgba(34, 197, 94, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.main-cta-button:active {
    transform: translateY(-1px);
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.main-cta-button:hover::before {
    left: 100%;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem 1rem;
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
}

.modal-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 68, 68, 0.1);
    color: #dc2626;
    transform: scale(1.1);
}

.modal-body {
    padding: 1rem 2rem 2rem;
}

.modal-description {
    color: #555;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.5;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e2d;
    font-family: 'Arial', sans-serif;
}

.input-with-symbol {
    position: relative;
    display: flex;
    align-items: center;
}

.at-symbol {
    position: absolute;
    left: 1rem;
    color: #22c55e;
    font-weight: bold;
    font-size: 1rem;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    z-index: 2;
    pointer-events: none;
}

.form-input {
    padding: 1rem 1.5rem 1rem 2.5rem;
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    color: #1a1a1a;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: #22c55e;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.form-input::placeholder {
    color: rgba(26, 26, 26, 0.6);
}

.modal-submit-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 4px 12px rgba(34, 197, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-family: 'Arial', sans-serif;
    margin-top: 1rem;
}

.modal-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 20px rgba(34, 197, 94, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.modal-submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Terms & Conditions Modal */
.terms-modal-content {
    max-width: 800px;
    max-height: 90vh;
}

#termsModal.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.terms-modal-body {
    padding: 1rem 2rem 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.terms-update-date {
    font-size: 0.9rem;
    color: #666;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
}

.terms-content {
    line-height: 1.6;
}

.terms-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.terms-section-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.terms-text {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1rem;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    line-height: 1.6;
}

.terms-text:last-child {
    margin-bottom: 0;
}

.terms-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.terms-list li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    line-height: 1.5;
}

.terms-list li:last-child {
    margin-bottom: 0;
}

.contact-email {
    color: #22c55e;
    text-decoration: underline;
    text-decoration-color: rgba(34, 197, 94, 0.3);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: #16a34a;
    text-decoration-color: #22c55e;
}

/* Success Overlay */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-overlay.active .success-content {
    transform: scale(1) translateY(0);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: successBounce 0.6s ease-out;
}

.success-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.success-message {
    color: #555;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.5;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
}

.success-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 4px 12px rgba(34, 197, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-family: 'Arial', sans-serif;
}

.success-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 20px rgba(34, 197, 94, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #16a34a, #15803d);
}

@keyframes successBounce {
    0% { transform: scale(0.3); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Section Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.3), transparent);
    margin: 1.5rem 0;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

/* Holder Privilege Section - Compact */
.holder-privilege {
    text-align: center;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.holder-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.holder-description {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.holder-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Legal Disclaimer Section */
.legal-disclaimer {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}

.legal-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.legal-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.legal-list li {
    color: #555;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    font-size: 0.95rem;
}

.legal-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Sweepstake Timeline */
.timeline-container {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.1);
}

.sweepstake-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 3rem 0;
    padding: 0 4rem;
    gap: 2rem;
}

.timeline-line {
    position: absolute;
    top: 30px;
    left: 4rem;
    right: 4rem;
    height: 3px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 2px;
    z-index: 1;
}

.milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 140px;
    margin: 0 1rem;
}

.milestone-marker {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.milestone.completed .milestone-marker {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 
        0 0 20px rgba(34, 197, 94, 0.4),
        0 4px 12px rgba(34, 197, 94, 0.3);
    animation: completedGlow 2s ease-in-out infinite alternate;
}

.milestone.next .milestone-marker {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
    animation: nextPulse 2s ease-in-out infinite;
}

.milestone.locked .milestone-marker {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
    border: 2px solid #9ca3af;
    box-shadow: 0 2px 8px rgba(156, 163, 175, 0.3);
}

.milestone-label svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.milestone-label {
    font-size: 0.8rem;
    text-align: center;
    color: #2c3e2d;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
    line-height: 1.3;
    max-width: 100px;
    word-wrap: break-word;
}

.timeline-description {
    text-align: center;
    font-size: 0.9rem;
    color: #2c3e2d;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    opacity: 0.8;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
    margin-top: 2rem;
    font-style: italic;
}

/* Animations */
@keyframes completedGlow {
    0% {
        box-shadow: 
            0 0 20px rgba(34, 197, 94, 0.4),
            0 4px 12px rgba(34, 197, 94, 0.3);
    }
    100% {
        box-shadow: 
            0 0 30px rgba(34, 197, 94, 0.6),
            0 4px 16px rgba(34, 197, 94, 0.4);
    }
}

@keyframes nextPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(107, 114, 128, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
    }
}

/* Roadmap Timeline - Landscape Layout */
.roadmap-timeline {
    margin-top: 2rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: #2d8f47;
    z-index: 1;
}

.roadmap-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 250px;
}

.roadmap-phase {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.phase-number {
    width: 40px;
    height: 40px;
    background: #2d8f47;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 4px 12px rgba(45, 143, 71, 0.3);
}

.roadmap-content {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-align: center;
    width: 100%;
}

.roadmap-content:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 32px rgba(34, 197, 94, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.roadmap-content h3 {
    color: #2c3e2d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.roadmap-content p {
    line-height: 1.5;
    color: #2c3e2d;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    opacity: 0.8;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.roadmap-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.roadmap-phase {
    background: linear-gradient(135deg, #2d8f47, #1e6b3a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    min-width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.roadmap-item h3 {
    color: #2d8f47;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.roadmap-item p {
    line-height: 1.6;
    color: #ccc;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 3rem 0;
    margin-top: 4rem;
    box-shadow: 
        0 -8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c3e2d;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.footer-icon {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icon svg {
    width: 1.4rem;
    height: 1.4rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-icon svg:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(34, 197, 94, 0.3));
}

.footer-contract {
    margin-bottom: 1.5rem;
    color: #2c3e2d;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.footer-copyright {
    color: #2c3e2d;
    font-size: 1rem;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .coin-title {
        font-size: 1.8rem;
    }
    
    /* Hero Section Responsive */
    .main-title {
        font-size: 9rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .contract-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contract-info {
        text-align: center;
    }
    
    .cta-button {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .navigation {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        letter-spacing: 0.2px;
    }
    
    .main-title {
        font-size: 3.5rem;
    }
    
    .content-box {
        margin: 1rem;
        padding: 2rem;
        min-height: 350px;
        max-width: 90%;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .contract-container {
        flex-direction: column;
        align-items: center;
    }
    
    .contract-address {
        max-width: 100%;
        font-size: 0.9rem;
    }
    
    .roadmap-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .roadmap-phase {
        align-self: flex-start;
    }
    
    .tokenomics-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .stream-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stream-embed iframe {
        height: 300px;
    }
    
    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .sweepstakes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sweepstakes-card {
        padding: 1.5rem;
    }
    
    .market-value {
        font-size: 1.5rem;
    }
    
    .milestone-target {
        font-size: 1.4rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    /* Sweepstakes Tablet Responsive */
    .sweepstakes-enhanced-layout {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }
    
    .sweepstakes-left-column {
        max-width: 100%;
    }
    
    .sweepstakes-main-content {
        text-align: center;
    }
    
    .sweepstakes-heading {
        justify-content: center;
        font-size: 1.9rem;
    }
    
    .sweepstakes-icon svg {
        width: 1.7rem;
        height: 1.7rem;
    }
    
    .sweepstakes-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .sweepstakes-details {
        align-items: center;
    }
    
    .holder-access-info,
    .legal-info {
        justify-content: center;
        text-align: center;
        font-size: 0.85rem;
    }
    
    .sweepstakes-right-column {
        max-width: 100%;
    }
    
    .join-now-enhanced-button {
        padding: 2rem 3.5rem;
        font-size: 1.5rem;
        max-width: 350px;
        min-height: 70px;
    }
    
    .terms-link-under-button {
        font-size: 0.8rem;
        margin-top: 0.8rem;
    }
    
    /* About Section Tablet Responsive */
    .about-layout {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-text-section {
        padding-right: 0;
    }
    
    .about-text {
        font-size: 1rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .about-features {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }
    
    .feature-item {
        padding: 1.2rem;
    }
    
    .feature-icon svg {
        width: 1.8rem;
        height: 1.8rem;
    }
    
    .tokenomics-icon svg {
        width: 2rem;
        height: 2rem;
    }
    
    .phase-icon svg {
        width: 1.3rem;
        height: 1.3rem;
    }
    
    .feature-content h4 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .feature-content p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .sweepstake-subtitle {
        font-size: 1.1rem;
    }
    
    .sweepstake-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .input-container {
        max-width: 100%;
        gap: 1rem;
    }
    
    .handle-input {
        width: 100%;
    }
    
    .sweepstake-button {
        width: 100%;
        padding: 1.2rem 2rem;
    }
    
    .holder-title {
        font-size: 1.6rem;
    }
    
    .holder-subtitle {
        font-size: 1.1rem;
    }
    
    .holder-description,
    .holder-note {
        padding: 0 1rem;
    }
    
    .legal-title {
        font-size: 1.3rem;
    }
    
    .legal-list {
        padding: 0 1rem;
    }
    
    .section-divider {
        margin: 1.5rem 0;
    }
    
    /* Modal Tablet Responsive */
    .content-box {
        margin: 1rem;
        padding: 1.5rem 2rem;
        min-height: 250px;
        max-width: 95%;
    }
    
    .hero-section {
        min-height: 50vh;
        padding: 1rem;
    }
    
    .tokenomics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .sweepstake-timeline {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .milestone {
        max-width: 80px;
        margin-bottom: 1rem;
    }
    
    .milestone-marker {
        width: 50px;
        height: 50px;
    }
    
    .milestone-label {
        font-size: 0.7rem;
        max-width: 80px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .roadmap-timeline {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .roadmap-timeline::before {
        display: none;
    }
    
    .roadmap-item {
        max-width: 100%;
    }
    
    .roadmap-phase {
        margin-bottom: 1rem;
    }
    
    .phase-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .main-cta-button {
        padding: 1.3rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .modal-content {
        width: 90%;
        max-width: 450px;
    }
    
    .modal-header {
        padding: 1.8rem 2rem 1.2rem;
    }
    
    .modal-title {
        font-size: 1.7rem;
    }
    
    .modal-body {
        padding: 1.2rem 2rem 2rem;
    }
    
    .form-input {
        padding: 1rem 1.2rem 1rem 2.2rem;
    }
    
    .at-symbol {
        left: 0.9rem;
        font-size: 0.95rem;
    }
    
    .modal-submit-button {
        padding: 1rem 1.8rem;
    }
    
    .success-content {
        padding: 2.5rem 2rem;
        max-width: 380px;
    }
    
    .success-title {
        font-size: 1.7rem;
    }
    
    .success-icon {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 7rem;
    }
    
    /* Hero Section Responsive */
    .hero-tagline {
        font-size: 1rem;
    }
    
    .contract-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contract-info {
        text-align: center;
    }
    
    .contract-label {
        font-size: 0.8rem;
    }
    
    .contract-address {
        font-size: 0.75rem;
    }
    
    .copy-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .coin-title {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .content-box {
        margin: 0.5rem;
        padding: 1rem 1.5rem;
        min-height: 200px;
        max-width: 98%;
    }
    
    .hero-section {
        min-height: 40vh;
        padding: 0.5rem;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tokenomics-card {
        padding: 1.5rem 1rem;
    }
    
    .roadmap-timeline {
        gap: 1rem;
    }
    
    .roadmap-content {
        padding: 1rem;
    }
    
    .roadmap-content h3 {
        font-size: 1.1rem;
    }
    
    .roadmap-content p {
        font-size: 0.85rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
        letter-spacing: 0.1px;
    }
    
    .copy-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .sweepstakes-card {
        padding: 1rem;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .market-value {
        font-size: 1.3rem;
    }
    
    .milestone-target {
        font-size: 1.2rem;
    }
    
    .feature-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .sweepstake-timeline {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 0;
    }
    
    .milestone {
        max-width: 200px;
        width: 100%;
    }
    
    .milestone-marker {
        width: 60px;
        height: 60px;
    }
    
    .milestone-label {
        font-size: 0.8rem;
        max-width: 200px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .timeline-description {
        font-size: 0.8rem;
        margin-top: 1rem;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .roadmap-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 3rem;
    }
    
    .roadmap-phase {
        width: auto;
        margin-bottom: 1rem;
    }
    
    .roadmap-content {
        margin: 0;
        width: 100%;
    }
    
    .footer-social {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Sweepstakes Mobile Responsive */
    .sweepstakes-enhanced-layout {
        gap: 1.5rem;
        min-height: 200px;
    }
    
    .sweepstakes-heading {
        font-size: 1.6rem;
    }
    
    .sweepstakes-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .sweepstakes-description {
        font-size: 1rem;
    }
    
    .holder-access-info,
    .legal-info {
        font-size: 0.8rem;
    }
    
    .terms-link {
        font-size: 0.8rem;
    }
    
    .join-now-enhanced-button {
        padding: 1.8rem 3rem;
        font-size: 1.4rem;
        max-width: 300px;
        min-height: 65px;
        letter-spacing: 1px;
    }
    
    .terms-link-under-button {
        font-size: 0.75rem;
        margin-top: 0.6rem;
    }
    
    .modal-title {
        font-size: 1.3rem;
    }
    
    /* About Section Mobile Responsive */
    .about-layout {
        gap: 1.5rem;
    }
    
    .about-text {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.6;
        text-align: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
    
    .feature-icon svg {
        width: 1.6rem;
        height: 1.6rem;
    }
    
    .tokenomics-icon svg {
        width: 1.8rem;
        height: 1.8rem;
    }
    
    .phase-icon svg {
        width: 1.2rem;
        height: 1.2rem;
    }
    
    .feature-content h4 {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }
    
    .feature-content p {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .legal-title {
        font-size: 1.2rem;
    }
    
    .legal-list li {
        font-size: 0.9rem;
    }
    
    /* Modal Responsive */
    .main-cta-button {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .modal-content {
        width: 95%;
        max-width: 400px;
    }
    
    .modal-header {
        padding: 1.2rem 1.5rem 0.8rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .form-input {
        padding: 0.8rem 1rem 0.8rem 2rem;
    }
    
    .at-symbol {
        left: 0.8rem;
        font-size: 0.9rem;
    }
    
    .modal-submit-button {
        padding: 0.8rem 1.5rem;
    }
    
    .success-content {
        padding: 2rem 1.5rem;
        max-width: 350px;
    }
    
    .success-title {
        font-size: 1.5rem;
    }
    
    .success-icon {
        font-size: 3rem;
    }
}
