/* === CSS Variables === */
:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0f;
    --bg-card: rgba(20, 20, 30, 0.5);
    --accent-primary: #00d4ff;
    --accent-secondary: #0099ff;
    --accent-glow: rgba(0, 212, 255, 0.6);
    --text-primary: #ffffff;
    --text-secondary: #8899aa;
    --success: #00ff88;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
    --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.5);
    --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 100, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* === Animated Background === */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,212,255,0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0,100,255,0.1) 0%, transparent 70%);
    bottom: -250px;
    left: -250px;
    animation-delay: 7s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,150,255,0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* === Top Banner === */
.top-banner {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    z-index: 1001;
    padding: 0.4rem 0;
    animation: bannerGradient 8s ease infinite;
    border-bottom: 2px solid rgba(0,212,255,0.6);
    box-shadow: 0 2px 15px rgba(102, 126, 234, 0.3);
    overflow: hidden;
}

.top-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: bannerShine 3s infinite;
}

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

@keyframes bannerShine {
    0% { left: -100%; }
    100% { left: 200%; }
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.banner-item:first-child {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.banner-item strong {
    animation: pulse-text 2s ease-in-out infinite;
    font-weight: 800;
    letter-spacing: 0.5px;
}

@keyframes pulse-text {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    50% { 
        opacity: 0.9; 
        transform: scale(1.05);
        text-shadow: 0 4px 20px rgba(255, 255, 255, 0.5);
    }
}

.banner-item i {
    font-size: 1rem;
    color: #fff;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(-5deg); }
    75% { transform: translateY(-3px) rotate(5deg); }
}

.banner-divider {
    width: 1px;
    height: 20px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Rocket Logo Animation - Simple version */
.logo {
    overflow: hidden;
    position: relative;
}

.logo svg {
    position: relative;
    animation: simpleRocket 6s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.4));
}

@keyframes simpleRocket {
    /* Static for 3 seconds */
    0%, 50% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    
    /* Quick shake */
    52%, 56%, 60% {
        transform: translateY(0) rotate(-3deg);
    }
    54%, 58% {
        transform: translateY(0) rotate(3deg);
    }
    
    /* Launch upward */
    62% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    
    75% {
        transform: translateY(-40px) rotate(0deg);
        opacity: 0.5;
    }
    
    80% {
        transform: translateY(-50px) rotate(0deg);
        opacity: 0;
    }
    
    /* Reset instantly */
    81%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
}

/* === Navigation === */
.navbar {
    position: relative;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
}

.logo-svg { height: 2rem; width: 2rem; }

.logo-text {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

.connect-wallet-btn {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.connect-wallet-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    transition: 0.5s;
}

.connect-wallet-btn:hover::before {
    left: 100%;
}

.connect-wallet-btn:hover {
    background: var(--accent-primary);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--accent-glow), 0 0 60px var(--accent-glow);
}

/* === Hero Section === */
.hero {
    padding: 4rem 0 4rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #00d4ff 50%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.hero-content .subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-badge {
    background: rgba(0,212,255,0.05);
    border: 1px solid rgba(0,212,255,0.3);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
    transition: var(--transition);
}

.feature-badge:hover {
    background: rgba(0,212,255,0.1);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

/* === Purchase Widget (Right Side) === */
.purchase-widget {
    background: rgba(10, 10, 20, 0.6);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 40px rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.3);
    position: sticky;
    top: 100px;
}

.widget-header {
    text-align: center;
    margin-bottom: 2rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,255,136,0.1);
    border: 1px solid var(--success);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    animation: pulse-badge 2s infinite;
    box-shadow: 0 0 20px rgba(0,255,136,0.3);
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 20px rgba(0,255,136,0.3); }
    50% { box-shadow: 0 0 30px rgba(0,255,136,0.6); }
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.widget-header h2 {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
}

.price-display {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

/* Presale Progress Bar */
.presale-progress {
    margin-bottom: 2rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.progress-info .raised {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
}

.progress-info .goal {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(0,212,255,0.2);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff 0%, #0099ff 100%);
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(0,212,255,0.4);
    animation: progress-pulse 2s ease-in-out infinite;
}

@keyframes progress-pulse {
    0%, 100% { box-shadow: 0 0 10px rgba(0,212,255,0.4); }
    50% { box-shadow: 0 0 20px rgba(0,212,255,0.6); }
}

.progress-percentage {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* === Price Increase Countdown Timer === */
.countdown-urgency {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, rgba(255, 136, 0, 0.1) 100%);
    border: 2px solid rgba(255, 68, 68, 0.4);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 30px rgba(255, 68, 68, 0.3);
    animation: urgency-pulse 3s ease-in-out infinite;
}

@keyframes urgency-pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 68, 68, 0.3);
        border-color: rgba(255, 68, 68, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 68, 68, 0.5);
        border-color: rgba(255, 68, 68, 0.6);
    }
}

.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ff8800;
}

.countdown-header i {
    font-size: 1rem;
    animation: clock-tick 1s ease-in-out infinite;
}

@keyframes clock-tick {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem 0.5rem;
    border-radius: 0.5rem;
    min-width: 60px;
    border: 1px solid rgba(255, 68, 68, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.time-value {
    font-size: 1.75rem;
    font-weight: 900;
    color: #ff4444;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

.time-label {
    font-size: 0.625rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-top: 0.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.time-separator {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ff4444;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.countdown-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 136, 0, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 136, 0, 0.3);
}

.countdown-message i {
    color: #ff8800;
    font-size: 1rem;
    animation: arrow-bounce 1.5s ease-in-out infinite;
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.countdown-message span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.countdown-message strong {
    color: #ff8800;
    font-weight: 800;
}

.payment-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tab-btn {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover { background: rgba(255,255,255,0.08); }

.tab-btn.active {
    background: var(--accent-primary);
    color: #000;
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px var(--accent-glow);
    font-weight: 700;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.balance-display {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.balance-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.balance-value {
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1rem;
}

.conversion-rate {
    text-align: center;
    margin: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.8125rem;
}

.conversion-rate small {
    color: var(--text-secondary);
}

.input-group {
    margin-bottom: 1rem;
}

.input-group label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    transition: var(--transition);
    position: relative;
}

.input-wrapper:focus-within {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0,212,255,0.2), 0 0 20px rgba(0,212,255,0.3);
}

.input-token-icon {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.input-wrapper input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    outline: none;
    min-width: 0;
}

.usd-value-display {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 0.375rem;
    border-left: 3px solid var(--accent-primary);
    font-weight: 600;
}

.input-suffix {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.max-btn {
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.4);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    color: var(--accent-primary);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(0,212,255,0.2);
}

.max-btn:hover {
    background: var(--accent-primary);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow);
}

.currency {
    color: var(--text-secondary);
    font-weight: 600;
}

.exchange-icon {
    text-align: center;
    margin: 1rem 0;
    color: var(--text-secondary);
}

/* === Exchange Grid Layout (Side by Side) === */
.exchange-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 1rem;
    align-items: stretch;
    margin-bottom: 1.5rem;
}

.exchange-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.exchange-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.exchange-input-wrapper,
.exchange-display-wrapper {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    width: 100%;
    overflow: hidden;
}

.exchange-input-wrapper:focus-within {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0,212,255,0.2), 0 0 20px rgba(0,212,255,0.3);
}

.token-logo {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
}

.exchange-input-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.exchange-input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 700;
    outline: none;
    min-width: 0;
    line-height: 1.2;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.exchange-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

/* Remove spin buttons from number inputs */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.max-btn-inline {
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.4);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    color: var(--accent-primary);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(0,212,255,0.2);
}

.max-btn-inline:hover {
    background: var(--accent-primary);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow);
}

.usd-conversion {
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding: 0.25rem 0.5rem;
    font-weight: 600;
}

.exchange-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 1.25rem;
}

.exchange-display-wrapper {
    background: rgba(0,212,255,0.05);
    border: 1px solid rgba(0,212,255,0.2);
}

.exchange-display-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.exchange-display-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1.2;
}

.exchange-display-currency {
    font-size: 1.125rem;
    color: var(--accent-primary);
    font-weight: 700;
    line-height: 1.2;
}

/* === Responsive Exchange Grid === */
@media (max-width: 768px) {
    .exchange-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .exchange-arrow {
        transform: rotate(90deg);
        padding: 0;
        margin: -0.5rem 0;
    }
    
    .exchange-input-wrapper,
    .exchange-display-wrapper {
        padding: 0.625rem;
        height: 52px;
    }
    
    .token-logo {
        width: 28px;
        height: 28px;
    }
    
    .exchange-input {
        font-size: 1rem;
    }
    
    .exchange-display-value {
        font-size: 1rem;
    }
    
    .exchange-display-currency {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .exchange-input-wrapper,
    .exchange-display-wrapper {
        padding: 0.5rem;
        height: 48px;
    }
    
    .token-logo {
        width: 24px;
        height: 24px;
    }
    
    .exchange-input {
        font-size: 0.9375rem;
    }
    
    .exchange-display-value {
        font-size: 0.9375rem;
    }
    
    .exchange-display-currency {
        font-size: 0.9375rem;
    }
    
    .usd-conversion {
        font-size: 0.6875rem;
    }
}

.receive-group {
    background: rgba(0,212,255,0.05);
    border: 1px solid rgba(0,212,255,0.2);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(0,212,255,0.1);
}

.receive-amount {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.receive-token-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.buy-button {
    width: 100%;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    color: #000;
    border: none;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(0,212,255,0.5);
    position: relative;
    overflow: hidden;
}

.buy-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
}

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

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 50px var(--accent-glow), 0 0 60px var(--accent-glow);
}

.buy-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Vesting Info Box */
.vesting-info-box {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: var(--radius-md);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.info-text {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.info-text strong {
    color: var(--text-primary);
}

.info-highlight {
    display: block;
    margin-top: 0.5rem;
    color: #48bb78;
    font-weight: 600;
    font-size: 0.75rem;
}

/* === Stats Section === */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-card {
    background: rgba(10, 10, 20, 0.5);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(0,212,255,0.2);
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 0 40px rgba(0,212,255,0.4), 0 10px 30px rgba(0,0,0,0.5);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* === About Section === */
.about-section {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.about-card {
    background: rgba(10, 10, 20, 0.5);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(0,212,255,0.2);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.about-card:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px rgba(0,212,255,0.3);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: rgba(0,212,255,0.05);
    border-left: 3px solid var(--accent-primary);
    border-radius: 0.25rem;
    transition: var(--transition);
}

.feature-list li:hover {
    background: rgba(0,212,255,0.1);
    box-shadow: 0 0 15px rgba(0,212,255,0.2);
    transform: translateX(5px);
}

/* === Tokenomics === */
.tokenomics-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    position: relative;
}

.tokenomics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 153, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.tokenomics-section .container {
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tokenomics-card {
    background: rgba(10, 10, 20, 0.5);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(0,212,255,0.2);
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.tokenomics-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 0 40px rgba(0,212,255,0.4), 0 10px 30px rgba(0,0,0,0.5);
}

.token-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.token-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.token-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.tokenomics-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.token-amount {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.token-details {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === Footer === */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(0,212,255,0.2);
}

.social-link:hover {
    background: var(--accent-primary);
    color: #000;
    border-color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 0 25px var(--accent-glow);
}

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

/* === Scroll to Top Button === */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 0.7;
    visibility: visible;
}

.scroll-to-top:hover {
    opacity: 0.9;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.7);
}

.scroll-to-top:active {
    transform: translateY(-3px);
}

/* === Toast Notifications === */
.toast {
    position: fixed;
    top: 100px;
    right: -400px;
    min-width: 300px;
    max-width: 500px;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 212, 255, 0.3);
    transition: right 0.3s ease;
    z-index: 10000;
}

.toast.show {
    right: 30px;
}

.toast i {
    font-size: 1.5rem;
    min-width: 24px;
}

.toast-content {
    flex: 1;
    color: var(--text-primary);
    line-height: 1.5;
}

.toast-content a {
    color: var(--accent-primary);
    text-decoration: underline;
}

.toast-success {
    border-color: var(--success);
}

.toast-success i {
    color: var(--success);
}

.toast-error {
    border-color: #ff4444;
}

.toast-error i {
    color: #ff4444;
}

.toast-info {
    border-color: var(--accent-primary);
}

.toast-info i {
    color: var(--accent-primary);
}

/* === Connected Wallet Button === */
.connect-wallet-btn.connected {
    background: linear-gradient(135deg, var(--success), #00cc66);
    color: #000;
    border-color: var(--success);
}

.connect-wallet-btn.connected:hover {
    background: linear-gradient(135deg, #00ff88, var(--success));
}

/* === Roadmap Section === */
.roadmap-section {
    padding: 4rem 0;
}

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

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-primary) 0%, rgba(0,212,255,0.2) 100%);
}

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

.roadmap-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: rgba(0,212,255,0.1);
    border: 3px solid var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0,212,255,0.4);
    transition: var(--transition);
}

.roadmap-item.completed .roadmap-marker {
    background: var(--accent-primary);
    box-shadow: 0 0 30px rgba(0,212,255,0.6);
}

.roadmap-item.completed .roadmap-marker::after {
    content: 'âœ“';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-weight: 900;
    font-size: 1.25rem;
}

.roadmap-item.active .roadmap-marker {
    animation: pulse-marker 2s ease-in-out infinite;
}

@keyframes pulse-marker {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0,212,255,0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(0,212,255,0.8);
        transform: scale(1.1);
    }
}

.roadmap-content {
    background: rgba(10,10,20,0.5);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(0,212,255,0.2);
    transition: var(--transition);
}

.roadmap-item.completed .roadmap-content {
    border-color: rgba(0,212,255,0.3);
}

.roadmap-item.active .roadmap-content {
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px rgba(0,212,255,0.3);
}

.roadmap-content:hover {
    transform: translateX(10px);
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px rgba(0,212,255,0.3);
}

.roadmap-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

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

.roadmap-content li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* === Partnerships Section === */
.partnerships-section {
    padding: 4rem 0;
}

.partnerships-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.partnership-card {
    background: rgba(10,10,20,0.5);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(0,212,255,0.2);
    transition: var(--transition);
    text-align: center;
}

.partnership-card.featured {
    border: 2px solid var(--accent-primary);
    box-shadow: 0 0 30px rgba(0,212,255,0.3);
    background: rgba(0,212,255,0.05);
}

.partnership-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 40px rgba(0,212,255,0.4);
}

.coindesk-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0 auto 1.5rem;
}

.coindesk-icon {
    width: 50px;
    height: 50px;
}

.coindesk-text {
    width: 140px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(0,212,255,0.4));
}

.partnership-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 0 30px rgba(0,212,255,0.4);
}

.partnership-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.partnership-type {
    color: var(--accent-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.partnership-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.partnership-features {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.partnership-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.partnership-features li:before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
}

.partnership-badge {
    display: inline-block;
    background: rgba(0,255,136,0.1);
    border: 1px solid var(--success);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    color: var(--success);
    font-size: 0.875rem;
    font-weight: 700;
    margin-top: 1rem;
}

.partnership-cta {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.partnership-cta a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.partnership-cta a:hover {
    color: var(--text-primary);
}

.partnership-callout {
    background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(0,153,255,0.1));
    border: 2px solid var(--accent-primary);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    box-shadow: 0 0 40px rgba(0,212,255,0.3);
}

.partnership-callout h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.partnership-callout p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partner-btn {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #000;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-size: 1.125rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(0,212,255,0.5);
}

.partner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 50px rgba(0,212,255,0.7);
}

/* === FAQ Section === */
.faq-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(10,10,20,0.5);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,212,255,0.2);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px rgba(0,212,255,0.3);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: var(--accent-primary);
    transition: var(--transition);
    font-size: 1.25rem;
}

.faq-item:hover .faq-question i {
    transform: translateY(3px);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}

/* === AI Feature Card === */
.ai-feature-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid rgba(102, 126, 234, 0.4);
    box-shadow: 0 0 40px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.ai-feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: rotate-gradient 10s linear infinite;
}

@keyframes rotate-gradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ai-feature-card h3 {
    color: #667eea;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    margin-top: 1.5rem;
    font-weight: 700;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
    animation: pulse-ai 2s ease-in-out infinite;
}

@keyframes pulse-ai {
    0%, 100% { box-shadow: 0 0 30px rgba(102, 126, 234, 0.5); }
    50% { box-shadow: 0 0 50px rgba(102, 126, 234, 0.8); }
}

.ai-badge i {
    font-size: 1.25rem;
}

/* === How to Buy Widget in Purchase Card === */
.how-to-buy-widget {
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.htb-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #667eea;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.htb-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.htb-header i.fa-graduation-cap {
    font-size: 1.25rem;
}

.htb-toggle-icon {
    font-size: 1rem;
    color: #667eea;
    transition: transform 0.3s ease;
}

.htb-toggle-icon.expanded {
    transform: rotate(180deg);
}

.htb-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.htb-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.htb-step:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.htb-step-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
}

.htb-step-content h4 {
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.htb-step-content p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* === How to Buy Detailed Section === */
.how-to-buy-section {
    padding: 4rem 0;
}

.htb-detailed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.htb-detailed-card {
    background: rgba(10, 10, 20, 0.5);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: var(--transition);
    position: relative;
}

.htb-detailed-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.htb-card-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    color: #000;
    box-shadow: 0 0 30px var(--accent-glow);
}

.htb-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.htb-detailed-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.htb-detailed-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.htb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: var(--transition);
}

.htb-link:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.network-details {
    padding: 0.75rem 1rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent-primary);
}

.network-details small {
    color: var(--text-secondary);
    line-height: 1.6;
}

.supported-currencies {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.currency-badge {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 255, 0.2));
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: var(--radius-md);
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 0.875rem;
}

.purchase-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: var(--radius-md);
    border-left: 3px solid #667eea;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.purchase-note i {
    color: #667eea;
    font-size: 1rem;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-grid-3col { grid-template-columns: 1fr; }
    .tokenomics-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-grid { grid-template-columns: 1fr; }
    .partnerships-grid { grid-template-columns: 1fr; }
    
    /* Fix overlapping issue between purchase-widget and claim-compact-card */
    .purchase-widget {
        position: relative;
        top: 0;
    }
    
    .claim-compact-card {
        margin-top: 20px;
        position: relative;
        z-index: 1;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    /* Ensure proper stacking on tablets */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .purchase-widget {
        position: relative;
        top: 0;
        margin-bottom: 1rem;
    }
    
    .claim-compact-card {
        position: relative;
        z-index: 1;
        margin-top: 0;
    }
}

@media (max-width: 960px) {
    .hamburger { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        z-index: 999;
        padding-top: 5rem;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.125rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid-3col { grid-template-columns: 1fr; }
    .tokenomics-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .purchase-widget { position: relative; top: 0; }
    .faq-grid { grid-template-columns: 1fr; }
    .roadmap-item { padding-left: 50px; }
    .htb-detailed-grid { grid-template-columns: 1fr; }
    
    .container { padding: 0 1rem; }
    .hero { padding: 8rem 0 3rem; }
    .section-title { font-size: 2rem; }
}

@media (max-width: 480px) {
    body { font-size: 14px; }
    
    .container { padding: 0 0.5rem; }
    
    /* Countdown Timer - Mobile Responsive */
    .countdown-urgency {
        padding: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .countdown-header {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .countdown-timer {
        gap: 0.25rem;
    }
    
    .time-unit {
        padding: 0.5rem 0.25rem;
        min-width: 50px;
    }
    
    .time-value {
        font-size: 1.25rem;
    }
    
    .time-label {
        font-size: 0.5rem;
    }
    
    .time-separator {
        font-size: 1.125rem;
    }
    
    .countdown-message {
        padding: 0.5rem;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .countdown-message span {
        font-size: 0.75rem;
        text-align: center;
    }
    
    /* Banner */
    .top-banner { padding: 0.5rem 0; }
    .banner-content { 
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.75rem;
    }
    .banner-divider { display: none; }
    .banner-item { font-size: 0.75rem; }
    
    /* Navbar */
    .navbar { padding: 0.75rem 0; }
    .logo-svg { height: 1.5rem; width: 1.5rem; }
    .logo-text { font-size: 0.875rem; }
    .connect-wallet-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    .connect-wallet-btn i { display: none; }
    
    /* Hero */
    .hero { padding: 3rem 0 2rem; min-height: auto; }
    .hero-content h1 { font-size: 1.75rem; line-height: 1.2; }
    .hero-content .subtitle { font-size: 1rem; }
    .hero-features { gap: 0.5rem; }
    .feature-badge { 
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    /* Widget - Compact pentru 360-480px */
    .purchase-widget { 
        padding: 0.875rem; 
        margin: 0 -0.25rem;
        max-width: 100%;
    }
    .widget-header h2 { font-size: 1rem; }
    .price-display { font-size: 1.25rem; }
    .status-badge { font-size: 0.7rem; padding: 0.3rem 0.6rem; }
    .progress-info .raised { font-size: 0.875rem; }
    .progress-info .goal { font-size: 0.75rem; }
    .tab-btn { padding: 0.4rem; font-size: 0.8125rem; }
    .input-wrapper { padding: 0.4rem 0.6rem; }
    .input-wrapper input { font-size: 0.9375rem; }
    .max-btn { padding: 0.2rem 0.5rem; font-size: 0.6875rem; }
    .currency { font-size: 0.875rem; }
    .receive-group { padding: 0.75rem; }
    .receive-amount { font-size: 1.25rem; }
    .buy-button { padding: 0.75rem; font-size: 0.9375rem; }
    
    /* Stats */
    .stats-grid { 
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin: 2rem 0;
    }
    .stat-card { padding: 1rem; }
    .stat-value { font-size: 1.5rem; }
    
    /* Sections */
    .about-section,
    .tokenomics-section,
    .roadmap-section,
    .partnerships-section,
    .faq-section { padding: 2.5rem 0; }
    
    .section-title { font-size: 1.75rem; }
    .section-subtitle { font-size: 0.875rem; margin-bottom: 2rem; }
    
    /* About */
    .about-card { padding: 1.25rem; }
    .about-card h3 { font-size: 1.125rem; }
    .about-card p { font-size: 0.875rem; }
    .feature-list li { font-size: 0.875rem; padding: 0.5rem; }
    
    /* Tokenomics */
    .tokenomics-card { padding: 1.25rem; }
    .token-icon { width: 40px; height: 40px; font-size: 1.25rem; }
    .token-percentage { font-size: 1.25rem; }
    .tokenomics-card h3 { font-size: 1rem; }
    .token-details { font-size: 0.75rem; }
    
    /* Roadmap */
    .roadmap-timeline::before { left: 15px; }
    .roadmap-item { padding-left: 40px; margin-bottom: 2rem; }
    .roadmap-marker { 
        width: 30px; 
        height: 30px;
        left: 0.5px;
    }
    .roadmap-content { padding: 1rem; }
    .roadmap-content h3 { font-size: 1rem; }
    .roadmap-content li { font-size: 0.8125rem; padding: 0.375rem 0; }
    
    /* Partnerships */
    .partnership-card { padding: 1.25rem; }
    .partnership-icon { width: 60px; height: 60px; font-size: 1.5rem; }
    .coindesk-logo-wrapper { width: 140px; height: 50px; }
    .partnership-card h3 { font-size: 1.25rem; }
    .partnership-type { font-size: 0.75rem; }
    .partnership-card p { font-size: 0.875rem; }
    .partnership-callout { padding: 2rem 1rem; }
    .partnership-callout h3 { font-size: 1.5rem; }
    .partnership-callout p { font-size: 0.875rem; }
    .partner-btn { padding: 0.75rem 1.5rem; font-size: 1rem; }
    
    /* FAQ */
    .faq-question { padding: 1rem; }
    .faq-question h3 { font-size: 0.9375rem; }
    .faq-answer { padding: 0 1rem 1rem; font-size: 0.875rem; }
    
    /* How to Buy Widget */
    .how-to-buy-widget { padding: 1rem; margin-top: 1rem; }
    .htb-header { font-size: 0.875rem; }
    .htb-step { padding: 0.75rem; }
    .htb-step-number { width: 28px; height: 28px; font-size: 0.875rem; }
    .htb-step-content h4 { font-size: 0.875rem; }
    .htb-step-content p { font-size: 0.75rem; }
    
    /* How to Buy Detailed */
    .how-to-buy-section { margin-top: 2rem; }
    .htb-detailed-card { padding: 1.5rem; }
    .htb-card-number { width: 35px; height: 35px; font-size: 1.125rem; }
    .htb-card-icon { width: 50px; height: 50px; font-size: 1.5rem; }
    .htb-detailed-card h3 { font-size: 1.125rem; }
    .htb-detailed-card p { font-size: 0.875rem; }
    
    /* Footer */
    .footer { padding: 2rem 0 1rem; }
    .footer-grid { gap: 1.5rem; margin-bottom: 1.5rem; }
    .footer-col h4 { font-size: 1rem; }
    .footer-col { font-size: 0.875rem; }
}

@media (max-width: 360px) {
    .hero-content h1 { font-size: 1.5rem; }
    .section-title { font-size: 1.5rem; }
    .partnership-callout { padding: 1.5rem 0.75rem; }
}

/* ============================================
   COMPACT CLAIM CARD
   ============================================ */

.claim-compact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
}

.claim-compact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.claim-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.claim-header-left i {
    color: #667eea;
}

.claim-status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    font-size: 12px;
    color: #667eea;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #667eea;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.claim-status-badge.active .status-dot {
    background: #48bb78;
}

.claim-status-badge.active {
    background: rgba(72, 187, 120, 0.2);
    color: #48bb78;
}

.claim-compact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.compact-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    text-align: center;
}

.compact-stat.highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.compact-stat .stat-label {
    font-size: 11px;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compact-stat .stat-value {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.compact-stat.highlight .stat-value {
    color: #667eea;
}

.claim-compact-progress {
    margin-bottom: 16px;
}

.progress-bar-compact {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill-compact {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.progress-label-compact {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #a0aec0;
}

.claim-compact-button {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.claim-compact-button:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.claim-compact-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.claim-mini-modal {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    animation: slideInUp 0.3s ease;
}

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

.mini-modal-content {
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(72, 187, 120, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    min-width: 280px;
}

.mini-success-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin: 0 auto 12px;
    animation: scaleIn 0.5s ease;
}

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

.mini-modal-text {
    text-align: center;
    margin-bottom: 12px;
}

.mini-modal-text strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.mini-modal-text span {
    font-size: 14px;
    color: #a0aec0;
}

.mini-modal-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #667eea;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mini-modal-link:hover {
    color: #764ba2;
}

@media (max-width: 768px) {
    .claim-compact-stats {
        grid-template-columns: 1fr;
    }
    
    .claim-mini-modal {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }
    
    .mini-modal-content {
        min-width: auto;
    }
}

/* ============================================
   SECURITY & AUDIT SECTION
   ============================================ */

.security-audit-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.security-audit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.audit-banner {
    position: relative;
    z-index: 1;
}

.audit-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.audit-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(56, 142, 60, 0.2) 100%);
    border: 2px solid #4CAF50;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
    animation: pulse-badge-large 3s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.3);
}

@keyframes pulse-badge-large {
    0%, 100% { 
        box-shadow: 0 0 30px rgba(76, 175, 80, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 50px rgba(76, 175, 80, 0.5);
        transform: scale(1.02);
    }
}

.audit-badge-large i {
    font-size: 1.25rem;
    color: #4CAF50;
    animation: shield-pulse 2s ease-in-out infinite;
}

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

.audit-badge-large span {
    font-size: 0.8125rem;
    font-weight: 800;
    color: #4CAF50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.audit-content h2 {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #4CAF50 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.audit-content > p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.75rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.audit-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.75rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.audit-detail-item {
    background: rgba(10, 10, 20, 0.5);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 1rem;
    border: 1px solid rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.audit-detail-item:hover {
    border-color: #4CAF50;
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(76, 175, 80, 0.3);
}

.audit-detail-item i {
    font-size: 1.5rem;
    color: #4CAF50;
    min-width: 30px;
}

.audit-detail-item h4 {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.audit-detail-item p {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.audit-score {
    font-size: 2rem !important;
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900 !important;
}

.audit-report-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #000;
    text-decoration: none;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.4);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.audit-report-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
}

.audit-report-btn:hover::before {
    left: 100%;
}

.audit-report-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 50px rgba(76, 175, 80, 0.6);
}

.audit-logo {
    height: 22px;
    filter: brightness(0) invert(1);
}

.audit-trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(76, 175, 80, 0.1);
    border-color: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.trust-badge i {
    font-size: 1rem;
    color: #4CAF50;
}

.trust-badge span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Audit Badge in Hero Features - Special Styling */
.feature-badge.audit-badge {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(56, 142, 60, 0.15) 100%);
    border: 2px solid #4CAF50;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
    animation: audit-badge-pulse 3s ease-in-out infinite;
}

@keyframes audit-badge-pulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
    }
    50% { 
        box-shadow: 0 0 30px rgba(76, 175, 80, 0.6);
    }
}

.feature-badge.audit-badge:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.25) 0%, rgba(56, 142, 60, 0.25) 100%);
    box-shadow: 0 0 35px rgba(76, 175, 80, 0.6);
}

/* Responsive Design for Audit Section */
@media (max-width: 1024px) {
    .audit-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .security-audit-section {
        padding: 2rem 0;
    }
    
    .audit-content h2 {
        font-size: 1.5rem;
    }
    
    .audit-content > p {
        font-size: 0.875rem;
    }
    
    .audit-details-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .audit-detail-item {
        padding: 0.875rem;
    }
    
    .audit-report-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .audit-trust-badges {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .audit-badge-large {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .audit-badge-large i {
        font-size: 1.5rem;
    }
    
    .audit-badge-large span {
        font-size: 0.75rem;
    }
    
    .audit-content h2 {
        font-size: 1.5rem;
    }
    
    .audit-detail-item {
        flex-direction: column;
        text-align: center;
    }
    
    .audit-detail-item i {
        font-size: 1.75rem;
    }
    
    .audit-report-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .audit-logo {
        height: 24px;
    }
    
    .trust-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .trust-badge i {
        font-size: 1rem;
    }
}

/* ============================================
   CONTRACT INFO SECTION
   ============================================ */

.contract-info-section {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.03) 0%, rgba(0, 153, 255, 0.03) 100%);
    position: relative;
}

.contract-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 153, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contract-info-section .container {
    position: relative;
    z-index: 1;
}

.contract-card-single {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(10, 10, 20, 0.6);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.contract-card-single:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
}

.contract-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.contract-card {
    background: rgba(10, 10, 20, 0.6);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.contract-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
}

.contract-card.primary {
    border: 2px solid var(--accent-primary);
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.contract-card.secondary {
    border-color: rgba(102, 126, 234, 0.3);
}

.contract-card.secondary:hover {
    border-color: #667eea;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
}

.contract-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.contract-icon {
    font-size: 2.5rem;
    min-width: 50px;
}

.contract-card-header h3 {
    flex: 1;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 0;
}

.primary-badge,
.secondary-badge {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: absolute;
    top: -10px;
    right: 0;
}

.primary-badge {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #000;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.7);
        transform: scale(1.05);
    }
}

.secondary-badge {
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid #667eea;
    color: #667eea;
}

.contract-address-display {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
}

.contract-address {
    font-family: 'Courier New', 'Courier', monospace;
    font-size: 0.875rem;
    color: var(--accent-primary);
    word-break: break-all;
    display: block;
    line-height: 1.6;
}

.contract-card.secondary .contract-address {
    color: #667eea;
}

.contract-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.copy-btn,
.bscscan-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.copy-btn {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--accent-primary);
}

.copy-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.bscscan-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.bscscan-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.metamask-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #f6851b 0%, #e2761b 100%);
    border: none;
    border-radius: var(--radius-md);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 0 30px rgba(246, 133, 27, 0.4);
}

.metamask-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(246, 133, 27, 0.6);
}

.metamask-btn i {
    font-size: 1.25rem;
}

.contract-warning {
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.4);
    border-radius: var(--radius-md);
    padding: 0.875rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.contract-warning i {
    font-size: 1.125rem;
    color: #ff8c00;
    flex-shrink: 0;
}

.contract-warning span {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

.contract-info-note {
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contract-info-note i {
    font-size: 1.5rem;
    color: #667eea;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.contract-info-note p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9375rem;
}

.contract-info-note strong {
    color: var(--text-primary);
}

/* Responsive Design for Contract Section */
@media (max-width: 768px) {
    .contract-info-section {
        padding: 2rem 0;
    }
    
    .contract-card-single {
        padding: 1.5rem;
    }
    
    .contract-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contract-card {
        padding: 1.5rem;
    }
    
    .contract-card-header {
        flex-wrap: wrap;
    }
    
    .primary-badge,
    .secondary-badge {
        position: static;
        margin-top: 0.5rem;
    }
    
    .contract-actions {
        flex-direction: column;
    }
    
    .copy-btn,
    .bscscan-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contract-info-section {
        padding: 1.5rem 0;
    }
    
    .contract-card-single {
        padding: 1.25rem;
    }
    
    .contract-warning {
        padding: 0.75rem 0.875rem;
        font-size: 0.8125rem;
    }
    
    .contract-warning i {
        font-size: 1rem;
    }
    
    .contract-card {
        padding: 1.25rem;
    }
    
    .contract-icon {
        font-size: 2rem;
    }
    
    .contract-card-header h3 {
        font-size: 1.125rem;
    }
    
    .contract-address {
        font-size: 0.75rem;
    }
    
    .contract-info-note {
        flex-direction: column;
        padding: 1rem;
    }
    
    .contract-info-note i {
        font-size: 1.25rem;
    }
    
    .contract-info-note p {
        font-size: 0.875rem;
    }
}
