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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="0.5" fill="white"/><circle cx="30" cy="25" r="0.3" fill="white"/><circle cx="60" cy="15" r="0.4" fill="white"/><circle cx="80" cy="35" r="0.2" fill="white"/><circle cx="20" cy="50" r="0.6" fill="white"/><circle cx="70" cy="60" r="0.3" fill="white"/><circle cx="90" cy="80" r="0.4" fill="white"/><circle cx="40" cy="85" r="0.2" fill="white"/></svg>') repeat;
    background-size: 200px 200px;
    animation: move-stars 50s linear infinite;
    z-index: -3;
}

.twinkling {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="15" cy="20" r="0.3" fill="white" opacity="0.8"/><circle cx="45" cy="40" r="0.2" fill="white" opacity="0.6"/><circle cx="75" cy="30" r="0.4" fill="white" opacity="0.9"/><circle cx="25" cy="70" r="0.2" fill="white" opacity="0.7"/><circle cx="85" cy="65" r="0.3" fill="white" opacity="0.8"/></svg>') repeat;
    background-size: 300px 300px;
    animation: move-twinkling 100s linear infinite;
    z-index: -2;
}

.clouds {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: radial-gradient(ellipse at 20% 50%, rgba(120, 0, 255, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(255, 0, 150, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 40% 80%, rgba(0, 150, 255, 0.1) 0%, transparent 50%);
    animation: move-clouds 200s linear infinite;
    z-index: -1;
}

@keyframes move-stars {
    from { transform: translateY(0px); }
    to { transform: translateY(-2000px); }
}

@keyframes move-twinkling {
    from { transform: translateY(0px); }
    to { transform: translateY(-2000px); }
}

@keyframes move-clouds {
    from { transform: translateY(0px); }
    to { transform: translateY(-2000px); }
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

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

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

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

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}
.nav-toggle .bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    margin: 5px 0;
}

@media (max-width: 900px) {
    .nav-toggle {
        display: inline-block;
    }

    .nav-menu {
        position: absolute;
        top: 64px;
        right: 16px;
        left: 16px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 12px;
        padding: 1rem;
        gap: 1rem;
        display: none;
    }

    .nav-menu.open {
        display: flex;
    }
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 2rem 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease-in-out infinite;
    display: block;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.subtitle {
    display: block;
    font-size: 1.5rem;
    color: #cccccc;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #aaaaaa;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #ff0080, #8000ff);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 0, 128, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
}

.btn-secondary:hover {
    background: #00ffff;
    color: #0a0a0a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.planet {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #4a90e2, #2c5aa0, #1e3a5f);
    position: relative;
    animation: rotate 20s linear infinite;
    box-shadow: 
        0 0 50px rgba(74, 144, 226, 0.3),
        inset -20px -20px 50px rgba(0, 0, 0, 0.5);
}

.planet::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 15%;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1), transparent);
}

.rocket {
    position: absolute;
    font-size: 3rem;
    animation: rocket-orbit 15s linear infinite;
    transform-origin: 150px;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rocket-orbit {
    from { transform: rotate(0deg) translateX(200px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(200px) rotate(-360deg); }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* About Section */
.about {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(255, 0, 255, 0.05));
}

/* Matrix Section */
.matrix {
    background: linear-gradient(135deg, rgba(128, 0, 255, 0.1), rgba(0, 255, 128, 0.1));
    position: relative;
    overflow: hidden;
}

.matrix::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
    animation: pulse-matrix 4s ease-in-out infinite;
}

@keyframes pulse-matrix {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.matrix-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.matrix-info h3 {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.matrix-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.matrix-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.matrix-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.2);
}

.feature-icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
}

.feature-content h4 {
    color: #ff00ff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-content p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.matrix-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.matrix-brain {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2) 0%, rgba(128, 0, 255, 0.2) 50%, transparent 100%);
    position: relative;
    animation: brain-pulse 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.brain-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 255, 255, 0.5);
    border-radius: 50%;
    animation: wave-expand 2s linear infinite;
}

.brain-waves::before,
.brain-waves::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 50%;
    top: -10%;
    left: -10%;
    animation: wave-expand 2s linear infinite 0.5s;
}

.brain-waves::after {
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    animation-delay: 1s;
}

@keyframes wave-expand {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

.neural-network {
    position: absolute;
    width: 80%;
    height: 80%;
    background: 
        radial-gradient(2px 2px at 20% 30%, #00ffff, transparent),
        radial-gradient(2px 2px at 40% 70%, #ff00ff, transparent),
        radial-gradient(1px 1px at 90% 40%, #ffff00, transparent),
        radial-gradient(1px 1px at 60% 20%, #00ff00, transparent);
    animation: neural-activity 4s ease-in-out infinite;
}

@keyframes neural-activity {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.consciousness-flow {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: consciousness-rotate 8s linear infinite;
}

.consciousness-flow::before {
    content: '🧠';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    animation: consciousness-glow 2s ease-in-out infinite;
}

@keyframes consciousness-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes consciousness-glow {
    0%, 100% { text-shadow: 0 0 10px #00ffff; }
    50% { text-shadow: 0 0 20px #ff00ff, 0 0 30px #00ffff; }
}

.enlightenment-promise {
    margin-top: 4rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.enlightenment-promise h3 {
    font-size: 2.5rem;
    color: #ffff00;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
}

.enlightenment-promise p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #cccccc;
}

.civilization-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.goal-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 0, 0.6);
    box-shadow: 0 10px 20px rgba(255, 255, 0, 0.2);
}

.goal-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
}

.goal-item span:last-child {
    color: #ffff00;
    font-weight: 600;
}

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

/* Token Intro */
.token-intro {
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.07), rgba(255, 0, 128, 0.07));
}

.token-intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.token-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 1.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
}

.token-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 18px 36px rgba(0, 255, 255, 0.18);
}

.token-card h3 {
    color: #00ffff;
    margin-bottom: 0.5rem;
}

.token-cta {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Token Page */
.token-page {
    padding-top: 100px;
}

.token-hero {
    background: linear-gradient(135deg, rgba(0, 255, 200, 0.08), rgba(128, 0, 255, 0.08));
    padding: 120px 0 60px;
}

.token-subtitle {
    color: #cccccc;
    text-align: center;
    max-width: 800px;
    margin: 0.5rem auto 1.5rem;
}

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

.token-section {
    padding: 80px 0;
}

.token-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.dist-grid, .utility-grid, .vesting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.dist-item, .utility-item, .vesting-card, .disclaimer {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
}

.utility-item span {
    margin-right: 0.5rem;
}

.vesting-card h3 {
    color: #00ffff;
    margin-bottom: 0.5rem;
}

.disclaimer {
    color: #cccccc;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00ffff;
}

/* Program Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #00ffff, #ff00ff);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    margin-right: 3rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 3rem;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff0080, #8000ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-content h3 {
    color: #00ffff;
    margin-bottom: 0.5rem;
}

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

/* Requirements Section */
.requirements {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.05), rgba(128, 0, 255, 0.05));
}

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

.requirement-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 128, 0.3);
    box-shadow: 0 15px 30px rgba(255, 0, 128, 0.2);
}

.requirement-card h3 {
    color: #ff00ff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.requirement-card ul {
    list-style: none;
}

.requirement-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.requirement-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ffff;
    font-weight: bold;
}

/* Registration Section */
.registration {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
}

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

.form-info h3 {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
}

.benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    font-size: 1.5rem;
}

.registration-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #00ffff;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 0.5rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.terms-link {
    color: #ff00ff;
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 1.2rem;
    padding: 1.2rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    text-align: center;
}

.contact-item h3 {
    color: #00ffff;
    margin-bottom: 0.5rem;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff00ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #aaaaaa;
    font-size: 0.9rem;
}

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

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ffff;
}

/* Success Page Styles */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 2rem 50px;
    position: relative;
}

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

.success-animation {
    position: relative;
    margin-bottom: 3rem;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon {
    font-size: 6rem;
    animation: successBounce 2s ease-in-out infinite;
}

@keyframes successBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.success-rocket {
    position: absolute;
    font-size: 3rem;
    animation: rocketFly 4s ease-in-out infinite;
}

@keyframes rocketFly {
    0% { transform: translate(-100px, 50px) rotate(-45deg); }
    50% { transform: translate(100px, -50px) rotate(-45deg); }
    100% { transform: translate(-100px, 50px) rotate(-45deg); }
}

.success-stars {
    position: absolute;
    width: 100%;
    height: 100%;
}

.success-stars span {
    position: absolute;
    font-size: 2rem;
    animation: starTwinkle 3s ease-in-out infinite;
}

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

.success-stars span:nth-child(2) {
    top: 10%;
    right: 20%;
    animation-delay: 0.5s;
}

.success-stars span:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 1s;
}

.success-stars span:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.success-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

.success-message {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}

.success-message h2 {
    color: #00ffff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.success-message > p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 3rem;
}

.next-steps h3 {
    color: #ff00ff;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

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

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.2);
}

.step-number {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 40px;
}

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

.step-content p {
    color: #aaaaaa;
    font-size: 0.9rem;
    line-height: 1.4;
}

.application-id {
    background: rgba(255, 255, 0, 0.1);
    border: 1px solid rgba(255, 255, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.application-id h3 {
    color: #ffff00;
    margin-bottom: 1rem;
}

.application-id p {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.application-id strong {
    color: #ffffff;
}

.status-pending {
    color: #ffff00;
    background: rgba(255, 255, 0, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-size: 0.9rem;
}

.contact-info {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.contact-info h3 {
    color: #00ffff;
    margin-bottom: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 1rem 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        margin-top: 2rem;
    }
    
    .planet {
        width: 200px;
        height: 200px;
    }
    
    .matrix-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .matrix-features {
        grid-template-columns: 1fr;
    }
    
    .matrix-brain {
        width: 250px;
        height: 250px;
    }
    
    .matrix-info h3 {
        font-size: 1.5rem;
    }
    
    .enlightenment-promise h3 {
        font-size: 2rem;
    }
    
    .civilization-goals {
        grid-template-columns: 1fr;
    }
    
    .registration-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 70px;
    }
    
    .timeline-item .timeline-content {
        text-align: left !important;
        margin: 0 !important;
    }
    
    .timeline-icon {
        left: 30px;
        transform: none;
    }
    
    .contact-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}
