/* 3I/ATLAS AI Website - CSS Part 1 */
/* Base Styles, Variables, Navbar, and Hero Section */

/* ===== CSS VARIABLES ===== */
:root {
    /* Interstellar Color Palette */
    --space-black: #0a0e1a;
    --space-blue: #0f1729;
    --space-blue-light: #1a2332;
    --deep-blue: #0d1b2a;
    --cosmic-gold: #FFD75E;
    --bright-gold: #FFC043;
    --accent-gold: #d4af37;
    --comet-blue: #4fc3f7;
    --star-white: #ffffff;
    --nebula-purple: #7b2cbf;
    --text-light: #f5f7fa;
    --text-muted: #b8c1db;
    --text-gold: #FFD75E;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FFD75E 0%, #FFC043 100%);
    --gradient-space: linear-gradient(180deg, #0a0e1a 0%, #0f1729 50%, #1a2332 100%);
    --gradient-comet: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 50%, #0288d1 100%);
    --gradient-gold: linear-gradient(135deg, #e8b84d 0%, #d4a843 100%);
    --gradient-text: linear-gradient(90deg, #FFD75E, #FFC043);
    
    /* Effects */
    --glow-gold: 0 0 12px rgba(255, 215, 94, 0.35);
    --glow-blue: 0 0 20px rgba(79, 195, 247, 0.6);
    --glow-star: 0 0 10px rgba(255, 255, 255, 0.8);
    --shadow-deep: 0 8px 32px rgba(10, 14, 26, 0.8);
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    /* Animation Speeds */
    --animation-speed-fast: 0.2s;
    --animation-speed-normal: 0.3s;
    --animation-speed-slow: 0.5s;
}

/* ===== BASE STYLES ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--space-black);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Starfield Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, #0f1729 0%, #0a0e1a 100%);
    z-index: -2;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem;
    line-height: 1.2;
    color: var(--text-light);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

/* ===== LINKS & BUTTONS ===== */
a {
    color: var(--cosmic-gold);
    text-decoration: none;
    transition: color var(--animation-speed-fast) ease;
}

a:hover {
    color: var(--bright-gold);
    text-shadow: var(--glow-gold);
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--animation-speed-normal) ease;
}

/* Primary Button */
.primary-btn {
    background: var(--gradient-gold);
    color: var(--space-black);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 12px rgba(232, 184, 77, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(212, 168, 67, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f4c864 0%, #e8b84d 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--animation-speed-normal) ease;
}

.primary-btn:hover {
    box-shadow: 0 6px 20px rgba(232, 184, 77, 0.4);
    transform: translateY(-2px);
    color: var(--space-black);
}

.primary-btn:hover::before {
    opacity: 1;
}

.primary-btn:active {
    transform: translateY(0);
}

.secondary-btn {
    background: transparent;
    color: var(--cosmic-gold);
    border: 2px solid var(--cosmic-gold);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.secondary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 215, 94, 0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--animation-speed-normal) ease;
    z-index: -1;
}

.secondary-btn:hover::before {
    transform: scaleX(1);
}

.secondary-btn:hover {
    border-color: var(--bright-gold);
    color: var(--bright-gold);
    box-shadow: var(--glow-gold);
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-family: "Audiowide", sans-serif;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 215, 94, 0.5);
}

/* ===== NAVBAR STYLES ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
    padding: 1rem 0;
    background: transparent;
}

.navbar-scrolled {
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-family: "Audiowide", sans-serif;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--cosmic-gold);
    box-shadow: 0 0 10px rgba(255, 215, 94, 0.3);
}

.logo-text-container {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.logo-text {
    color: var(--text-light);
    font-weight: 700;
}

.logo-ai {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-family: "Exo 2", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--cosmic-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-cta {
    background: var(--gradient-gold);
    color: var(--space-black);
    padding: 0.6rem 1.25rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(232, 184, 77, 0.25);
    transition: all 0.3s ease;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    color: var(--space-black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 184, 77, 0.4);
}

/* Desktop Socials */
.navbar-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-link {
    color: var(--text-muted);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    color: var(--cosmic-gold);
    background: rgba(255, 215, 94, 0.1);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 102;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 14, 26, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 98;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Sidebar */
.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    max-width: 320px;
    height: 100vh;
    background: rgba(15, 23, 41, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 215, 94, 0.2);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 101;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.mobile-menu-sidebar.active {
    transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 215, 94, 0.1);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-family: "Audiowide", sans-serif;
    font-size: 1.5rem;
}

.mobile-logo .logo-image {
    width: 35px;
    height: 35px;
}

/* Mobile Navigation */
.mobile-nav-menu {
    list-style: none;
    padding: 0rem 0;
    margin: 0;
    flex: 1;
}

.mobile-nav-item {
    margin: 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-family: "Exo 2", sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: rgba(255, 215, 94, 0.1);
    border-left-color: var(--cosmic-gold);
    color: var(--cosmic-gold);
}

.mobile-nav-icon {
    font-size: 1.3rem;
    width: 24px;
    display: inline-block;
    text-align: center;
}

.mobile-nav-link-cta {
    margin: 1rem 1.5rem;
    padding: 0.85rem 1.5rem;
    background: var(--gradient-gold);
    color: var(--space-black);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-align: center;
    border-left: none;
    box-shadow: 0 4px 12px rgba(232, 184, 77, 0.25);
}

.mobile-nav-link-cta:hover {
    background: linear-gradient(135deg, #f4c864 0%, #e8b84d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 184, 77, 0.4);
}

/* Mobile Socials */
.mobile-socials {
    margin-bottom: 0rem;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 215, 94, 0.1);
}

.mobile-socials-title {
    font-family: "Exo 2", sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-social-links {
    display: flex;
    gap: 1rem;
}

.mobile-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 94, 0.1);
    border: 1px solid rgba(255, 215, 94, 0.2);
    border-radius: 50%;
    color: var(--cosmic-gold);
    transition: all 0.3s ease;
}

.mobile-social-link:hover {
    background: rgba(255, 215, 94, 0.2);
    border-color: var(--cosmic-gold);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 94, 0.3);
}

/* ===== HERO SECTION STYLES ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    justify-content: space-around;
    overflow: hidden;
    padding-top: 80px;
    background-color: var(--space-black);
}

/* Background elements */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    background-color: #ffffff;
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

.star-small {
    width: 1px;
    height: 1px;
    box-shadow: 0 0 2px #ffffff;
}

.star-medium {
    width: 2px;
    height: 2px;
    box-shadow: 0 0 4px #ffffff, 0 0 8px rgba(255, 255, 255, 0.5);
}

.star-large {
    width: 3px;
    height: 3px;
    box-shadow: 0 0 6px #ffffff, 0 0 12px rgba(255, 255, 255, 0.8), 0 0 18px rgba(255, 215, 94, 0.3);
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Shooting stars */
.shooting-stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shooting-star {
    position: absolute;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 1) 50%, 
        rgba(79, 195, 247, 1) 75%,
        rgba(79, 195, 247, 0) 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(79, 195, 247, 0.8);
    animation: shootingStar 3s ease-in-out infinite;
    opacity: 0;
}

@keyframes shootingStar {
    0% {
        transform: translate(0, 0) rotate(-45deg);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    30% {
        opacity: 1;
    }
    100% {
        transform: translate(-300px, 300px) rotate(-45deg);
        opacity: 0;
    }
}

/* Nebula Glow Effects */
.nebula-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: nebulaPulse 8s ease-in-out infinite;
}

.nebula-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.4) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.nebula-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.3) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation-delay: 4s;
}

@keyframes nebulaPulse {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.1);
    }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
        rgba(13, 17, 33, 0.4) 0%,
        var(--space-black) 70%);
}

/* Main content */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: auto;
    width: 90%;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 94, 0.1);
    border: 1px solid rgba(255, 215, 94, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--cosmic-gold);
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-family: "Audiowide", sans-serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    position: relative;
    display: flex;
    flex-direction: row;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 4rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    font-family: "Audiowide", sans-serif;
    position: relative;
    margin-top: 0px;
}

.hero-tagline {
    font-size: 1.5rem;
    font-family: "Exo 2", sans-serif;
    color: var(--cosmic-gold);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.25rem;
    font-family: "Exo 2", sans-serif;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.7;
}

.hero-quote {
    background: rgba(15, 23, 41, 0.6);
    border-left: 3px solid var(--cosmic-gold);
    padding: 1.25rem 1.5rem;
    margin-bottom: 3rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    position: relative;
}

.quote-text {
    font-size: 1.05rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 0.5rem;
    padding-top: 0.5rem;
}

.quote-author {
    font-size: 0.9rem;
    color: var(--cosmic-gold);
    font-weight: 600;
    margin: 0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    font-family: "Exo 2", sans-serif;
    flex-wrap: wrap;
}

.hero-cta .primary-btn,
.hero-cta .secondary-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    padding: 0.85rem 1.75rem;
}

.btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.hero-cta .primary-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Animated illustration */
.hero-illustration {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.central-circle {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 1) 0%,
        rgba(79, 195, 247, 0.9) 25%,
        rgba(41, 182, 246, 0.7) 50%,
        rgba(2, 136, 209, 0.4) 75%,
        transparent 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 0 30px rgba(79, 195, 247, 0.8),
        0 0 60px rgba(79, 195, 247, 0.5),
        0 0 90px rgba(41, 182, 246, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.4);
    animation: cometGlow 3s ease-in-out infinite;
}

@keyframes cometGlow {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(79, 195, 247, 0.8),
            0 0 60px rgba(79, 195, 247, 0.5),
            0 0 90px rgba(41, 182, 246, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(79, 195, 247, 1),
            0 0 80px rgba(79, 195, 247, 0.7),
            0 0 120px rgba(41, 182, 246, 0.5),
            inset 0 0 30px rgba(255, 255, 255, 0.6);
    }
}

.pulse-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.6) 0%, transparent 70%);
    opacity: 0.8;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.orbits {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(255, 215, 94, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 160px;
    height: 160px;
}

.orbit-2 {
    width: 240px;
    height: 240px;
}

.orbit-3 {
    width: 320px;
    height: 320px;
}

.orbit-element {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--cosmic-gold);
    box-shadow: 0 0 15px rgba(255, 215, 94, 0.8);
    top: -8px;
    left: calc(50% - 8px);
    animation: orbit-rotation 15s linear infinite;
}

.orbit-1 .orbit-element {
    background: var(--cosmic-gold);
    box-shadow: 0 0 15px rgba(255, 215, 94, 0.8);
    animation-duration: 6s;
}

.orbit-2 .orbit-element {
    width: 12px;
    height: 12px;
    top: -6px;
    left: calc(50% - 6px);
    animation-duration: 12s;
}

.orbit-3 .orbit-element {
    width: 8px;
    height: 8px;
    top: -4px;
    left: calc(50% - 4px);
    animation-duration: 18s;
}

@keyframes orbit-rotation {
    0% {
        transform: rotate(0deg) translateX(80px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(80px) rotate(-360deg);
    }
}

.orbit-1 .orbit-element {
    transform: rotate(0deg) translateX(80px) rotate(0deg);
}

.orbit-2 .orbit-element {
    transform: rotate(0deg) translateX(120px) rotate(0deg);
}

.orbit-3 .orbit-element {
    transform: rotate(0deg) translateX(160px) rotate(0deg);
}

/* ===== RESPONSIVE STYLES FOR PART 1 ===== */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .navbar-socials {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-title {
        font-size: 3.5rem;
        display: block;
    }

    .hero-subtitle {
        font-size: 3rem;
        display: inline;
        margin-left: 10px;
    }

    .hero-description {
        margin: 0 auto 2rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-illustration {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1.5rem;
    }

    .navbar-logo {
        font-size: 1.3rem;
    }

    .mobile-menu-sidebar {
        width: 60%;
        max-width: 280px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-illustration {
        transform: scale(0.8);
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .navbar-logo {
        font-size: 1.2rem;
    }

    .mobile-menu-sidebar {
        width: 65%;
        max-width: 260px;
    }

    .mobile-nav-link {
        font-size: 1rem;
        padding: 0.85rem 1.25rem;
    }

    .mobile-nav-icon {
        font-size: 1.2rem;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 2.2rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta button,
    .hero-cta a {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 380px) {
    .mobile-menu-sidebar {
        width: 70%;
        max-width: 240px;
    }

    .mobile-nav-link {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* 3I/ATLAS AI Website - CSS Part 2 */
/* About, Tokenomics, Roadmap, How to Buy, and Footer Sections */

/* ===== ABOUT SECTION STYLES ===== */
.about-section {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #0f1729 0%, #0a0e1a 100%);
}

/* Starfield Background */
.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-star {
    position: absolute;
    background-color: #ffffff;
    border-radius: 50%;
    animation: aboutTwinkle 4s ease-in-out infinite;
}

.about-star-small {
    width: 1px;
    height: 1px;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.8);
}

.about-star-medium {
    width: 1.5px;
    height: 1.5px;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.9);
}

.about-star-large {
    width: 2px;
    height: 2px;
    box-shadow: 0 0 4px rgba(255, 255, 255, 1), 0 0 8px rgba(255, 255, 255, 0.6);
}

@keyframes aboutTwinkle {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
    }
}

.about-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%,
        rgba(79, 195, 247, 0.03) 0%,
        transparent 40%);
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-description {
    font-size: 1.25rem;
    font-family: "Exo 2", sans-serif;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.7;
}

/* Video Section */
.video-section {
    margin: 0rem 0;
}

.video-title {
    font-size: 1.5rem;
    font-family: "Exo 2", sans-serif;
    color: var(--cosmic-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.video-container {
    position: relative;
    width: auto;
    max-width: 100%;
    margin: 0;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 94, 0.2);
    background: rgba(15, 23, 41, 0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 215, 94, 0.3);
    border-color: rgba(255, 215, 94, 0.4);
}

.video-container iframe {
    max-width: 100%;
    width: 600px;
    height: 300px;
    border: none;
    border-radius: var(--border-radius-lg);
}

@media (max-width: 768px) {
    .video-container iframe {
        height: 250px;
    }
    
    .video-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .video-container iframe {
        height: 200px;
    }
    
    .video-title {
        font-size: 1.2rem;
    }
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    margin-top: 15px;
    background: rgba(15, 23, 41, 0.4);
    border: 1px solid rgba(255, 215, 94, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    transition: transform var(--animation-speed-normal) ease,
        border-color var(--animation-speed-normal) ease,
        box-shadow var(--animation-speed-normal) ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 94, 0.5);
    box-shadow: 0 10px 30px rgba(255, 215, 94, 0.2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(255, 215, 94, 0.3);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--space-black);
}

.feature-title {
    font-size: 1.25rem;
    font-family: "Exo 2", sans-serif;
    margin-bottom: 0.75rem;
    color: var(--cosmic-gold);
}

.feature-desc {
    color: var(--text-muted);
    line-height: 1.6;
}

.about-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.about-graphic {
    width: 100%;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Planet System */
.planet-system {
    position: relative;
    width: 280px;
    height: 280px;
}

/* Central Planet */
.planet-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 35% 35%,
        rgba(255, 255, 255, 1) 0%,
        rgba(79, 195, 247, 0.9) 25%,
        rgba(41, 182, 246, 0.7) 50%,
        rgba(2, 136, 209, 0.5) 75%,
        transparent 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 30px rgba(79, 195, 247, 0.8),
        0 0 60px rgba(79, 195, 247, 0.5),
        0 0 90px rgba(41, 182, 246, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.4);
    animation: planetGlow 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes planetGlow {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(79, 195, 247, 0.8),
            0 0 60px rgba(79, 195, 247, 0.5),
            0 0 90px rgba(41, 182, 246, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(79, 195, 247, 1),
            0 0 80px rgba(79, 195, 247, 0.7),
            0 0 120px rgba(41, 182, 246, 0.5),
            inset 0 0 30px rgba(255, 255, 255, 0.6);
    }
}

/* Planet Rings */
.planet-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(70deg);
    border: 2px solid rgba(79, 195, 247, 0.3);
    border-radius: 50%;
    z-index: 1;
}

.ring-1 {
    width: 160px;
    height: 160px;
    animation: ringPulse1 4s ease-in-out infinite;
}

.ring-2 {
    width: 200px;
    height: 200px;
    animation: ringPulse2 4s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes ringPulse1 {
    0%, 100% {
        opacity: 0.3;
        border-color: rgba(79, 195, 247, 0.3);
    }
    50% {
        opacity: 0.6;
        border-color: rgba(79, 195, 247, 0.5);
    }
}

@keyframes ringPulse2 {
    0%, 100% {
        opacity: 0.2;
        border-color: rgba(79, 195, 247, 0.2);
    }
    50% {
        opacity: 0.5;
        border-color: rgba(79, 195, 247, 0.4);
    }
}

/* Satellite Orbits */
.satellite-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
}

.orbit-a {
    width: 240px;
    height: 240px;
    transform: translate(-50%, -50%);
    animation: orbitPathA 8s linear infinite;
}

.orbit-b {
    width: 260px;
    height: 260px;
    transform: translate(-50%, -50%) rotate(120deg);
    animation: orbitPathB 12s linear infinite;
}

.orbit-c {
    width: 220px;
    height: 220px;
    transform: translate(-50%, -50%) rotate(240deg);
    animation: orbitPathC 10s linear infinite;
}

/* Satellites */
.satellite {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(79, 195, 247, 0.9) 40%, 
        transparent 70%);
    border-radius: 50%;
    box-shadow: 
        0 0 10px rgba(79, 195, 247, 0.8),
        0 0 20px rgba(79, 195, 247, 0.4);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-a .satellite {
    animation: satellitePulse 2s ease-in-out infinite;
}

.orbit-b .satellite {
    width: 8px;
    height: 8px;
    animation: satellitePulse 2.5s ease-in-out infinite;
}

.orbit-c .satellite {
    width: 12px;
    height: 12px;
    animation: satellitePulse 3s ease-in-out infinite;
}

@keyframes orbitPathA {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes orbitPathB {
    from {
        transform: translate(-50%, -50%) rotate(120deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(480deg);
    }
}

@keyframes orbitPathC {
    from {
        transform: translate(-50%, -50%) rotate(240deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(600deg);
    }
}

@keyframes satellitePulse {
    0%, 100% {
        box-shadow: 
            0 0 10px rgba(79, 195, 247, 0.8),
            0 0 20px rgba(79, 195, 247, 0.4);
    }
    50% {
        box-shadow: 
            0 0 15px rgba(79, 195, 247, 1),
            0 0 30px rgba(79, 195, 247, 0.6);
    }
}

.stats-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    background: rgba(15, 23, 41, 0.5);
    border: 1px solid rgba(255, 215, 94, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    padding: 0 1rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: "Exo 2", sans-serif;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-family: "Exo 2", sans-serif;
    color: var(--text-muted);
    white-space: nowrap;
}

/* ===== TOKENOMICS SECTION STYLES ===== */
.tokenomics-section {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(ellipse at center, #0f1729 0%, #0a0e1a 100%);
    overflow: hidden;
    z-index: 1;
}

.tokenomics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.tokenomics-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 60px;
}

@media (min-width: 992px) {
    .tokenomics-content {
        flex-direction: row;
        align-items: center;
    }
}

/* Chart Styles */
.tokenomics-chart {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.pie-chart {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(79, 195, 247, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    background: conic-gradient(#4fc3f7 0% 80%, #d4af37 80% 95%, #7b2cbf 95% 100%);
}

.chart-center {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: var(--space-black);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.chart-center .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
    font-family: "Audiowide", sans-serif;
}

.chart-center .logo-highlight {
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-top: -4px;
    font-family: "Audiowide", sans-serif;
}

/* Breakdown Styles */
.tokenomics-breakdown {
    flex: 1;
    background: rgba(15, 23, 41, 0.4);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.breakdown-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--cosmic-gold);
    text-align: center;
}

.distribution-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.distribution-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.distribution-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.distribution-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    box-shadow: 0 0 10px currentColor;
}

.distribution-details {
    flex: 1;
}

.distribution-category {
    display: block;
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--text-light);
}

.distribution-bar {
    height: 8px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.distribution-progress {
    height: 100%;
    border-radius: 4px;
    transition: width 1.5s ease-out;
    box-shadow: 0 0 10px currentColor;
}

.distribution-percentage {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cosmic-gold);
    margin-left: 15px;
}

.burn-mechanic {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.burn-mechanic p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Background Elements */
.tokenomics-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

.geometric-shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.15) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
}

/* ===== ROADMAP SECTION STYLES ===== */
.roadmap-section {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(ellipse at center, #0f1729 0%, #0a0e1a 100%);
    overflow: hidden;
    z-index: 1;
}

.roadmap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.roadmap-timeline {
    position: relative;
    margin: 80px 0;
    padding: 20px 0;
}

.timeline-track {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(79, 195, 247, 0.8) 0%,
        rgba(212, 175, 55, 0.8) 50%,
        rgba(123, 44, 191, 0.8) 100%);
    transform: translateX(-50%);
    z-index: 1;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(79, 195, 247, 0.5);
}

.roadmap-item {
    position: relative;
    margin-bottom: 80px;
    width: 100%;
    display: flex;
    z-index: 2;
}

.roadmap-item:last-child {
    margin-bottom: 0;
}

.roadmap-item:nth-child(odd) {
    justify-content: flex-start;
}

.roadmap-item:nth-child(even) {
    justify-content: flex-end;
}

.roadmap-marker {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}

.marker-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--cosmic-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    z-index: 2;
}

.roadmap-item.current .marker-dot {
    background: linear-gradient(135deg, #4fc3f7, #d4af37);
    animation: pulse-dot 2s infinite;
}

.marker-line {
    width: 60px;
    height: 3px;
    background-color: var(--cosmic-gold);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.roadmap-item:nth-child(odd) .marker-line {
    right: 24px;
}

.roadmap-item:nth-child(even) .marker-line {
    right: auto;
    left: 24px;
}

.roadmap-content {
    width: calc(50% - 60px);
    padding: 30px;
    background: rgba(15, 23, 41, 0.5);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roadmap-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.4);
}

.roadmap-item.current .roadmap-content {
    border: 1px solid rgba(79, 195, 247, 0.4);
    box-shadow: 0 8px 32px rgba(79, 195, 247, 0.2);
}

.roadmap-phase {
    display: inline-block;
    background: var(--gradient-gold);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--space-black);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.roadmap-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--cosmic-gold);
}

.milestone-list {
    list-style: none;
    padding-left: 5px;
    margin-bottom: 20px;
}

.milestone-item {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 1rem;
}

.milestone-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: rgba(79, 195, 247, 0.5);
    border-radius: 3px;
    transform: rotate(45deg);
    box-shadow: 0 0 8px rgba(79, 195, 247, 0.4);
}

.status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.roadmap-item.current .status-badge {
    background-color: rgba(79, 195, 247, 0.2);
    color: #4fc3f7;
    border: 1px solid rgba(79, 195, 247, 0.4);
}

.roadmap-item.upcoming .status-badge {
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--cosmic-gold);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.roadmap-note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: var(--text-muted);
    opacity: 0.8;
}

/* Glow Effects */
.roadmap-glow-1 {
    position: absolute;
    top: 20%;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.roadmap-glow-2 {
    position: absolute;
    bottom: 10%;
    left: -150px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Animations */
@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 195, 247, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(79, 195, 247, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(79, 195, 247, 0);
    }
}

/* ===== HOW TO BUY SECTION STYLES ===== */
.how-it-works-section {
    padding: 6rem 2rem;
    background: radial-gradient(ellipse at center, #0f1729 0%, #0a0e1a 100%);
    position: relative;
    overflow: hidden;
}

.how-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.glow-effect {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background-color: rgba(79, 195, 247, 0.3);
    top: -10%;
    right: -10%;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background-color: rgba(212, 175, 55, 0.3);
    bottom: -5%;
    left: -5%;
}

.steps-container {
    margin: 5rem 0;
    position: relative;
}

.step-card {
    display: flex;
    position: relative;
    margin-bottom: 2rem;
}

.step-connector {
    width: 4rem;
    position: relative;
    display: flex;
    justify-content: center;
}

.connector-line {
    position: absolute;
    top: 3rem;
    width: 2px;
    height: calc(100% + 2rem);
    background: linear-gradient(to bottom, rgba(79, 195, 247, 0.6), rgba(212, 175, 55, 0.6));
    box-shadow: 0 0 10px rgba(79, 195, 247, 0.3);
}

.step-content {
    display: flex;
    flex: 1;
    gap: 1.5rem;
    background: rgba(15, 23, 41, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    transition: transform var(--animation-speed-normal) ease-out, 
                border-color var(--animation-speed-normal) ease-out,
                box-shadow var(--animation-speed-normal) ease-out;
    backdrop-filter: blur(10px);
}

.step-card:hover .step-content {
    transform: translateX(5px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.step-icon-wrapper {
    position: relative;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.step-icon svg {
    width: 28px;
    height: 28px;
    color: var(--space-black);
}

.step-number {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 26px;
    height: 26px;
    background-color: var(--space-black);
    border: 2px solid var(--cosmic-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--cosmic-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.step-info {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--cosmic-gold);
}

.step-description {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.05rem;
}

.cta-container {
    text-align: center;
    margin-top: 4rem;
}

.cta-text {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Contract Address Section */
.contract-section {
    background: rgba(15, 23, 41, 0.6);
    border: 1px solid rgba(255, 215, 94, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contract-title {
    font-size: 1.3rem;
    color: var(--cosmic-gold);
    margin-bottom: 1rem;
    font-family: "Exo 2", sans-serif;
    font-weight: 600;
}

.contract-address-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(10, 14, 26, 0.8);
    border: 1px solid rgba(255, 215, 94, 0.2);
    border-radius: var(--border-radius-md);
    padding: 0.75rem;
    margin-bottom: 1.5rem;
}

.contract-address {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--text-light);
    background: transparent;
    border: none;
    outline: none;
    word-break: break-all;
    line-height: 1.4;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-gold);
    color: var(--space-black);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 94, 0.4);
}

.copy-btn:active {
    transform: translateY(0);
}

.copy-btn.copied {
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
    color: white;
}

.platform-links {
    margin-top: 1rem;
}

.platform-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.platform-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.platform-btn {
    background: transparent;
    color: var(--comet-blue);
    border: 2px solid var(--comet-blue);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.platform-btn:hover {
    background: rgba(79, 195, 247, 0.1);
    color: var(--comet-blue);
    border-color: var(--comet-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 195, 247, 0.3);
}

.cta-button {
    padding: 0.85rem 2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* ===== FOOTER SECTION STYLES ===== */
.footer {
    background: radial-gradient(ellipse at bottom, #0f1729 0%, #0a0e1a 100%);
    border-top: 1px solid rgba(255, 215, 94, 0.1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 94, 0.5) 50%, 
        transparent 100%);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem 1.5rem;
}

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 215, 94, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-family: "Audiowide", sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo .logo-image {
    width: 45px;
    height: 45px;
}

.footer-tagline {
    color: var(--text-muted);
    font-family: "Exo 2", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 400px;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 94, 0.1);
    border: 1px solid rgba(255, 215, 94, 0.2);
    border-radius: 50%;
    color: var(--cosmic-gold);
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(255, 215, 94, 0.2);
    border-color: var(--cosmic-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 215, 94, 0.3);
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-family: "Exo 2", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cosmic-gold);
    margin-bottom: 0.5rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-family: "Exo 2", sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--cosmic-gold);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--cosmic-gold);
    padding-left: 15px;
}

.footer-link:hover::before {
    width: 10px;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--text-muted);
    font-family: "Exo 2", sans-serif;
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal-link {
    color: var(--text-muted);
    text-decoration: none;
    font-family: "Exo 2", sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--cosmic-gold);
}

.footer-separator {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ===== RESPONSIVE STYLES FOR PART 2 ===== */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 3rem;
    }

    .about-description {
        font-size: 1.15rem;
        margin-bottom: 2.5rem;
    }

    .stats-container {
        max-width: 600px;
        margin: 0 auto;
    }

    .about-graphic {
        height: 280px;
    }

    .tokenomics-content {
        flex-direction: column;
    }

    .roadmap-timeline .timeline-track {
        left: 30px;
    }

    .roadmap-item {
        justify-content: flex-start !important;
        margin-left: 60px;
    }

    .roadmap-marker {
        left: 30px;
    }

    .marker-line {
        width: 30px;
    }

    .roadmap-item:nth-child(odd) .marker-line,
    .roadmap-item:nth-child(even) .marker-line {
        left: 24px;
        transform: translateY(-50%);
    }

    .roadmap-content {
        width: calc(100% - 60px);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .about-description {
        font-size: 1.1rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .stat-value {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .about-visual {
        flex: 100%;
        width: 100%;
    }

    .planet-system {
        width: 240px;
        height: 240px;
    }

    .planet-core {
        width: 80px;
        height: 80px;
    }

    .pie-chart {
        width: 250px;
        height: 250px;
    }

    .chart-center {
        width: 120px;
        height: 120px;
    }

    .chart-center .logo-text {
        font-size: 1.2rem;
    }

    .chart-center .logo-highlight {
        font-size: 1rem;
    }

    .tokenomics-breakdown {
        padding: 20px;
    }

    .roadmap-section {
        padding: 80px 0;
    }

    .roadmap-content {
        padding: 20px;
    }

    .roadmap-title {
        font-size: 1.2rem;
    }

    .milestone-item {
        font-size: 0.95rem;
    }

    .how-it-works-section {
        padding: 5rem 2rem;
    }

    .step-content {
        padding: 1.25rem;
    }

    .step-title {
        font-size: 1.35rem;
    }

    .step-description {
        font-size: 1rem;
    }

    .cta-text {
        font-size: 1.2rem;
    }

    /* Contract section responsive */
    .contract-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .contract-title {
        font-size: 1.2rem;
    }

    .contract-address-container {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .contract-address {
        text-align: center;
        font-size: 0.8rem;
    }

    .copy-btn {
        align-self: center;
        width: auto;
    }

    .platform-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .platform-btn {
        width: 100%;
        text-align: center;
    }

    .footer-container {
        padding: 2.5rem 2rem 1.5rem;
    }

    .footer-logo {
        font-size: 1.6rem;
    }

    .footer-tagline {
        font-size: 0.95rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 3.5rem 1rem;
    }

    .about-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .planet-system {
        width: 200px;
        height: 200px;
    }

    .planet-core {
        width: 70px;
        height: 70px;
    }

    .ring-1 {
        width: 130px;
        height: 130px;
    }

    .ring-2 {
        width: 170px;
        height: 170px;
    }

    .about-graphic {
        height: 220px;
    }

    .how-it-works-section {
        padding: 4rem 1.5rem;
    }

    .step-content {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }

    .step-icon {
        width: 56px;
        height: 56px;
    }

    .step-icon svg {
        width: 24px;
        height: 24px;
    }

    .step-connector {
        display: none;
    }

    .step-number {
        left: auto;
        right: -8px;
    }

    .step-title {
        font-size: 1.3rem;
    }

    .cta-container {
        margin-top: 3rem;
    }

    .cta-text {
        font-size: 1.15rem;
    }

    .footer-container {
        padding: 2rem 1.5rem 1.5rem;
    }

    .footer-logo {
        font-size: 1.4rem;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-socials {
        flex-wrap: wrap;
    }

    .footer-links {
        display: flex;
        max-width: 100%;
        gap: 6rem;
    }

    .footer-column:last-child {
        grid-column: 1;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }

    .footer-legal-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 380px) {
    .how-it-works-section {
        padding: 3.5rem 1rem;
    }

    .step-content {
        padding: 0.85rem;
    }

    .step-icon {
        width: 48px;
        height: 48px;
    }

    .step-icon svg {
        width: 20px;
        height: 20px;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .cta-text {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
    }

    .feature-card {
        padding: 1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .footer-container {
        padding: 1.5rem 0.75rem 1.25rem;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }

    .footer-social-link {
        width: 36px;
        height: 36px;
    }

    .footer-social-link svg {
        width: 18px;
        height: 18px;
    }

    .footer-title {
        font-size: 0.95rem;
    }

    .footer-link {
        font-size: 0.85rem;
    }
}

/* ===== ANIMATION FOR CHART ELEMENTS ===== */
@media (prefers-reduced-motion: no-preference) {
    .pie-chart {
        animation: chartPulse 3s infinite alternate;
    }
    
    @keyframes chartPulse {
        0% {
            box-shadow: 0 0 30px rgba(79, 195, 247, 0.2);
        }
        100% {
            box-shadow: 0 0 50px rgba(79, 195, 247, 0.4);
        }
    }
    
    .distribution-progress {
        animation: growIn 1.5s ease-out forwards;
    }
    
    @keyframes growIn {
        from {
            width: 0;
        }
        to {
            width: var(--percentage);
        }
    }
}

.dex-logo {
    object-fit: cover;
    border-radius: 50%;
}