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

/* Mobile Text Optimization */
@media (max-width: 768px) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    .banner-content * {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
}

/* Mario Font Styles */
.mario-logo-text {
    font-family: 'Fredoka One', cursive;
    font-size: 4rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    text-shadow: 
        4px 4px 0 #000,
        -4px -4px 0 #000,
        4px -4px 0 #000,
        -4px 4px 0 #000,
        0 0 15px rgba(0, 0, 0, 0.9);
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.8));
}

.mario-letter {
    display: inline-block;
    position: relative;
    transform: perspective(500px) rotateX(15deg);
    transition: transform 0.3s ease;
}

.mario-letter:hover {
    transform: perspective(500px) rotateX(15deg) scale(1.1);
}

.mario-space {
    width: 0.5em;
    display: inline-block;
}

/* Mario Logo Exact Color Pattern - Following Mario Bros Logo Sequence */
.mario-letter.m { color: #E62310; } /* Red */
.mario-letter.a { color: #44AF35; } /* Green */
.mario-letter.r { color: #FCCF00; } /* Yellow */
.mario-letter.i { color: #009BD9; } /* Blue */
.mario-letter.o { color: #44AF35; } /* Green */
.mario-letter.c { color: #E62310; } /* Red */
.mario-letter.o2 { color: #FCCF00; } /* Yellow */
.mario-letter.i2 { color: #009BD9; } /* Blue */
.mario-letter.n { color: #44AF35; } /* Green */

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-mario-logo {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    text-shadow: 
        3px 3px 0 #000,
        -3px -3px 0 #000,
        3px -3px 0 #000,
        -3px 3px 0 #000;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
}

.nav-mario-letter {
    display: inline-block;
    position: relative;
    transition: transform 0.3s ease;
}

.nav-mario-letter:hover {
    transform: scale(1.1);
}

/* Navigation Mario Logo Exact Color Pattern */
.nav-mario-letter.m { color: #E62310; } /* Red */
.nav-mario-letter.a { color: #44AF35; } /* Green */
.nav-mario-letter.r { color: #FCCF00; } /* Yellow */
.nav-mario-letter.i { color: #009BD9; } /* Blue */
.nav-mario-letter.o { color: #44AF35; } /* Green */

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
}

/* Mario Banner */
.mario-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 30%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 70%,
        rgba(0, 0, 0, 0.9) 100%
    );
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

.banner-content {
    text-align: center;
    z-index: 4;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
}

/* Force white text for banner content */
.banner-content * {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* Override for Mario logo to show colors - MAXIMUM SPECIFICITY */
.banner-content .hero-logo .mario-logo-text .mario-letter {
    color: inherit !important;
    -webkit-text-fill-color: inherit !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

.banner-content .neon-text {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ffff;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: 4s;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

/* Banner Mario logo with colors */
.banner-content .mario-logo-text {
    font-family: 'Fredoka One', cursive;
    font-size: 4rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    text-shadow: 
        4px 4px 0 #000,
        -4px -4px 0 #000,
        4px -4px 0 #000,
        -4px 4px 0 #000,
        0 0 15px rgba(0, 0, 0, 0.9);
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.8));
}

.banner-content .mario-letter {
    display: inline-block;
    position: relative;
    transform: perspective(500px) rotateX(15deg);
    transition: transform 0.3s ease;
    color: inherit !important;
    -webkit-text-fill-color: inherit !important;
}

.banner-content .mario-letter:hover {
    transform: perspective(500px) rotateX(15deg) scale(1.1);
}

/* Banner Mario Logo Exact Color Pattern - MAXIMUM SPECIFICITY v3 */
.banner-content .hero-logo .mario-logo-text .mario-letter.m { 
    color: #E62310 !important; 
    -webkit-text-fill-color: #E62310 !important; 
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
} /* Red */
.banner-content .hero-logo .mario-logo-text .mario-letter.a { 
    color: #44AF35 !important; 
    -webkit-text-fill-color: #44AF35 !important; 
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
} /* Green */
.banner-content .hero-logo .mario-logo-text .mario-letter.r { 
    color: #FCCF00 !important; 
    -webkit-text-fill-color: #FCCF00 !important; 
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
} /* Yellow */
.banner-content .hero-logo .mario-logo-text .mario-letter.i { 
    color: #009BD9 !important; 
    -webkit-text-fill-color: #009BD9 !important; 
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
} /* Blue */
.banner-content .hero-logo .mario-logo-text .mario-letter.o { 
    color: #44AF35 !important; 
    -webkit-text-fill-color: #44AF35 !important; 
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
} /* Green */
.banner-content .hero-logo .mario-logo-text .mario-letter.c { 
    color: #E62310 !important; 
    -webkit-text-fill-color: #E62310 !important; 
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
} /* Red */
.banner-content .hero-logo .mario-logo-text .mario-letter.o2 { 
    color: #FCCF00 !important; 
    -webkit-text-fill-color: #FCCF00 !important; 
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
} /* Yellow */
.banner-content .hero-logo .mario-logo-text .mario-letter.i2 { 
    color: #009BD9 !important; 
    -webkit-text-fill-color: #009BD9 !important; 
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
} /* Blue */
.banner-content .hero-logo .mario-logo-text .mario-letter.n { 
    color: #44AF35 !important; 
    -webkit-text-fill-color: #44AF35 !important; 
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
} /* Green */

.banner-content .hero-title .neon-text {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.9),
        0 0 8px rgba(0, 0, 0, 0.8);
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.8);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-smooth: always;
}

.banner-content .hero-subtitle {
    font-size: 1.2rem;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    margin-bottom: 3rem;
    font-weight: 600;
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.9),
        0 0 4px rgba(0, 0, 0, 0.8);
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.8);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-smooth: always;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo .neon-text {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff0000, #00ff00, #ffff00, #0000ff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: marioGradientShift 4s ease-in-out infinite, marioGlow 2s ease-in-out infinite alternate;
    text-shadow: 
        0 0 20px rgba(255, 0, 0, 0.6),
        0 0 40px rgba(0, 255, 0, 0.4),
        0 0 60px rgba(255, 255, 0, 0.3);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.8);
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title .neon-text {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ff0000, #00ff00, #ffff00, #0000ff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: marioGradientShift 4s ease-in-out infinite;
    text-shadow: 
        0 0 15px rgba(255, 0, 0, 0.5),
        0 0 30px rgba(0, 255, 0, 0.3),
        0 0 45px rgba(255, 255, 0, 0.2);
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.6));
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
    font-weight: 300;
}

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

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.neon-button {
    background: linear-gradient(45deg, #ff0000, #00ff00, #ffff00, #0000ff);
    background-size: 400% 400%;
    color: #fff;
    animation: marioGradientShift 4s ease-in-out infinite;
    box-shadow: 
        0 0 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 0, 0, 0.6),
        0 0 30px rgba(0, 255, 0, 0.4),
        0 0 40px rgba(255, 255, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.9);
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.neon-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 10px 30px rgba(255, 0, 0, 0.6),
        0 15px 40px rgba(0, 255, 0, 0.4),
        0 20px 50px rgba(255, 255, 0, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(0, 255, 0, 0.2));
    color: #fff;
    border: 2px solid #ffff00;
    backdrop-filter: blur(10px);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.3), rgba(0, 255, 0, 0.3));
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
    border-color: #ff0000;
}

/* Presale Section */
.presale-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.timer-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    min-width: 100px;
}

.timer-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.timer-label {
    font-size: 0.9rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.presale-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
}

.presale-progress {
    margin-bottom: 2rem;
}

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

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    border-radius: 4px;
    animation: progressGlow 2s ease-in-out infinite alternate;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    color: #ccc;
    font-size: 0.9rem;
}

.token-options {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.token-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.token-btn.active,
.token-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: #00ffff;
    color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.min-amounts {
    text-align: center;
    margin-bottom: 2rem;
    color: #ccc;
    font-size: 0.9rem;
}

.purchase-section {
    margin-bottom: 2rem;
}

.amount-input {
    position: relative;
    margin-bottom: 1rem;
}

.amount-field {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
}

.amount-field:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.token-symbol {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #00ffff;
    font-weight: 600;
}

.receive-info {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.buy-button {
    width: 100%;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #E62310, #44AF35, #FCCF00, #009BD9);
    background-size: 400% 400%;
    color: #fff;
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: marioGradientShift 4s ease-in-out infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    box-shadow: 
        0 0 20px rgba(230, 35, 16, 0.4),
        0 0 40px rgba(68, 175, 53, 0.3),
        0 0 60px rgba(252, 207, 0, 0.2);
    position: relative;
    overflow: hidden;
}

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

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

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(230, 35, 16, 0.6),
        0 15px 40px rgba(68, 175, 53, 0.4),
        0 20px 50px rgba(252, 207, 0, 0.3);
    border-color: #fff;
}

.buy-button:active {
    transform: translateY(-1px);
    box-shadow: 
        0 5px 15px rgba(230, 35, 16, 0.5),
        0 8px 20px rgba(68, 175, 53, 0.3),
        0 10px 25px rgba(252, 207, 0, 0.2);
}

.guide-button {
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(26, 26, 46, 0.7));
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.guide-button:hover {
    background: linear-gradient(135deg, rgba(230, 35, 16, 0.2), rgba(68, 175, 53, 0.2));
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 20px rgba(230, 35, 16, 0.3);
    transform: translateY(-2px);
}

.coinbase-section {
    text-align: center;
}

.divider {
    position: relative;
    margin: 2rem 0;
    text-align: center;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(230, 35, 16, 0.3) 20%, 
        rgba(68, 175, 53, 0.3) 40%, 
        rgba(252, 207, 0, 0.3) 60%, 
        rgba(0, 155, 217, 0.3) 80%, 
        transparent 100%);
    border-radius: 1px;
}

.divider span {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    box-shadow: 
        0 0 10px rgba(0, 0, 0, 0.5),
        inset 0 0 10px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.divider span:hover {
    border-color: rgba(230, 35, 16, 0.6);
    box-shadow: 
        0 0 15px rgba(230, 35, 16, 0.3),
        inset 0 0 15px rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.coinbase-button {
    width: 100%;
    background: linear-gradient(45deg, #E62310, #44AF35, #FCCF00, #009BD9);
    background-size: 400% 400%;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    animation: marioGradientShift 4s ease-in-out infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    box-shadow: 
        0 0 15px rgba(230, 35, 16, 0.3),
        0 0 30px rgba(68, 175, 53, 0.2),
        0 0 45px rgba(252, 207, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

.coinbase-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(230, 35, 16, 0.4),
        0 12px 35px rgba(68, 175, 53, 0.3),
        0 16px 45px rgba(252, 207, 0, 0.2);
    border-color: #fff;
}

.bonus-text {
    color: #ccc;
    font-size: 0.9rem;
}

/* Featured Section */
.featured-section {
    padding: 4rem 0;
    background: #000;
    text-align: center;
}

.featured-section h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.featured-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.featured-item {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-weight: 500;
}

/* What is XPASS Section */
.what-is-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.content-text h3 {
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
}

.content-text p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #fff;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '•';
    color: #00ffff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.glowing-token {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

/* Star Coin Image Styling */
.star-coin-image {
    width: 240px;
    height: 240px;
    object-fit: contain;
    z-index: 2;
    position: relative;
    animation: horizontalRotate 3s linear infinite;
    filter: drop-shadow(0 0 30px rgba(255, 255, 0, 0.8));
}

/* Horizontal Rotation Animation */
@keyframes horizontalRotate {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.token-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 0, 0.4) 0%, rgba(255, 215, 0, 0.2) 30%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
    z-index: 1;
}

/* Enhanced glow effect for Star Coin */
.glowing-token::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 0, 0.2) 0%, transparent 60%);
    animation: outerGlow 3s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes outerGlow {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

/* Responsive Design for Star Coin */
@media (max-width: 768px) {
    .glowing-token {
        width: 300px;
        height: 300px;
    }
    
    .star-coin-image {
        width: 180px;
        height: 180px;
    }
    
    .glowing-token::before {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 480px) {
    .glowing-token {
        width: 240px;
        height: 240px;
    }
    
    .star-coin-image {
        width: 140px;
        height: 140px;
    }
    
    .glowing-token::before {
        width: 200px;
        height: 200px;
    }
}

/* Passport System Section */
.passport-system {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
}

.passport-system::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 0;
}

.passport-system .container {
    position: relative;
    z-index: 1;
}

.info-box {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.info-box i {
    font-size: 1.2rem;
    text-shadow: 0 0 10px #00ffff;
}

.passport-tiers {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.passport-card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    padding: 0;
    border: 2px solid;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 300px;
    backdrop-filter: blur(10px);
}

.passport-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.passport-card:hover::before {
    transform: translateX(100%);
}

.passport-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.passport-card.citizen {
    border-color: #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.passport-card.citizen:hover {
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.5);
}

.passport-card.founder {
    border-color: #00ff00;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
    transform: scale(1.05);
}

.passport-card.founder:hover {
    box-shadow: 0 0 50px rgba(0, 255, 0, 0.5);
}

.passport-card.diplomat {
    border-color: #ff00ff;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
}

.passport-card.diplomat:hover {
    box-shadow: 0 0 50px rgba(255, 0, 255, 0.5);
}

.passport-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    padding: 2rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.passport-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border: 2px solid;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.passport-logo::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, currentColor, transparent);
    animation: rotate 3s linear infinite;
}

.passport-logo.citizen {
    border-color: #00ffff;
    color: #00ffff;
}

.passport-logo.founder {
    border-color: #00ff00;
    color: #00ff00;
}

.passport-logo.diplomat {
    border-color: #ff00ff;
    color: #ff00ff;
}

.passport-logo .logo-icon {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    font-weight: bold;
}

.mushroom-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    position: relative;
    z-index: 2;
}

.passport-logo:hover .mushroom-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
}

.passport-title {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.passport-title.citizen {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.passport-title.founder {
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

.passport-title.diplomat {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

.passport-subtitle {
    font-size: 0.8rem;
    color: #ccc;
    letter-spacing: 1px;
}

.passport-content {
    padding: 1.5rem;
}

.passport-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

.tier-requirements {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-benefits {
    list-style: none;
    text-align: left;
}

.tier-benefits li {
    padding: 0.5rem 0;
    color: #ccc;
    position: relative;
    padding-left: 1.5rem;
}

.tier-benefits li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.contribution-note {
    text-align: center;
    color: #00ffff;
    font-size: 0.9rem;
    margin-top: 2rem;
    text-shadow: 0 0 10px #00ffff;
}

/* Utility Section */
.utility-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.utility-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 0;
}

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

.musk-world-section {
    text-align: center;
    margin-top: 4rem;
}

.musk-world-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.musk-world-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
}

.musk-world-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.musk-world-card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    padding: 0;
    border: 2px solid rgba(0, 255, 255, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 200px;
    backdrop-filter: blur(10px);
}

.musk-world-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.musk-world-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.mario-character {
    background: linear-gradient(135deg, #E62310 0%, #44AF35 50%, #FCCF00 100%);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 0 20px rgba(230, 35, 16, 0.4),
        0 0 40px rgba(68, 175, 53, 0.3),
        0 0 60px rgba(252, 207, 0, 0.2);
}

.character-image {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.mario-character:hover .character-image {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
}

.mario-character:hover {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 0 30px rgba(230, 35, 16, 0.6),
        0 0 50px rgba(68, 175, 53, 0.4),
        0 0 70px rgba(252, 207, 0, 0.3);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.musk-world-card h3 {
    padding: 1rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    color: #fff;
    margin: 0;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.musk-world-card p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
    margin: 0;
}

/* Mars Image */
.mars-image {
    background: linear-gradient(135deg, #8B0000, #FF4500, #FF6347);
}

.planet-surface {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #FF4500, #8B0000);
    position: relative;
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.5);
}

.planet-surface::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 20px;
    height: 20px;
    background: #8B0000;
    border-radius: 50%;
}

.planet-surface::after {
    content: '';
    position: absolute;
    bottom: 30%;
    right: 30%;
    width: 15px;
    height: 15px;
    background: #A0522D;
    border-radius: 50%;
}

.planet-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.3), transparent);
    animation: pulse 2s ease-in-out infinite;
}

/* Tesla Image */
.tesla-image {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.tesla-car {
    width: 60px;
    height: 30px;
    background: #fff;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.tesla-car::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 10px;
    width: 40px;
    height: 20px;
    background: #fff;
    border-radius: 10px;
}

.charging-station {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 20px;
    height: 30px;
    background: #00ff00;
    border-radius: 3px;
    box-shadow: 0 0 10px #00ff00;
}

/* X Image */
.x-image {
    background: linear-gradient(135deg, #000080, #4169E1);
}

.digital-globe {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, #4169E1, #000080);
    position: relative;
    box-shadow: 0 0 30px rgba(65, 105, 225, 0.5);
}

.connection-lines {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid #00ffff;
    border-radius: 50%;
    animation: rotate 4s linear infinite;
}

.connection-lines::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 50px;
    background: #00ffff;
    transform: translate(-50%, -50%);
}

.connection-lines::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 2px;
    background: #00ffff;
    transform: translate(-50%, -50%);
}

/* AI Image */
.ai-image {
    background: linear-gradient(135deg, #4B0082, #8A2BE2);
}

.brain-neural {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #8A2BE2, #4B0082);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
}

.neural-connections {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 1px solid #00ffff;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.neural-connections::before,
.neural-connections::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 20px;
    background: #00ffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.neural-connections::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

/* SpaceX Image */
.spacex-image {
    background: linear-gradient(135deg, #000000, #1a1a1a);
}

.rocket-launch {
    width: 20px;
    height: 60px;
    background: linear-gradient(to top, #fff, #ccc);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.rocket-launch::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 15px solid #fff;
}

.launch-flames {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #FF4500, #FF6347, transparent);
    border-radius: 50%;
    animation: flame 0.5s ease-in-out infinite alternate;
}

@keyframes flame {
    0% { transform: translateX(-50%) scale(1); }
    100% { transform: translateX(-50%) scale(1.2); }
}

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

/* Vision Sections */
.vision-sections {
    background: #000;
}

.vision-card {
    padding: 6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.vision-card:nth-child(even) {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 0;
}

.vision-card .container {
    position: relative;
    z-index: 1;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vision-text h2::before {
    content: '🚀';
    font-size: 2rem;
}

.vision-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 700;
}

.vision-text p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.vision-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.vision-text li {
    padding: 0.5rem 0;
    color: #fff;
    position: relative;
    padding-left: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.vision-text li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: #ff6b35;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.2rem;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.vision-text li strong {
    color: #ff6b35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.vision-highlight {
    color: #ff6b35 !important;
    font-weight: 600;
    font-size: 1.2rem;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vision-highlight::before {
    content: '✨';
}

.vision-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.vision-button {
    background: transparent;
    color: #fff;
    border: 2px solid #ff6b35;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.vision-button:hover {
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

.vision-button.explore {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: #000;
    border: none;
    text-align: center;
    justify-content: center;
}

.vision-button.explore:hover {
    background: linear-gradient(45deg, #ff8c42, #ff6b35);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.vision-visual {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    border: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.2);
}

.vision-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.mars-vision .vision-visual {
    background: linear-gradient(135deg, #8B0000, #FF4500, #FF6347);
}

.tesla-vision .vision-visual {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d, #404040);
}

.x-vision .vision-visual {
    background: linear-gradient(135deg, #000080, #4169E1, #87CEEB);
}

.neuralink-vision .vision-visual {
    background: linear-gradient(135deg, #4B0082, #8A2BE2, #9370DB);
}

.spacex-vision .vision-visual {
    background: linear-gradient(135deg, #000000, #1a1a1a, #2d2d2d);
}

.vision-image-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for better text readability */
    border-radius: 20px;
}

.vision-image-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Advanced Frame Styling for Vision Gallery Images */
.vision-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.vision-visual {
    background: #2a2a2a !important; /* Dark gray background */
    border: 3px solid #ff8c42 !important; /* Orange/amber border */
    border-radius: 20px !important; /* Rounded corners */
    box-shadow: 
        0 0 20px rgba(255, 140, 66, 0.6), /* Outer glow */
        0 0 40px rgba(255, 140, 66, 0.4), /* Medium glow */
        0 0 60px rgba(255, 140, 66, 0.2), /* Inner glow */
        inset 0 0 20px rgba(255, 140, 66, 0.1); /* Inner border glow */
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 1000px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

/* Enhanced Hover Effects - Desktop Only */
@media (hover: hover) and (pointer: fine) {
    .vision-visual:hover {
        transform: translateY(-10px) rotateX(5deg) rotateY(5deg) scale(1.05);
        box-shadow: 
            0 20px 40px rgba(255, 140, 66, 0.8), /* Enhanced outer glow */
            0 40px 80px rgba(255, 140, 66, 0.6), /* Enhanced medium glow */
            0 60px 120px rgba(255, 140, 66, 0.4), /* Enhanced inner glow */
            inset 0 0 30px rgba(255, 140, 66, 0.2), /* Enhanced inner border glow */
            0 0 100px rgba(255, 140, 66, 0.3); /* Additional hover glow */
        border-color: #ffa500 !important; /* Brighter border on hover */
    }

    .vision-visual:hover::before {
        animation: borderGlowHover 0.6s ease-in-out infinite alternate;
        background: linear-gradient(45deg, #ffa500, #ff8c42, #ff6b35, #ffa500, #ff8c42);
    }

    .vision-visual:hover .vision-gallery-image {
        transform: scale(1.1);
        filter: brightness(1.2) contrast(1.1);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .vision-visual:hover .vision-image-content {
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(5px);
        transition: all 0.4s ease;
    }

    .vision-visual:hover .vision-image-title {
        transform: translateY(-5px);
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 40px rgba(255, 140, 66, 0.6),
            0 0 60px rgba(255, 140, 66, 0.4);
        transition: all 0.4s ease;
    }
}

/* Mobile/Touch Click Effects */
.vision-visual:active {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 30px rgba(255, 140, 66, 0.7),
        0 30px 60px rgba(255, 140, 66, 0.5),
        0 45px 90px rgba(255, 140, 66, 0.3),
        inset 0 0 25px rgba(255, 140, 66, 0.15),
        0 0 80px rgba(255, 140, 66, 0.25);
    border-color: #ffa500 !important;
    transition: all 0.2s ease;
}

.vision-visual:active::before {
    animation: borderGlowHover 0.3s ease-in-out infinite alternate;
    background: linear-gradient(45deg, #ffa500, #ff8c42, #ff6b35, #ffa500, #ff8c42);
}

.vision-visual:active .vision-gallery-image {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.05);
    transition: all 0.2s ease;
}

.vision-visual:active .vision-image-content {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    transition: all 0.2s ease;
}

.vision-visual:active .vision-image-title {
    transform: translateY(-3px);
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.7),
        0 0 30px rgba(255, 140, 66, 0.5),
        0 0 45px rgba(255, 140, 66, 0.3);
    transition: all 0.2s ease;
}

.vision-visual::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff8c42, #ff6b35, #ff8c42, #ffa500);
    border-radius: 22px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

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

@keyframes borderGlowHover {
    0% { 
        opacity: 1;
        transform: scale(1.05);
    }
    100% { 
        opacity: 0.9;
        transform: scale(1.1);
    }
}

/* Ensure proper transitions for all elements */
.vision-gallery-image {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vision-image-content {
    transition: all 0.4s ease;
}

.vision-image-title {
    transition: all 0.4s ease;
}

/* Responsive Design for Vision Gallery */
@media (max-width: 768px) {
    .vision-visual {
        height: 300px !important;
        margin-bottom: 2rem;
    }
    
    .vision-gallery-image {
        border-radius: 15px;
    }
    
    .vision-image-content {
        border-radius: 15px;
    }
    
    .vision-image-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .vision-visual::before {
        border-radius: 17px;
    }
    
    /* Enhanced touch effects for mobile */
    .vision-visual:active {
        transform: translateY(-3px) scale(1.01);
        transition: all 0.15s ease;
    }
    
    .vision-visual:active .vision-gallery-image {
        transform: scale(1.02);
        transition: all 0.15s ease;
    }
}

@media (max-width: 480px) {
    .vision-visual {
        height: 250px !important;
    }
    
    .vision-image-title {
        font-size: 1.2rem;
    }
    
    .vision-visual {
        border-width: 2px !important;
    }
    
    .vision-visual::before {
        top: -1px;
        left: -1px;
        right: -1px;
        bottom: -1px;
    }
    
    /* Minimal touch effects for small mobile */
    .vision-visual:active {
        transform: translateY(-2px) scale(1.005);
        transition: all 0.1s ease;
    }
    
    .vision-visual:active .vision-gallery-image {
        transform: scale(1.01);
        transition: all 0.1s ease;
    }
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* Tokenomics Section */
.tokenomics-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
    position: relative;
}

.tokenomics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 0;
}

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

.tokenomics-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.tokenomics-chart {
    display: flex;
    justify-content: center;
    align-items: center;
}

.donut-chart {
    position: relative;
    width: 300px;
    height: 300px;
}

.donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.center-text {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
    margin-bottom: 0.5rem;
}

.center-number {
    display: block;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
}

.donut-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.donut-svg circle {
    filter: drop-shadow(0 0 10px currentColor);
    animation: donutGlow 2s ease-in-out infinite alternate;
}

.presale-segment {
    stroke: #00ffff;
}

.liquidity-segment {
    stroke: #0080ff;
}

.community-segment {
    stroke: #00ff00;
}

.team-segment {
    stroke: #ff00ff;
}

.marketing-segment {
    stroke: #ff8000;
}

.reserve-segment {
    stroke: #ff0000;
}

.tokenomics-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tokenomics-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tokenomics-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.1);
    transform: translateX(10px);
}

.item-bullet {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px currentColor;
}

.presale-color {
    background: #00ffff;
}

.liquidity-color {
    background: #0080ff;
}

.community-color {
    background: #00ff00;
}

.team-color {
    background: #ff00ff;
}

.marketing-color {
    background: #ff8000;
}

.reserve-color {
    background: #ff0000;
}

.item-content {
    flex: 1;
}

.item-content h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.item-content p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.item-percentage {
    font-size: 1.5rem;
    font-weight: 800;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    flex-shrink: 0;
}

@keyframes donutGlow {
    0% { filter: drop-shadow(0 0 5px currentColor); }
    100% { filter: drop-shadow(0 0 15px currentColor); }
}

/* Roadmap Section */
.roadmap-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
}

.roadmap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 0;
}

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

.roadmap-horizontal {
    position: relative;
    margin-top: 4rem;
}

.roadmap-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ffff, #ff00ff, #00ffff);
    transform: translateY(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.roadmap-milestones {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.roadmap-milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.milestone-node {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border: 4px solid #000;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    margin-bottom: 1rem;
    position: relative;
    z-index: 3;
    animation: nodePulse 2s ease-in-out infinite;
}

.milestone-content {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.milestone-content:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.milestone-date {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.milestone-content h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.milestone-content p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

@keyframes nodePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
    }
}


/* Tokenomics Table */
.tokenomics-table-section {
    margin-top: 2rem;
    padding: 2rem 0;
}

.table-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FCCF00;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(252, 207, 0, 0.5);
}

.table-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tokenomics-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.header-cell {
    font-size: 1rem;
    font-weight: 700;
    color: #FCCF00;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    align-items: center;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transform: translateX(5px);
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    font-size: 1rem;
    color: #fff;
    text-align: center;
    font-weight: 500;
}

.category-cell {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left !important;
}

.category-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.presale-icon {
    background: linear-gradient(135deg, #E62310, #FCCF00);
    color: #fff;
}

.liquidity-icon {
    background: linear-gradient(135deg, #009BD9, #44AF35);
    color: #fff;
}

.community-icon {
    background: linear-gradient(135deg, #FCCF00, #E62310);
    color: #fff;
}

.team-icon {
    background: linear-gradient(135deg, #44AF35, #009BD9);
    color: #fff;
}

.marketing-icon {
    background: linear-gradient(135deg, #E62310, #009BD9);
    color: #fff;
}

.reserve-icon {
    background: linear-gradient(135deg, #009BD9, #FCCF00);
    color: #fff;
}

.total-icon {
    background: linear-gradient(135deg, #E62310, #44AF35, #FCCF00, #009BD9);
    background-size: 400% 400%;
    animation: marioGradientShift 4s ease-in-out infinite;
    color: #fff;
    font-weight: bold;
}

.total-row {
    background: rgba(252, 207, 0, 0.1);
    border-radius: 15px;
    margin-top: 1rem;
    border: 2px solid rgba(252, 207, 0, 0.3);
    font-weight: 700;
}

.total-row .table-cell {
    color: #FCCF00;
    font-weight: 700;
}

.percentage-cell {
    font-weight: 600;
    color: #00ffff;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 0;
}

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

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.team-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.team-row:first-child {
    justify-content: center;
}

.team-row:nth-child(2) {
    justify-content: center;
}

.team-row:last-child {
    justify-content: center;
}

.team-member {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(0, 255, 255, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 200px;
    backdrop-filter: blur(10px);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.team-member:hover::before {
    transform: translateX(100%);
}

.team-member:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(45deg, #E62310, #44AF35, #FCCF00, #009BD9);
    background-size: 400% 400%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 0 20px rgba(230, 35, 16, 0.4),
        0 0 40px rgba(68, 175, 53, 0.3),
        0 0 60px rgba(252, 207, 0, 0.2);
    animation: marioGradientShift 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.member-avatar:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 30px rgba(230, 35, 16, 0.6),
        0 0 50px rgba(68, 175, 53, 0.4),
        0 0 70px rgba(252, 207, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
}

.member-avatar:hover .profile-image {
    transform: scale(1.05);
    border-color: #fff;
}

.member-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-avatar:hover::before {
    opacity: 1;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 700;
}

.member-role {
    color: #00ffff;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #00ffff;
}

.member-description {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Partners Section */
.partners-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.partner-logo {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #ccc;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.partner-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.partner-logo span {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.partner-logo:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 35, 16, 0.4);
    box-shadow: 
        0 10px 30px rgba(230, 35, 16, 0.2),
        0 0 20px rgba(68, 175, 53, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.partner-logo:hover .partner-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
}

.partners-cta {
    text-align: center;
    margin-top: 3rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 255, 255, 0.1);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #00ffff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-answer ul {
    list-style: none;
    margin-left: 1rem;
}

.faq-answer li {
    color: #ccc;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
}

.faq-answer li::before {
    content: '•';
    color: #00ffff;
    position: absolute;
    left: 0;
}

/* Footer */
.footer {
    background: #000;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3 {
    color: #00ffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

.social-link {
    color: #00ffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    text-shadow: 0 0 10px #00ffff;
}

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

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

@keyframes marioGradientShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

@keyframes marioGlow {
    0% { 
        text-shadow: 
            0 0 20px rgba(255, 0, 0, 0.6),
            0 0 40px rgba(0, 255, 0, 0.4),
            0 0 60px rgba(255, 255, 0, 0.3);
    }
    100% { 
        text-shadow: 
            0 0 30px rgba(255, 0, 0, 0.8),
            0 0 50px rgba(0, 255, 0, 0.6),
            0 0 70px rgba(255, 255, 0, 0.4),
            0 0 90px rgba(0, 0, 255, 0.3);
    }
}

@keyframes neonGlow {
    0% { text-shadow: 0 0 20px rgba(0, 255, 255, 0.5); }
    100% { text-shadow: 0 0 30px rgba(0, 255, 255, 0.8), 0 0 40px rgba(0, 255, 255, 0.3); }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

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

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

@keyframes progressGlow {
    0% { box-shadow: 0 0 5px rgba(0, 255, 255, 0.3); }
    100% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.6); }
}

@keyframes whiteGlow {
    0% { 
        text-shadow: 
            0 0 5px rgba(0, 0, 0, 1),
            0 0 10px rgba(0, 0, 0, 0.9),
            0 0 15px rgba(0, 0, 0, 0.8),
            0 0 20px rgba(0, 0, 0, 0.7),
            0 0 25px rgba(255, 255, 255, 0.8),
            0 0 30px rgba(255, 255, 255, 0.6),
            0 0 35px rgba(0, 255, 255, 0.4),
            0 0 40px rgba(255, 0, 255, 0.3);
    }
    100% { 
        text-shadow: 
            0 0 8px rgba(0, 0, 0, 1),
            0 0 16px rgba(0, 0, 0, 0.9),
            0 0 24px rgba(0, 0, 0, 0.8),
            0 0 32px rgba(0, 0, 0, 0.7),
            0 0 40px rgba(255, 255, 255, 1),
            0 0 48px rgba(255, 255, 255, 0.8),
            0 0 56px rgba(0, 255, 255, 0.6),
            0 0 64px rgba(255, 0, 255, 0.5);
    }
}

/* Purchase Guide Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.modal-icon {
    font-size: 1.5rem;
    color: #00ffff;
}

.modal-header h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10001;
    position: relative;
    pointer-events: auto;
}

.modal-close:hover {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
}

.modal-subtitle {
    margin-bottom: 2rem;
}

.modal-subtitle p {
    color: #ccc;
    font-size: 1.1rem;
    margin: 0;
}

.guide-steps {
    margin-bottom: 2rem;
}

.guide-step {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-title {
    color: #ff6b35;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-instruction {
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.payment-methods {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.payment-btn {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.payment-btn.active {
    background: rgba(0, 255, 255, 0.2);
    color: #fff;
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.payment-btn:hover {
    background: rgba(0, 255, 255, 0.15);
    border-color: #00ffff;
}

.step-note {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

.highlight-text {
    color: #00ffff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.important-notes {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.notes-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.warning-icon {
    font-size: 1.2rem;
}

.notes-header h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.notes-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.notes-list li {
    color: #fff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: #00ff00;
    font-weight: bold;
}

.x-icon {
    color: #ff0000;
    font-weight: bold;
}

.lightning-icon {
    color: #ffff00;
    font-weight: bold;
}

.gift-icon {
    color: #ff00ff;
    font-weight: bold;
}

.exchange-rates {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.rates-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.refresh-icon {
    font-size: 1.2rem;
    color: #00ffff;
}

.rates-header h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.rates-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rates-list li {
    color: #ccc;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border-left: 3px solid #00ffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .mario-logo-text {
        font-size: 2.5rem;
    }
    
    .hero-title .neon-text {
        font-size: 2rem;
    }
    
    .banner-content .mario-logo-text {
        font-size: 2.5rem;
    }
    
    .banner-content .hero-title .neon-text {
        font-size: 2rem;
        text-shadow: 
            1px 1px 2px rgba(0, 0, 0, 0.9),
            0 0 4px rgba(0, 0, 0, 0.8);
        -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.8);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    .banner-content .hero-subtitle {
        font-size: 1rem;
        text-shadow: 
            1px 1px 1px rgba(0, 0, 0, 0.9),
            0 0 2px rgba(0, 0, 0, 0.8);
        -webkit-text-stroke: 0.3px rgba(0, 0, 0, 0.8);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .timer-item {
        min-width: 80px;
        padding: 1rem;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
    
    .presale-card {
        padding: 2rem 1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .passport-tiers {
        flex-direction: column;
        align-items: center;
    }
    
    .musk-world-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tokenomics-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .roadmap-milestones {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
    
    .roadmap-line {
        display: none;
    }
    
    .roadmap-milestone {
        width: 90%;
        max-width: 300px;
        text-align: center;
    }
    
    .milestone-node {
        position: static;
        margin-bottom: 1rem;
    }
    
    .milestone-content {
        padding: 1rem;
    }
    
    
    .team-row {
        flex-direction: column;
        align-items: center;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    
    .modal-content {
        margin: 10px;
        max-width: none;
        padding: 1.5rem;
    }
    
    /* Tokenomics Table Mobile */
    .table-title {
        font-size: 2rem;
    }
    
    .tokenomics-table {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .table-header {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
    
    .table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
        padding: 1rem 0;
    }
    
    .category-cell {
        justify-content: center;
        text-align: center !important;
    }
    
    .table-cell {
        font-size: 0.9rem;
    }
    
    .payment-methods {
        flex-direction: column;
        align-items: stretch;
    }
    
    .payment-btn {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .mario-logo-text {
        font-size: 2rem;
    }
    
    .hero-title .neon-text {
        font-size: 1.5rem;
    }
    
    .banner-content .mario-logo-text {
        font-size: 2rem;
    }
    
    .banner-content .hero-title .neon-text {
        font-size: 1.5rem;
        text-shadow: 
            1px 1px 1px rgba(0, 0, 0, 0.9),
            0 0 2px rgba(0, 0, 0, 0.8);
        -webkit-text-stroke: 0.3px rgba(0, 0, 0, 0.8);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    .banner-content .hero-subtitle {
        font-size: 0.9rem;
        text-shadow: 
            1px 1px 1px rgba(0, 0, 0, 0.9),
            0 0 1px rgba(0, 0, 0, 0.8);
        -webkit-text-stroke: 0.2px rgba(0, 0, 0, 0.8);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .presale-card {
        padding: 1.5rem 1rem;
    }
    
    .token-options {
        justify-content: center;
    }
    
    .timer-item {
        min-width: 70px;
        padding: 0.8rem;
    }
    
    .timer-number {
        font-size: 1.2rem;
    }
    
    .vision-text h2 {
        font-size: 2rem;
    }
    
    .vision-text h3 {
        font-size: 1.5rem;
    }
    
    .tokenomics-percentage {
        font-size: 2.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* Whitepaper Modal Styles */
.whitepaper-content {
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
}

.whitepaper-sections {
    padding: 2rem;
}

.whitepaper-section {
    margin-bottom: 3rem;
}

.whitepaper-section h3 {
    color: #00ffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
    padding-bottom: 0.5rem;
}

.whitepaper-section h4 {
    color: #ff00ff;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem 0;
}

.whitepaper-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.whitepaper-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.whitepaper-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

.component-card {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.component-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.component-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.component-card h4 {
    color: #00ffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tokenomics-overview {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.token-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    color: #00ffff;
    font-size: 1.2rem;
    font-weight: 600;
}

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

.use-case {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(255, 0, 255, 0.05) 100%);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.use-case:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.15);
}

.use-case h4 {
    color: #00ffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.roadmap-timeline {
    position: relative;
    margin: 2rem 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #00ffff, #ff00ff);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 4rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0.5rem;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border-radius: 50%;
    border: 3px solid #000;
}

.timeline-date {
    color: #ff00ff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: #00ffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content p {
    color: #ccc;
    font-size: 0.95rem;
    margin: 0;
}

.whitepaper-footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 46, 0.8) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    margin-top: 2rem;
}

.whitepaper-footer p {
    color: #ffc107;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.whitepaper-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-tertiary {
    background: linear-gradient(45deg, #ff0000, #00ff00, #ffff00, #0000ff);
    background-size: 400% 400%;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    animation: marioGradientShift 4s ease-in-out infinite;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.btn-tertiary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 5px 15px rgba(255, 0, 0, 0.4),
        0 8px 20px rgba(0, 255, 0, 0.3),
        0 10px 25px rgba(255, 255, 0, 0.2);
}

/* Mobile Responsive for Whitepaper */
@media (max-width: 768px) {
    .whitepaper-content {
        margin: 10px;
        max-width: none;
    }
    
    .whitepaper-sections {
        padding: 1rem;
    }
    
    .component-grid {
        grid-template-columns: 1fr;
    }
    
    .token-stats {
        grid-template-columns: 1fr;
    }
    
    .use-cases {
        grid-template-columns: 1fr;
    }
    
    .roadmap-timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 3rem;
    }
    
    .timeline-item::before {
        left: 6px;
    }
    
    .whitepaper-actions {
        flex-direction: column;
    }
}
