/* Import Druk Wide Font */
@font-face {
    font-family: 'DrukWide';
    src: url('DrukWide-Bold-Trial.otf') format('opentype');
    font-weight: bold;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.4;
    color: #F9F9F9;
    background: #0B0B0B;
    overflow-x: hidden;
    position: relative;
}

/* Carbon Fiber Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 255, 144, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 255, 144, 0.02) 0%, transparent 50%),
        linear-gradient(45deg, 
            rgba(23, 23, 23, 0.8) 25%, 
            transparent 25%, 
            transparent 75%, 
            rgba(23, 23, 23, 0.8) 75%
        ),
        linear-gradient(-45deg, 
            rgba(23, 23, 23, 0.8) 25%, 
            transparent 25%, 
            transparent 75%, 
            rgba(23, 23, 23, 0.8) 75%
        );
    background-size: 60px 60px, 60px 60px, 8px 8px, 8px 8px;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - HUD Style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, #00FF90, transparent) 1;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'DrukWide', 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-image {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px #00FF90);
    transition: all 0.3s ease;
}

.logo-image:hover {
    filter: drop-shadow(0 0 15px #00FF90) brightness(1.1);
}

.logo-text {
    background: linear-gradient(135deg, #00FF90, #00CC72);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 255, 144, 0.5);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: #F9F9F9;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00FF90, #00CC72);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #00FF90;
    text-shadow: 0 0 10px rgba(0, 255, 144, 0.7);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #00FF90;
}

/* HUD-Style Buttons */
.btn-primary, .btn-secondary, .btn-tertiary {
    padding: 15px 30px;
    border: none;
    border-radius: 0;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    background: #171717;
    color: #F9F9F9;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 20px 100%);
    z-index: 30;
    pointer-events: auto;
}

.btn-primary {
    background: linear-gradient(135deg, #171717, #232323);
    border: 2px solid #00FF90;
    box-shadow: 
        0 0 20px rgba(0, 255, 144, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00FF90, #00CC72);
    color: #0B0B0B;
    box-shadow: 
        0 0 30px rgba(0, 255, 144, 0.6),
        0 0 60px rgba(0, 255, 144, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid rgba(249, 249, 249, 0.3);
    background: rgba(23, 23, 23, 0.8);
}

.btn-secondary:hover {
    border-color: #00FF90;
    background: rgba(0, 255, 144, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 144, 0.2);
}

.btn-tertiary {
    background: transparent;
    border: 2px solid #00FF90;
    color: #00FF90;
}

.btn-tertiary:hover {
    background: #00FF90;
    color: #0B0B0B;
    box-shadow: 0 0 25px rgba(0, 255, 144, 0.5);
}

/* Hero Section - Full Screen Lambo */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: 
        linear-gradient(135deg, rgba(11, 11, 11, 0.8) 0%, rgba(23, 23, 23, 0.6) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><radialGradient id="lambo" cx="50%" cy="80%" r="60%"><stop offset="0%" style="stop-color:%2300FF90;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23000000;stop-opacity:0.9"/></radialGradient></defs><rect width="1920" height="1080" fill="url(%23lambo)"/><polygon points="0,1080 400,800 800,850 1200,800 1920,1080" fill="%23171717" opacity="0.3"/></svg>') center/cover;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at center bottom, rgba(0, 255, 144, 0.1) 0%, transparent 70%),
        linear-gradient(45deg, transparent 40%, rgba(0, 255, 144, 0.05) 50%, transparent 60%);
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(0, 255, 144, 0.1) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(0, 255, 144, 0.05) 100%
    );
}

.hero-lambo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 5%;
    padding-left: 15%;
    overflow: hidden;
    pointer-events: none;
}

.hero-lambo-image {
    max-height: 55%;
    width: auto;
    opacity: 0.8;
    filter: drop-shadow(0 0 30px rgba(0, 255, 144, 0.3));
    transform: translateX(25%);
    transition: all 0.1s ease;
    position: relative;
    pointer-events: auto;
}

.hero-lambo-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50px;
    right: 50px;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 255, 144, 0.1) 20%, 
        rgba(0, 255, 144, 0.2) 50%, 
        rgba(0, 255, 144, 0.1) 80%, 
        transparent 100%
    );
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    pointer-events: none;
}

.hero-lambo-image.moving::before {
    opacity: 1;
}

.hero-lambo-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 144, 0.8), transparent);
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: -1;
    pointer-events: none;
    box-shadow: 
        0 10px 0 rgba(0, 255, 144, 0.4),
        0 -10px 0 rgba(0, 255, 144, 0.4),
        0 20px 0 rgba(0, 255, 144, 0.2),
        0 -20px 0 rgba(0, 255, 144, 0.2);
}

.hero-lambo-image.moving::after {
    opacity: 1;
}

/* Auto-drift animation when idle */
@keyframes lambo-idle-drift {
    0%, 100% {
        transform: translateX(25%) translateY(0px) rotateY(0deg);
    }
    25% {
        transform: translateX(27%) translateY(-5px) rotateY(1deg);
    }
    50% {
        transform: translateX(25%) translateY(-8px) rotateY(0deg);
    }
    75% {
        transform: translateX(23%) translateY(-5px) rotateY(-1deg);
    }
}

.hero-lambo-image.idle {
    animation: lambo-idle-drift 8s ease-in-out infinite;
}

.hero-lambo-overlay:hover .hero-lambo-image {
    opacity: 0.9;
    filter: drop-shadow(0 0 40px rgba(0, 255, 144, 0.5));
    transform: translateX(15%);
}

.hero-content {
    text-align: left;
    z-index: 10;
    position: relative;
    max-width: 800px;
    transform: skewY(-2deg);
    padding: 60px 0;
}

.hero-title {
    font-family: 'DrukWide', 'Orbitron', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #F9F9F9;
    text-shadow: 
        0 0 20px rgba(0, 255, 144, 0.3),
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-title .highlight {
    background: linear-gradient(135deg, #00FF90, #00CC72, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    right: -10px;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 144, 0.2), transparent);
    z-index: -1;
    transform: skewX(-15deg);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    color: rgba(249, 249, 249, 0.9);
    max-width: 600px;
    font-weight: 500;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 25;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-size: 28px;
    color: #00FF90;
    animation: pulse-glow 2s infinite;
    cursor: pointer;
    background: rgba(23, 23, 23, 0.8);
    padding: 15px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% calc(100% - 10px), 10px 100%);
    border: 1px solid #00FF90;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(0, 255, 144, 0.3);
        transform: translateY(0);
    }
    50% { 
        box-shadow: 0 0 25px rgba(0, 255, 144, 0.7);
        transform: translateY(-5px);
    }
}

/* Section Styles - Skewed Layout */
section {
    padding: 120px 0;
    position: relative;
}

section:nth-child(even) {
    background: linear-gradient(135deg, #171717 0%, #0B0B0B 100%);
    transform: skewY(-1deg);
    margin: 40px 0;
}

section:nth-child(even) > .container {
    transform: skewY(1deg);
}

.section-title {
    font-family: 'DrukWide', 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 80px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #F9F9F9, #00FF90);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00FF90, transparent);
}

/* How It Works - HUD Cards */
.how-it-works {
    background: #0B0B0B;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step {
    background: linear-gradient(135deg, rgba(23, 23, 23, 0.9), rgba(11, 11, 11, 0.9));
    padding: 40px 30px;
    position: relative;
    border: 1px solid rgba(0, 255, 144, 0.3);
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
    transition: all 0.4s ease;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(0, 255, 144, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #00FF90;
    box-shadow: 
        0 20px 40px rgba(0, 255, 144, 0.2),
        inset 0 1px 0 rgba(0, 255, 144, 0.3);
}

.step:hover::before {
    opacity: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00FF90, #00CC72);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #0B0B0B;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #00FF90, #00CC72);
    color: #0B0B0B;
    width: 40px;
    height: 40px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    font-family: 'Orbitron', sans-serif;
}

.step h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #F9F9F9;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.step p {
    color: rgba(249, 249, 249, 0.8);
    text-align: center;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Tokenomics - HUD Display */
.tokenomics {
    background: linear-gradient(135deg, #171717 0%, #0B0B0B 100%);
}

.tokenomics-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.token-card {
    background: rgba(23, 23, 23, 0.9);
    border: 2px solid rgba(0, 255, 144, 0.3);
    padding: 50px;
    max-width: 600px;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 40px 100%, 0 calc(100% - 40px));
}

.token-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 144, 0.05), transparent);
    pointer-events: none;
}

.token-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 255, 144, 0.3);
}

.token-header h3 {
    font-family: 'DrukWide', 'Orbitron', sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.token-symbol {
    background: linear-gradient(135deg, #00FF90, #00CC72);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 20px rgba(0, 255, 144, 0.5);
}

.token-stats {
    display: grid;
    gap: 25px;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 255, 144, 0.2);
    position: relative;
}

.stat::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #00FF90;
    transition: width 0.3s ease;
}

.stat:hover::before {
    width: 100%;
}

.stat-label {
    color: rgba(249, 249, 249, 0.7);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    color: #F9F9F9;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Orbitron', sans-serif;
}

/* Raffle System - Gaming HUD */
.raffle {
    background: #0B0B0B;
}

.raffle-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.raffle-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.raffle-card {
    background: rgba(23, 23, 23, 0.9);
    border: 1px solid rgba(0, 255, 144, 0.3);
    padding: 40px;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
}

.raffle-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #00FF90;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.raffle-card ul {
    list-style: none;
    margin-top: 20px;
}

.raffle-card li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(249, 249, 249, 0.9);
    font-size: 1.1rem;
}

.raffle-card li i {
    color: #00FF90;
    font-size: 18px;
    width: 20px;
}

.next-draw {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
    padding: 20px;
    background: rgba(0, 255, 144, 0.1);
    border: 1px solid rgba(0, 255, 144, 0.3);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.draw-label {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.draw-date {
    color: #00FF90;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

.countdown {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 30px;
}

.countdown-item {
    text-align: center;
    background: rgba(23, 23, 23, 0.8);
    padding: 20px 15px;
    border: 1px solid rgba(0, 255, 144, 0.3);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    min-width: 80px;
}

.countdown-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: #00FF90;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 15px rgba(0, 255, 144, 0.5);
}

.countdown-label {
    font-size: 0.9rem;
    color: rgba(249, 249, 249, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.winner-perks {
    background: rgba(23, 23, 23, 0.9);
    border: 1px solid rgba(0, 255, 144, 0.3);
    padding: 40px;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
}

.winner-perks h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #00FF90;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.perks-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 25px 0;
}

.perk {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(249, 249, 249, 0.9);
    font-size: 1.1rem;
    padding: 15px;
    background: rgba(0, 255, 144, 0.05);
    border-left: 3px solid #00FF90;
}

.perk i {
    color: #00FF90;
    width: 25px;
    font-size: 18px;
}

.rng-info {
    background: rgba(0, 255, 144, 0.1);
    padding: 20px;
    border: 1px solid rgba(0, 255, 144, 0.3);
    margin: 25px 0;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

/* FAQs - Collapsible HUD Panels */
.faqs {
    background: linear-gradient(135deg, #171717 0%, #0B0B0B 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(23, 23, 23, 0.9);
    border: 1px solid rgba(0, 255, 144, 0.3);
    margin-bottom: 25px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #00FF90;
    box-shadow: 0 5px 20px rgba(0, 255, 144, 0.2);
}

.faq-question {
    padding: 30px 35px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 255, 144, 0.05);
}

.faq-question h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-question i {
    color: #00FF90;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 35px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-answer p {
    padding-bottom: 30px;
    color: rgba(249, 249, 249, 0.8);
    line-height: 1.6;
    font-size: 1.1rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Team - Racing Team Cards */
.team {
    background: #0B0B0B;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background: rgba(23, 23, 23, 0.9);
    border: 1px solid rgba(0, 255, 144, 0.3);
    padding: 40px 30px;
    text-align: center;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(0, 255, 144, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: #00FF90;
    box-shadow: 0 15px 40px rgba(0, 255, 144, 0.2);
}

.team-member:hover::before {
    opacity: 1;
}

.member-avatar {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #00FF90, #00CC72);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: #0B0B0B;
}

.team-member h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #F9F9F9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member p {
    color: rgba(249, 249, 249, 0.7);
    font-size: 1.1rem;
}

/* Footer - HUD Style */
.footer {
    background: linear-gradient(135deg, #171717 0%, #0B0B0B 100%);
    border-top: 2px solid rgba(0, 255, 144, 0.3);
    padding: 80px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00FF90, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'DrukWide', 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-brand p {
    color: rgba(249, 249, 249, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.footer-column h4 {
    color: #00FF90;
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(249, 249, 249, 0.7);
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-column a:hover {
    color: #00FF90;
    text-shadow: 0 0 10px rgba(0, 255, 144, 0.5);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 255, 144, 0.2);
    color: rgba(249, 249, 249, 0.5);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        transform: none;
    }
    
    section:nth-child(even) {
        transform: none;
        margin: 20px 0;
    }
    
    section:nth-child(even) > .container {
        transform: none;
    }
    
    .raffle-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 15px 10px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .hero-lambo-overlay {
        align-items: center;
        justify-content: center;
        padding-bottom: 3%;
        padding-left: 5%;
    }
    
    .hero-lambo-image {
        max-height: 40%;
        opacity: 0.6;
        transform: translateX(10%);
    }
    
    .hero-lambo-overlay:hover .hero-lambo-image {
        transform: translateX(10%);
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 4rem);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .tokenomics-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .token-card {
        max-width: 100%;
        padding: 40px 30px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .scroll-indicator {
        bottom: 20px;
        right: 20px;
        padding: 12px;
        font-size: 24px;
    }
    
    .perks-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional Animations */
@keyframes neon-pulse {
    0%, 100% {
        text-shadow: 
            0 0 5px #00FF90,
            0 0 10px #00FF90,
            0 0 15px #00FF90;
    }
    50% {
        text-shadow: 
            0 0 10px #00FF90,
            0 0 20px #00FF90,
            0 0 30px #00FF90;
    }
}

.logo-text {
    animation: neon-pulse 3s ease-in-out infinite;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0B0B0B;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00FF90, #00CC72);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00CC72, #00FF90);
} 