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

:root {
    --deep-space: #0A1A3F;
    --cosmic-navy: #1E3A8A;
    --star-gold: #FBBF24;
    --silver-glow: #E5E7EB;
    --pulse-blue: #3B82F6;
    --nebula-purple: #7C3AED;
    --dark-hole: #030712;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background: var(--dark-hole);
    color: var(--silver-glow);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #0A1A3F 0%, #050F2E 40%, #030712 100%);
    z-index: -3;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, #fff, transparent),
        radial-gradient(1px 1px at 40px 70px, #FBBF24, transparent),
        radial-gradient(1px 1px at 50px 160px, #fff, transparent),
        radial-gradient(2px 2px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, #E5E7EB, transparent),
        radial-gradient(1px 1px at 160px 120px, #3B82F6, transparent),
        radial-gradient(2px 2px at 200px 50px, #fff, transparent),
        radial-gradient(1px 1px at 250px 90px, #FBBF24, transparent),
        radial-gradient(1px 1px at 300px 150px, #fff, transparent),
        radial-gradient(2px 2px at 350px 30px, #E5E7EB, transparent),
        radial-gradient(1px 1px at 380px 110px, #fff, transparent),
        radial-gradient(1px 1px at 420px 170px, #3B82F6, transparent),
        radial-gradient(1px 1px at 480px 60px, #fff, transparent),
        radial-gradient(2px 2px at 520px 200px, #FBBF24, transparent),
        radial-gradient(1px 1px at 580px 100px, #fff, transparent),
        radial-gradient(1px 1px at 620px 40px, #E5E7EB, transparent),
        radial-gradient(2px 2px at 680px 180px, #fff, transparent),
        radial-gradient(1px 1px at 720px 80px, #3B82F6, transparent),
        radial-gradient(1px 1px at 780px 140px, #FBBF24, transparent),
        radial-gradient(2px 2px at 850px 50px, #fff, transparent);
    background-size: 900px 250px;
    background-repeat: repeat;
    animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.stars-layer2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: 
        radial-gradient(1px 1px at 100px 200px, #fff, transparent),
        radial-gradient(1px 1px at 300px 400px, #7C3AED, transparent),
        radial-gradient(2px 2px at 600px 100px, #fff, transparent),
        radial-gradient(1px 1px at 900px 500px, #FBBF24, transparent),
        radial-gradient(1px 1px at 150px 600px, #fff, transparent),
        radial-gradient(2px 2px at 450px 350px, #3B82F6, transparent),
        radial-gradient(1px 1px at 750px 700px, #fff, transparent),
        radial-gradient(1px 1px at 1050px 250px, #E5E7EB, transparent);
    background-size: 1200px 800px;
    background-repeat: repeat;
    animation: twinkle 6s ease-in-out infinite alternate-reverse;
    opacity: 0.7;
}

.meteor {
    position: fixed;
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
    z-index: -1;
    opacity: 0;
    animation: meteor-fall linear infinite;
}

.meteor::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 20px #FBBF24, 0 0 40px #3B82F6;
}

.meteor1 {
    left: 10%;
    animation-duration: 3s;
    animation-delay: 0s;
    transform: rotate(35deg);
}

.meteor2 {
    left: 30%;
    animation-duration: 4s;
    animation-delay: 1.5s;
    transform: rotate(35deg);
}

.meteor3 {
    left: 60%;
    animation-duration: 3.5s;
    animation-delay: 0.8s;
    transform: rotate(35deg);
}

.meteor4 {
    left: 85%;
    animation-duration: 4.5s;
    animation-delay: 2.2s;
    transform: rotate(35deg);
}

@keyframes meteor-fall {
    0% {
        top: -100px;
        opacity: 1;
    }
    100% {
        top: 100vh;
        opacity: 0;
    }
}

.nebula {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
    opacity: 0.15;
    animation: nebula-rotate 60s linear infinite;
}

.nebula1 {
    top: -200px;
    right: -150px;
    background: radial-gradient(circle, #7C3AED 0%, #3B82F6 30%, transparent 70%);
}

.nebula2 {
    bottom: -200px;
    left: -150px;
    background: radial-gradient(circle, #1E3A8A 0%, #FBBF24 30%, transparent 70%);
    animation-delay: -30s;
}

@keyframes nebula-rotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.particle {
    position: fixed;
    width: 3px;
    height: 3px;
    background: #FBBF24;
    border-radius: 50%;
    z-index: -1;
    box-shadow: 0 0 8px #FBBF24;
    animation: float-up linear infinite;
    opacity: 0;
}

@keyframes float-up {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

.pulse-wave {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

.pulse-wave::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-expand 8s ease-out infinite;
}

.pulse-wave::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-expand 8s ease-out infinite;
    animation-delay: -4s;
}

@keyframes pulse-expand {
    0% {
        width: 100px;
        height: 100px;
        opacity: 1;
    }
    100% {
        width: 2000px;
        height: 2000px;
        opacity: 0;
    }
}

.black-hole {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, #000 0%, #030712 20%, transparent 50%);
    z-index: -3;
    opacity: 0.8;
}

.constellation {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    opacity: 0.4;
}

.constellation svg {
    width: 100%;
    height: 100%;
}

.constellation line {
    stroke: rgba(59, 130, 246, 0.3);
    stroke-width: 1;
    animation: constellation-glow 4s ease-in-out infinite alternate;
}

@keyframes constellation-glow {
    0% { stroke-opacity: 0.1; }
    100% { stroke-opacity: 0.5; }
}

header {
    position: relative;
    z-index: 100;
    padding: 20px 0;
    background: rgba(10, 26, 63, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.logo-91 {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-91 .orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-top-color: var(--star-gold);
    border-right-color: var(--pulse-blue);
    border-radius: 50%;
    animation: orbit-spin 4s linear infinite;
}

.logo-91 .orbit::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--star-gold);
    border-radius: 50%;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px var(--star-gold);
}

.logo-91 .orbit2 {
    position: absolute;
    width: 85%;
    height: 85%;
    border: 1px solid transparent;
    border-bottom-color: var(--pulse-blue);
    border-left-color: rgba(251, 191, 36, 0.5);
    border-radius: 50%;
    animation: orbit-spin 3s linear infinite reverse;
}

.logo-91 .orbit2::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--pulse-blue);
    border-radius: 50%;
    bottom: -4px;
    right: 20%;
    box-shadow: 0 0 12px var(--pulse-blue);
}

.logo-text {
    font-size: 38px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--star-gold) 0%, var(--pulse-blue) 50%, var(--star-gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(251, 191, 36, 0.5);
    animation: logo-shine 3s linear infinite;
    letter-spacing: 2px;
}

@keyframes orbit-spin {
    100% { transform: rotate(360deg); }
}

@keyframes logo-shine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--silver-glow);
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    display: block;
    padding: 10px 20px;
    color: var(--silver-glow);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--star-gold), var(--pulse-blue));
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--star-gold);
    background: rgba(59, 130, 246, 0.1);
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 60%;
}

main {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 200px);
}

.hero {
    padding: 100px 40px 80px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--silver-glow) 0%, var(--star-gold) 50%, var(--pulse-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 60px rgba(59, 130, 246, 0.3);
    letter-spacing: 4px;
    animation: title-glow 3s ease-in-out infinite alternate;
}

@keyframes title-glow {
    0% { filter: brightness(1) drop-shadow(0 0 20px rgba(251, 191, 36, 0.3)); }
    100% { filter: brightness(1.2) drop-shadow(0 0 40px rgba(59, 130, 246, 0.5)); }
}

.hero-subtitle {
    font-size: 24px;
    color: var(--silver-glow);
    margin-bottom: 40px;
    letter-spacing: 2px;
    opacity: 0.9;
}

.hero-highlight {
    display: inline-flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(30, 58, 138, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(59, 130, 246, 0.3);
    border-color: var(--star-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.2);
}

.highlight-icon {
    font-size: 24px;
}

.highlight-text {
    font-size: 16px;
    color: var(--silver-glow);
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--star-gold) 0%, var(--pulse-blue) 100%);
    color: var(--dark-hole);
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.3);
}

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 60px rgba(251, 191, 36, 0.5);
}

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

.btn-secondary {
    background: transparent;
    color: var(--silver-glow);
    border: 2px solid var(--pulse-blue);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2), inset 0 0 20px rgba(59, 130, 246, 0.1);
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--star-gold);
    color: var(--star-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
}

.section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--star-gold) 0%, var(--silver-glow) 50%, var(--pulse-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.section-title p {
    font-size: 18px;
    color: var(--silver-glow);
    opacity: 0.7;
    letter-spacing: 1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4) 0%, rgba(10, 26, 63, 0.6) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--pulse-blue), transparent 30%);
    animation: border-glow 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover::before {
    opacity: 0.3;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--star-gold);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3), 0 0 40px rgba(251, 191, 36, 0.1);
}

.feature-card-content {
    position: relative;
    z-index: 1;
}

@keyframes border-glow {
    100% { transform: rotate(360deg); }
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 24px;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.5));
    animation: icon-float 3s ease-in-out infinite;
}

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

.feature-card h3 {
    font-size: 24px;
    color: var(--star-gold);
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.feature-card p {
    font-size: 15px;
    color: var(--silver-glow);
    line-height: 1.8;
    opacity: 0.85;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(10, 26, 63, 0.5) 100%);
    border-radius: 24px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--star-gold) 0%, var(--pulse-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    display: block;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
}

.stat-label {
    font-size: 16px;
    color: var(--silver-glow);
    letter-spacing: 2px;
    opacity: 0.8;
}

.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.movie-card {
    background: linear-gradient(180deg, rgba(30, 58, 138, 0.4) 0%, rgba(10, 26, 63, 0.8) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.movie-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--star-gold);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
}

.movie-poster {
    width: 100%;
    height: 360px;
    background: linear-gradient(135deg, var(--cosmic-navy) 0%, var(--deep-space) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.movie-poster::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 60% 70%, rgba(251,191,36,0.6), transparent),
        radial-gradient(1.5px 1.5px at 80% 20%, rgba(59,130,246,0.8), transparent);
    background-size: 100% 100%;
}

.movie-emoji {
    font-size: 100px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 30px rgba(251, 191, 36, 0.4));
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.movie-card:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--star-gold), var(--pulse-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.5);
    animation: play-pulse 1.5s ease-in-out infinite;
}

.play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 16px 0 16px 28px;
    border-color: transparent transparent transparent var(--dark-hole);
    margin-left: 6px;
}

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

.movie-info {
    padding: 20px;
}

.movie-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--silver-glow);
    margin-bottom: 8px;
}

.movie-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--silver-glow);
    opacity: 0.7;
}

.movie-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 20px;
    font-size: 12px;
    color: var(--pulse-blue);
}

.quality-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--star-gold), var(--pulse-blue));
    color: var(--dark-hole);
    font-size: 12px;
    font-weight: 800;
    border-radius: 6px;
    letter-spacing: 1px;
    z-index: 2;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 28px;
    background: rgba(30, 58, 138, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--silver-glow);
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, var(--star-gold), var(--pulse-blue));
    color: var(--dark-hole);
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.3);
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--star-gold), var(--pulse-blue), var(--star-gold));
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
    padding-right: calc(50% + 40px);
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
    padding-left: calc(50% + 40px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--star-gold);
    box-shadow: 0 0 20px var(--star-gold), 0 0 40px rgba(251, 191, 36, 0.3);
    z-index: 2;
}

.timeline-card {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4) 0%, rgba(10, 26, 63, 0.6) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 100%;
}

.timeline-card:hover {
    border-color: var(--star-gold);
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.2);
}

.timeline-year {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--star-gold), var(--pulse-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.timeline-card h4 {
    font-size: 20px;
    color: var(--silver-glow);
    margin-bottom: 10px;
}

.timeline-card p {
    color: var(--silver-glow);
    opacity: 0.8;
    line-height: 1.7;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.news-card {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4) 0%, rgba(10, 26, 63, 0.6) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: var(--star-gold);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
}

.news-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--cosmic-navy), var(--deep-space));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-emoji {
    font-size: 80px;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.4));
}

.news-content {
    padding: 24px;
}

.news-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--pulse-blue);
    margin-bottom: 12px;
    padding: 4px 12px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 20px;
}

.news-card h3 {
    font-size: 20px;
    color: var(--silver-glow);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card p {
    font-size: 14px;
    color: var(--silver-glow);
    opacity: 0.75;
    line-height: 1.7;
    margin-bottom: 16px;
}

.news-more {
    color: var(--star-gold);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.news-more:hover {
    gap: 12px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info,
.contact-form {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4) 0%, rgba(10, 26, 63, 0.6) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.15);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 16px;
    color: var(--star-gold);
    margin-bottom: 6px;
}

.contact-text p {
    font-size: 15px;
    color: var(--silver-glow);
    opacity: 0.9;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--silver-glow);
    font-weight: 600;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(10, 26, 63, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 10px;
    color: var(--silver-glow);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--star-gold);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.15);
    background: rgba(10, 26, 63, 0.8);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

footer {
    position: relative;
    z-index: 1;
    padding: 60px 40px 30px;
    background: rgba(3, 7, 18, 0.8);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(20px);
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--star-gold) 0%, var(--pulse-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.footer-brand p {
    color: var(--silver-glow);
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(30, 58, 138, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--star-gold), var(--pulse-blue));
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.footer-col h4 {
    font-size: 18px;
    color: var(--star-gold);
    margin-bottom: 20px;
    font-weight: 700;
}

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

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--silver-glow);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--pulse-blue);
    padding-left: 6px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(59, 130, 246, 0.15);
    text-align: center;
    color: var(--silver-glow);
    opacity: 0.6;
    font-size: 13px;
    letter-spacing: 1px;
}

.page-banner {
    padding: 100px 40px 80px;
    text-align: center;
    position: relative;
}

.page-banner h1 {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--star-gold) 0%, var(--silver-glow) 50%, var(--pulse-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
}

.page-banner p {
    font-size: 20px;
    color: var(--silver-glow);
    opacity: 0.8;
    letter-spacing: 2px;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(30, 58, 138, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 30px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--silver-glow);
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--pulse-blue);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--star-gold);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 32px;
    color: var(--star-gold);
    margin-bottom: 20px;
    font-weight: 800;
}

.about-text p {
    color: var(--silver-glow);
    line-height: 2;
    margin-bottom: 16px;
    opacity: 0.85;
}

.about-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-ring {
    position: absolute;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: ring-rotate 20s linear infinite;
}

.circle-ring.r1 {
    width: 300px;
    height: 300px;
    border-style: dashed;
}

.circle-ring.r2 {
    width: 400px;
    height: 400px;
    animation-duration: 30s;
    animation-direction: reverse;
    border-color: rgba(251, 191, 36, 0.3);
}

.circle-ring.r3 {
    width: 500px;
    height: 500px;
    animation-duration: 40s;
    border-width: 1px;
}

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

.core-number {
    font-size: 180px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--star-gold) 0%, var(--pulse-blue) 50%, var(--nebula-purple) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 80px rgba(251, 191, 36, 0.3);
    animation: logo-shine 4s linear infinite, icon-float 4s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(30, 58, 138, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--star-gold);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.value-item h4 {
    font-size: 18px;
    color: var(--star-gold);
    margin-bottom: 8px;
}

.value-item p {
    font-size: 14px;
    color: var(--silver-glow);
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .contact-grid,
    .about-content {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }
    .timeline-dot {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
    .section-title h2 {
        font-size: 32px;
    }
    nav {
        flex-direction: column;
        gap: 20px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .page-banner h1 {
        font-size: 36px;
    }
    .hero {
        padding: 60px 20px 50px;
    }
    .section {
        padding: 50px 20px;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
}
