:root {
    --color-background-darker: #0c0c0c;
    --color-text: #ffffff;
    --color-text-muted: #888888;
    --color-primary: #3b82f6;
    --header-height: 80px;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-background-darker);
    color: var(--color-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}

/* Header Styles */
.Header_header-container__KskmY {
    width: 100%;
    position: sticky;
    top: 0;
    background: #0c0c0c;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.Header_header-wrapper__UwobD {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.Header_header__Wtiot {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Header_logo__GYj4L img {
    height: 35px;
    width: auto;
}

.Header_nav__6_zh4 {
    display: flex;
    gap: 3rem;
}

.Header_nav-link__m71_l {
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
    color: white;
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
}

.Header_nav-link__m71_l:hover {
    opacity: 0.7;
}

.Header_hamburger__uEdKZ {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.Header_burger__A4lzV {
    width: 25px;
    height: 2px;
    background-color: var(--color-text);
    transition: transform 0.3s, opacity 0.3s;
}

/* Airdrop Dashboard Styles */
.airdrop-main {
    max-width: 600px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem 3rem;
    text-align: center;
    position: relative;
}

/* Animated Background Gradient */
.airdrop-main::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(168, 85, 247, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Above the fold section */
.above-fold {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1rem 0 0.5rem;
}

/* Compact Hero */
.compact-hero {
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.5s ease-out;
}

.airdrop-title-compact {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-top: 0.4rem;
    margin-bottom: 0.35rem;
}

.airdrop-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Trust Bar */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 0.75rem 0;
    flex-wrap: wrap;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

.trust-bar-item svg {
    width: 14px;
    height: 14px;
    color: #22c55e;
}

.trust-bar-item.highlight {
    color: #22c55e;
    font-weight: 500;
}

.trust-bar-divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
}

.live-dot-small {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Mini Stats Bar */
.mini-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    flex-wrap: wrap;
}

.mini-stat {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
}

.mini-stat-value {
    font-weight: 700;
    color: white;
}

.mini-stat-label {
    color: rgba(255, 255, 255, 0.5);
}

.mini-stat.highlight .mini-stat-value {
    color: #a78bfa;
}

.mini-stat-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.6rem;
}

/* Inline Countdown */
.countdown-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
}

.countdown-label-inline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
    font-weight: 600;
}

.countdown-timer-inline {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
}

.countdown-value-inline {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    font-variant-numeric: tabular-nums;
    min-width: 2.2rem;
    text-align: center;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    line-height: 1;
}

.countdown-unit {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 0.25rem;
}

.countdown-sep {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
    margin: 0 0.1rem;
}

/* Compact Live Banner */
.live-banner-compact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    color: #22c55e;
    margin-top: 1rem;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px #22c55e;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px #22c55e; }
    50% { opacity: 0.5; transform: scale(1.2); box-shadow: 0 0 15px #22c55e; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Below the fold */
.below-fold {
    padding-top: 1.5rem;
    margin-top: 0.5rem;
}

/* Badge */
.airdrop-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    animation: badgePulse 3s ease-in-out infinite;
    text-transform: uppercase;
}

.airdrop-badge strong {
    font-weight: 800;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(139, 92, 246, 0.6); }
}

.airdrop-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 0 60px rgba(255, 255, 255, 0.1);
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 40%, #f472b6 70%, #fb923c 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.airdrop-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Countdown Timer */
.countdown-section {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.countdown-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.countdown-item {
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    min-width: 90px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
}

.countdown-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.countdown-unit {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.15em;
    margin-top: 0.25rem;
    display: block;
}

.countdown-separator {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 200;
    animation: separatorPulse 1s ease-in-out infinite;
}

@keyframes separatorPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

/* Airdrop Card */
.airdrop-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 1.5rem 1.75rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 4px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.4s ease-out;
}

.airdrop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    right: 0;
    height: 1px;
    width: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmerLine 3s linear infinite;
}

.airdrop-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    animation: cardGlow 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmerLine {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}

@keyframes cardGlow {
    0%, 100% { transform: translate(-30%, -30%) scale(1); opacity: 0.5; }
    50% { transform: translate(-20%, -20%) scale(1.1); opacity: 0.8; }
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.card-icon svg {
    width: 22px;
    height: 22px;
}

.card-title-group h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.verified-badge {
    font-size: 0.7rem;
    color: #a78bfa;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 500;
}

.verified-badge::before {
    content: '✓';
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    background: rgba(139, 92, 246, 0.25);
    border-radius: 50%;
    font-size: 0.55rem;
}

.token-amount {
    margin-bottom: 0.25rem;
    position: relative;
    z-index: 1;
}

.amount-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.03em;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
}

@keyframes amountPulse {
    0%, 100% { text-shadow: 0 0 40px rgba(255, 255, 255, 0.15); }
    50% { text-shadow: 0 0 60px rgba(255, 255, 255, 0.25); }
}

.amount-symbol {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 0.35rem;
}

.token-usd {
    font-size: 1.1rem;
    color: #22c55e;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
    position: relative;
    z-index: 1;
}

.eligibility-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.eligibility-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.eligibility-item:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.eligibility-item svg {
    width: 14px;
    height: 14px;
    color: #a78bfa;
}

.claim-button {
    width: 100%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    border: none;
    border-radius: 14px;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 25px rgba(99, 102, 241, 0.4),
        0 0 40px rgba(139, 92, 246, 0.2);
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.claim-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: buttonShimmer 2.5s ease-in-out infinite;
}

.claim-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

@keyframes buttonShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.claim-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 40px rgba(99, 102, 241, 0.5),
        0 0 60px rgba(139, 92, 246, 0.3),
        0 0 0 3px rgba(139, 92, 246, 0.15);
    background: linear-gradient(135deg, #7c7ff7 0%, #9d6ef9 50%, #b76df9 100%);
}

.claim-button:active {
    transform: translateY(-1px) scale(1.01);
}

.claim-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.claim-button:hover svg {
    transform: translateX(4px);
}

.claim-note {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 1;
}

/* Stats Section */
.stats-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 0.75rem;
}

.stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

/* Progress Bar */
.distribution-progress {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.04) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.distribution-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.progress-header span:first-child {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.progress-percent {
    background: linear-gradient(135deg, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 1.1rem;
    animation: urgencyPulse 1.5s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.02); }
}

.progress-bar {
    height: 16px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        #6366f1 0%, 
        #8b5cf6 25%, 
        #a855f7 50%, 
        #d946ef 75%, 
        #f472b6 100%
    );
    border-radius: 10px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.5),
        0 0 40px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, transparent 100%);
    border-radius: 10px 10px 0 0;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: progressShine 2.5s ease-in-out infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-warning {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    position: relative;
    z-index: 1;
}

.progress-warning::before {
    content: '⚡';
    font-size: 1rem;
    filter: drop-shadow(0 0 4px rgba(139, 92, 246, 0.5));
}

/* Additional Info Section */
.additional-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.additional-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.additional-info > p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.info-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    font-size: 0.85rem;
    color: white;
    font-weight: 500;
}

.info-value.status-live {
    color: #22c55e;
}

/* Trust Section */
.trust-section {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.trust-item svg {
    width: 16px;
    height: 16px;
    color: #6366f1;
}

/* Mobile Responsive for Airdrop */
@media (max-width: 768px) {
    .Header_header__Wtiot {
        height: 56px;
    }
    
    .Header_header-wrapper__UwobD {
        padding: 0 1rem;
    }
    
    .airdrop-main {
        padding: 0.25rem 0.75rem 2rem;
    }
    
    .above-fold {
        padding: 0.5rem 0 0.25rem;
    }
    
    .compact-hero {
        margin-bottom: 0.35rem;
    }
    
    .airdrop-badge {
        padding: 0.35rem 0.85rem;
        font-size: 0.5rem;
    }
    
    .airdrop-title-compact {
        font-size: 1.2rem;
        margin-top: 0.3rem;
        margin-bottom: 0.25rem;
    }
    
    .airdrop-desc {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .trust-bar {
        margin: 0.5rem 0;
        gap: 0.5rem;
    }
    
    .trust-bar-item {
        font-size: 0.6rem;
        gap: 0.25rem;
    }
    
    .trust-bar-item svg {
        width: 12px;
        height: 12px;
    }
    
    .trust-bar-divider {
        height: 10px;
    }
    
    .countdown-inline {
        padding: 0.5rem 1rem;
        margin-bottom: 0.5rem;
        gap: 0.4rem;
    }
    
    .countdown-value-inline {
        font-size: 1.5rem;
        min-width: 1.5rem;
    }
    
    .countdown-unit {
        font-size: 0.7rem;
        margin-right: 0.15rem;
    }
    
    .countdown-sep {
        font-size: 1.2rem;
    }
    
    .countdown-label-inline {
        font-size: 0.6rem;
    }

    .airdrop-card {
        padding: 1rem 0.85rem;
        border-radius: 18px;
    }
    
    .card-header {
        margin-bottom: 0.5rem;
        gap: 0.5rem;
    }
    
    .card-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }
    
    .card-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .card-title-group h3 {
        font-size: 0.9rem;
    }
    
    .verified-badge {
        font-size: 0.6rem;
    }

    .amount-value {
        font-size: 2.5rem;
    }

    .amount-symbol {
        font-size: 1.1rem;
    }
    
    .token-usd {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .eligibility-info {
        gap: 0.3rem;
        margin-bottom: 0.6rem;
    }
    
    .eligibility-item {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
    }
    
    .eligibility-item svg {
        width: 11px;
        height: 11px;
    }
    
    .claim-button {
        padding: 0.75rem 0.85rem;
        font-size: 0.85rem;
        border-radius: 10px;
    }
    
    .claim-button svg {
        width: 14px;
        height: 14px;
    }
    
    .claim-note {
        font-size: 0.6rem;
        margin-top: 0.4rem;
    }
    
    .mini-stats {
        margin-top: 0.5rem;
        padding: 0.4rem 0.75rem;
        gap: 0.5rem;
    }
    
    .mini-stat {
        font-size: 0.6rem;
        gap: 0.25rem;
    }
    
    .mini-stat-sep {
        font-size: 0.5rem;
    }
    
    .live-dot-small {
        width: 5px;
        height: 5px;
    }

    .stats-section {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }

    .stat-divider {
        display: none;
    }

    .trust-section {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .trust-item {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .distribution-progress {
        padding: 1rem;
        border-radius: 14px;
    }
    
    .additional-info {
        padding: 1rem;
        border-radius: 14px;
    }
    
    .additional-info h3 {
        font-size: 0.9rem;
    }
    
    .additional-info > p {
        font-size: 0.75rem;
    }
    
    .info-grid {
        gap: 0.5rem;
    }
    
    .info-item {
        padding: 0.6rem;
    }
    
    .info-label {
        font-size: 0.6rem;
    }
    
    .info-value {
        font-size: 0.75rem;
    }
}

/* Extra small screens */
@media (max-width: 380px) {
    .airdrop-title-compact {
        font-size: 1.05rem;
    }
    
    .airdrop-desc {
        font-size: 0.65rem;
    }
    
    .trust-bar {
        gap: 0.4rem;
    }
    
    .trust-bar-item {
        font-size: 0.55rem;
    }
    
    .trust-bar-divider {
        display: none;
    }
    
    .countdown-inline {
        padding: 0.4rem 0.75rem;
    }
    
    .countdown-value-inline {
        font-size: 1.2rem;
        min-width: 1.2rem;
    }
    
    .countdown-unit {
        font-size: 0.6rem;
    }
    
    .countdown-sep {
        font-size: 1rem;
    }
    
    .countdown-label-inline {
        font-size: 0.5rem;
    }
    
    .amount-value {
        font-size: 2rem;
    }
    
    .amount-symbol {
        font-size: 0.95rem;
    }
    
    .eligibility-info {
        flex-direction: column;
    }
    
    .claim-button {
        font-size: 0.75rem;
        padding: 0.65rem 0.75rem;
    }
    
    .mini-stats {
        flex-wrap: wrap;
        gap: 0.35rem;
    }
    
    .mini-stat-sep {
        display: none;
    }
}

/* Footer Styles */
.Footer_footer-section__7zVaW {
    background-color: var(--color-background-darker);
    padding: 6rem 2rem 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.Footer_footer-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
}

.Newsletter_newsletter-section__SkCIG {
    max-width: 500px;
    margin-bottom: 6rem;
}

.Newsletter_newsletter-title__P_vpY {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    text-align: left;
}

.Newsletter_input-container__Gdm6L {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 0;
    align-items: center;
    margin-bottom: 1.5rem;
}

.Newsletter_newsletter-input__NqHBt {
    background: transparent;
    border: none;
    color: white;
    flex: 1;
    padding: 0.5rem 0;
    outline: none;
    font-size: 1.1rem;
}

.Newsletter_newsletter-input__NqHBt::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.Newsletter_input-arrow__rC65u {
    cursor: pointer;
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.2rem;
}

.Newsletter_disclaimer-text__RzpKP {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
    max-width: 350px;
}

.Footer_footer-links__main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.Footer_main-link {
    font-size: 1.5rem;
    color: white;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.Footer_main-link span {
    color: rgba(255, 255, 255, 0.3);
}

.Footer_social-icons__OLiW9 {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 3rem;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
}

.Footer_social-icon__AayxJ:hover {
    color: white;
}

.Footer_footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.Footer_footer-bottom p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.Footer_footer-bottom a {
    color: white;
    margin-left: 0.5rem;
}

.Footer_footer-bottom span {
    margin: 0 0.2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .Header_nav__6_zh4 {
        display: none;
    }

    .Header_hamburger__uEdKZ {
        display: flex;
    }

    .Newsletter_newsletter-title__P_vpY {
        font-size: 2.2rem;
    }

    .Footer_footer-links__main {
        flex-direction: column;
        gap: 1.5rem;
    }

    .Footer_main-link {
        font-size: 1.2rem;
        justify-content: space-between;
        width: 100%;
    }
}
