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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background: #070a1a;
    color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

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

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #070a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #f5b041, #ffaa33);
    border-radius: 10px;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid #f5b041;
    outline-offset: 3px;
    border-radius: 4px;
}

#stars-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

#shooting-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.6);
    animation: shoot linear infinite;
    opacity: 0;
}

@keyframes shoot {
    0% {
        transform: translate(0, 0) rotate(-45deg);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translate(-400px, 400px) rotate(-45deg);
        opacity: 0;
    }
}

.particle {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
    animation: floatParticle 15s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translate(50px, -50px) scale(0.5);
        opacity: 0.1;
    }
}

.main-overlay {
    position: relative;
    z-index: 1;
    background: rgba(7, 10, 26, 0.82);
    backdrop-filter: blur(3px);
    min-height: 100vh;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: rgba(7, 10, 26, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.12);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: 0.3s;
}

.navbar.scrolled {
    background: rgba(7, 10, 26, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: default;
    position: relative;
}

.logo .icon-wrapper {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo .icon-wrapper .orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(245, 176, 65, 0.2);
    animation: orbitSpin 6s linear infinite;
}

.logo .icon-wrapper .orbit-ring:nth-child(1) {
    width: 100%;
    height: 100%;
    animation-duration: 6s;
}

.logo .icon-wrapper .orbit-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    animation-duration: 4s;
    animation-direction: reverse;
    border-color: rgba(79, 195, 247, 0.15);
}

.logo .icon-wrapper .orbit-ring:nth-child(3) {
    width: 40%;
    height: 40%;
    animation-duration: 3s;
    border-color: rgba(245, 176, 65, 0.1);
}

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

.logo .icon-wrapper .core-spaceship {
    font-size: 1.6rem;
    position: relative;
    z-index: 2;
    line-height: 1;
    animation: spaceshipFloat 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 10px rgba(245, 176, 65, 0.5));
}

@keyframes spaceshipFloat {
    0% {
        transform: translateY(0) rotate(-5deg);
        filter: drop-shadow(0 0 8px rgba(245, 176, 65, 0.3));
    }
    100% {
        transform: translateY(-4px) rotate(5deg);
        filter: drop-shadow(0 0 20px rgba(245, 176, 65, 0.7));
    }
}

.logo .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo .brand-text .fbas {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 4px;
    background: linear-gradient(135deg, #f5b041, #ffaa33, #f5b041);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite alternate;
    position: relative;
    display: inline-block;
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.logo .brand-text .fbas::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #f5b041, #4fc3f7, #f5b041);
    background-size: 200% 200%;
    animation: shimmerLine 3s ease-in-out infinite alternate;
    border-radius: 2px;
    -webkit-text-fill-color: initial;
}

@keyframes shimmerLine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.logo .brand-text .sub {
    font-size: 0.7rem;
    font-weight: 400;
    color: #4fc3f7;
    letter-spacing: 4px;
    opacity: 0.8;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo .brand-text .sub .dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #f5b041;
    border-radius: 50%;
    animation: blinkDot 1.4s infinite;
}

@keyframes blinkDot {
    0%,
    100% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
    }
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 8px;
    transition: 0.3s;
}

.hamburger:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: #f5b041;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #f5b041;
    border-radius: 4px;
    transition: 0.4s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #ffaa33;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: #ffaa33;
}

.nav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(7, 10, 26, 0.97);
    backdrop-filter: blur(24px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.nav-overlay nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.nav-overlay a {
    font-size: 1.8rem;
    font-weight: 500;
    color: #e8eaed;
    transition: 0.3s;
    padding: 6px 16px;
    border-bottom: 2px solid transparent;
    position: relative;
}

.nav-overlay a::before {
    content: '';
    position: absolute;
    right: -30px;
    opacity: 0;
    transition: 0.3s;
    color: #f5b041;
}

.nav-overlay a:hover::before {
    opacity: 1;
    right: -20px;
}

.nav-overlay a:hover {
    color: #f5b041;
    border-bottom-color: #f5b041;
    transform: translateY(-4px) scale(1.05);
}

.nav-overlay .close-btn {
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 2.4rem;
    cursor: pointer;
    color: #f5b041;
    background: none;
    border: none;
    transition: 0.3s;
}

.nav-overlay .close-btn:hover {
    transform: rotate(90deg) scale(1.2);
}

.hero {
    padding: 30px 16px 60px;
    text-align: center;
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(245, 176, 65, 0.08) 0%, transparent 60%);
    animation: heroGlow 8s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes heroGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(5%, 5%) scale(1.1);
    }
}

.special-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f5b041, #e67e22);
    color: #070a1a;
    font-weight: 900;
    font-size: 1rem;
    padding: 10px 28px;
    border-radius: 60px;
    margin-bottom: 24px;
    box-shadow: 0 0 40px rgba(245, 176, 65, 0.3);
    letter-spacing: 1px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    animation: badgePulse 2s ease-in-out infinite alternate;
}

.special-badge::after {
    content: '⭐';
    margin-right: 8px;
}

.special-badge::before {
    content: '⭐';
    margin-left: 8px;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(245, 176, 65, 0.2);
    }
    100% {
        transform: scale(1.04);
        box-shadow: 0 0 60px rgba(245, 176, 65, 0.5);
    }
}

.first-time-section {
    margin-bottom: 20px;
    position: relative;
    width: 100%;
    max-width: 600px;
}

.first-time-section .ft-container {
    position: relative;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(245, 176, 65, 0.1);
    box-shadow: 0 0 60px rgba(245, 176, 65, 0.03);
    transition: 0.4s;
    overflow: hidden;
}

.first-time-section .ft-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(245, 176, 65, 0.03), transparent 60%);
    animation: ftGlow 6s ease-in-out infinite alternate;
}

@keyframes ftGlow {
    0% {
        transform: scale(0.9);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.first-time-section .ft-container:hover {
    border-color: rgba(245, 176, 65, 0.3);
    box-shadow: 0 0 80px rgba(245, 176, 65, 0.08);
    transform: scale(1.01);
}

.first-time-section .ft-main {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 6px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 20px;
}

.first-time-section .ft-main .word {
    display: inline-block;
    background: linear-gradient(135deg, #f5b041, #ffaa33, #f5b041, #4fc3f7);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 4s ease-in-out infinite alternate;
    position: relative;
}

.first-time-section .ft-main .word::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #f5b041, #4fc3f7);
    border-radius: 2px;
    opacity: 0.3;
    animation: wordLine 3s ease-in-out infinite alternate;
}

@keyframes wordLine {
    0% {
        width: 0;
        left: 0;
    }
    50% {
        width: 100%;
        left: 0;
    }
    100% {
        width: 0;
        left: 100%;
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.first-time-section .ft-main .country-word {
    background: linear-gradient(135deg, #f5b041, #4fc3f7, #f5b041);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 4s ease-in-out infinite alternate;
}

.first-time-section .ft-sub {
    font-size: 0.8rem;
    color: #b0c4d0;
    letter-spacing: 8px;
    margin-top: 6px;
    position: relative;
    z-index: 2;
    opacity: 0.7;
}

.first-time-section .ft-sub span {
    color: #4fc3f7;
    opacity: 1;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f5b041, #ffaa33, #f5b041, #4fc3f7);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 4s ease-in-out infinite alternate;
    margin-bottom: 10px;
    line-height: 1.3;
}

.hero .subtitle {
    font-size: 1rem;
    color: #e8eaed;
    max-width: 600px;
    margin-bottom: 14px;
    font-weight: 300;
    min-height: 3rem;
}

.hero .cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #f5b041, #e67e22);
    color: #070a1a;
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 60px;
    box-shadow: 0 0 30px rgba(245, 176, 65, 0.4);
    transition: 0.4s;
    margin-bottom: 24px;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.hero .cta-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: 0.6s;
    transform: scale(0.5);
}

.hero .cta-btn:hover::after {
    opacity: 1;
    transform: scale(1);
}

.hero .cta-btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 0 50px rgba(245, 176, 65, 0.7);
}

.release-announce {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 16px;
    padding: 12px 18px;
    margin-bottom: 24px;
    display: inline-block;
    color: #4fc3f7;
    font-weight: 500;
    font-size: 0.85rem;
    box-shadow: 0 0 30px rgba(79, 195, 247, 0.05);
    width: 100%;
    max-width: 400px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.release-announce::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(79, 195, 247, 0.03), transparent);
    animation: announceShine 4s linear infinite;
}

@keyframes announceShine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.release-announce:hover {
    border-color: #f5b041;
    box-shadow: 0 0 40px rgba(245, 176, 65, 0.1);
    transform: scale(1.02);
}

.release-announce strong {
    color: #fff;
    font-weight: 700;
}

.release-announce .gold {
    color: #f5b041;
}

.timer-wrapper {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: 24px;
    padding: 16px 12px;
    display: inline-block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 460px;
    transition: 0.3s;
}

.timer-wrapper:hover {
    border-color: rgba(245, 176, 65, 0.3);
    box-shadow: 0 20px 80px rgba(245, 176, 65, 0.1);
}

.timer-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(245, 176, 65, 0.05), transparent, rgba(79, 195, 247, 0.05), transparent);
    animation: rotateBorder 8s linear infinite;
}

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

.timer {
    display: flex;
    gap: 6px;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4fc3f7;
    direction: ltr;
    position: relative;
    z-index: 2;
}

.timer .time-box {
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 8px;
    border-radius: 12px;
    min-width: 52px;
    text-align: center;
    border: 1px solid rgba(79, 195, 247, 0.08);
    box-shadow: inset 0 0 20px rgba(79, 195, 247, 0.02);
    transition: 0.2s;
    position: relative;
}

.timer .time-box:hover {
    border-color: rgba(245, 176, 65, 0.2);
    transform: translateY(-2px);
}

.timer .time-box .label {
    display: block;
    font-size: 0.6rem;
    font-weight: 400;
    color: #b0c4d0;
    letter-spacing: 1px;
    margin-top: 1px;
}

.timer .time-box .num {
    display: block;
    font-size: inherit;
    font-weight: 700;
    transition: 0.15s;
    line-height: 1.4;
}

.timer .time-box.flash .num {
    animation: numberFlash 0.3s ease;
}

@keyframes numberFlash {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.25);
        color: #f5b041;
        text-shadow: 0 0 20px rgba(245, 176, 65, 0.5);
    }
    100% {
        transform: scale(1);
    }
}

.timer .separator {
    color: #f5b041;
    font-size: 1.8rem;
    align-self: center;
    font-weight: 300;
    animation: separatorBlink 1s infinite;
}

@keyframes separatorBlink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
}

.timer-label {
    margin-top: 8px;
    font-size: 0.7rem;
    color: #b0c4d0;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.timer-status {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #4fc3f7;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

.timer-status.ended {
    color: #f5b041;
    border: 1px solid #f5b041;
}

.section {
    padding: 60px 0;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5b041;
    text-align: center;
    margin-bottom: 36px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f5b041, #4fc3f7);
    margin: 10px auto 0;
    border-radius: 4px;
    animation: titleLine 2s ease-in-out infinite alternate;
}

@keyframes titleLine {
    0% {
        width: 60px;
        opacity: 0.6;
    }
    100% {
        width: 100px;
        opacity: 1;
    }
}

.section-title span {
    color: #4fc3f7;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px 16px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 176, 65, 0.03), transparent 70%);
    opacity: 0;
    transition: 0.6s;
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(245, 176, 65, 0.2);
    box-shadow: 0 12px 40px rgba(245, 176, 65, 0.05);
}

.glass-card .icon-box {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: rgba(245, 176, 65, 0.08);
    border: 1px solid rgba(245, 176, 65, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #f5b041;
    transition: 0.3s;
}

.glass-card:hover .icon-box {
    background: rgba(245, 176, 65, 0.15);
    transform: scale(1.05) rotate(10deg);
}

.glass-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
}

.glass-card p {
    color: #e8eaed;
    font-size: 0.9rem;
    line-height: 1.7;
}

.sponsors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px 24px;
    padding: 10px 0;
}

.sponsor-item {
    text-align: center;
    transition: 0.3s;
    position: relative;
}

.sponsor-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #f5b041;
    transition: 0.3s;
    transform: translateX(-50%);
}

.sponsor-item:hover::after {
    width: 80%;
}

.sponsor-item:hover {
    transform: scale(1.05) translateY(-4px);
}

.sponsor-item .name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    padding: 8px 18px;
    border-radius: 40px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    white-space: nowrap;
}

.sponsor-item .sub {
    font-size: 0.65rem;
    color: #4fc3f7;
    margin-top: 4px;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 700px;
    margin: 0 auto;
}

.feature-item {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: 0.3s;
    cursor: default;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(245, 176, 65, 0.15);
    transform: translateX(6px) scale(1.01);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.feature-item .num {
    font-size: 1.6rem;
    font-weight: 900;
    color: #f5b041;
    opacity: 0.4;
    min-width: 36px;
    text-align: center;
}

.feature-item .content h4 {
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
}

.feature-item .content p {
    font-size: 0.8rem;
    color: #b0c4d0;
    margin-top: 2px;
}

.resources-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.resource-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.resource-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 176, 65, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.resource-card .icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
    display: block;
}

.resource-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
}

.resource-card p {
    color: #e8eaed;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.resource-card .btn-link {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(245, 176, 65, 0.08);
    color: #f5b041;
}

.resource-card .btn-link:hover {
    background: #f5b041;
    color: #070a1a;
    box-shadow: 0 0 30px rgba(245, 176, 65, 0.3);
    transform: scale(1.05);
}

.cta-section {
    text-align: center;
    padding: 60px 16px;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(245, 176, 65, 0.03), transparent 60%);
    animation: ctaGlow 6s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% {
        transform: scale(1) rotate(0deg);
    }
    100% {
        transform: scale(1.2) rotate(10deg);
    }
}

.cta-section h2 {
    font-size: 2rem;
    color: #f5b041;
    margin-bottom: 10px;
    font-weight: 800;
    position: relative;
}

.cta-section .motivation-texts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto 24px;
    position: relative;
}

.cta-section .motivation-texts .m-text {
    font-size: 0.95rem;
    color: #e8eaed;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 40px;
    border-right: 3px solid #f5b041;
    text-align: right;
    transition: 0.3s;
}

.cta-section .motivation-texts .m-text:hover {
    background: rgba(245, 176, 65, 0.05);
    transform: translateX(-4px);
    border-right-color: #4fc3f7;
}

.cta-section .motivation-texts .m-text .emoji {
    margin-left: 8px;
}

.cta-section .big-btn {
    display: inline-block;
    background: linear-gradient(135deg, #f5b041, #d35400);
    color: #070a1a;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 16px 40px;
    border-radius: 60px;
    box-shadow: 0 0 40px rgba(245, 176, 65, 0.3);
    transition: 0.4s;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-section .big-btn::after {
    content: '🌠';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: 0.4s;
}

.cta-section .big-btn:hover::after {
    right: 15px;
    opacity: 1;
}

.cta-section .big-btn:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 0 60px rgba(245, 176, 65, 0.5);
    padding-right: 50px;
}

.cta-section .date-note {
    margin-top: 14px;
    font-size: 0.85rem;
    color: #4fc3f7;
    position: relative;
}

.footer {
    padding: 40px 16px 24px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 215, 0, 0.04);
    text-align: center;
}

.footer .sponsor-names {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    font-size: 0.8rem;
    color: #b0c4d0;
}

.footer .sponsor-names span {
    padding: 4px 6px;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
    cursor: default;
}

.footer .sponsor-names span:hover {
    color: #f5b041;
    border-bottom-color: #f5b041;
    transform: translateY(-2px);
}

.footer .socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0 12px;
}

.footer .socials a {
    font-size: 1.6rem;
    color: #b0c4d0;
    transition: 0.3s;
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer .socials a:hover {
    color: #f5b041;
    transform: translateY(-4px) scale(1.1);
    background: rgba(245, 176, 65, 0.08);
    border-color: #f5b041;
    box-shadow: 0 0 20px rgba(245, 176, 65, 0.1);
}

.footer .quote {
    font-size: 1rem;
    color: #f5b041;
    margin-top: 6px;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.8;
}

.footer .quote::before {
    content: '"';
}

.footer .quote::after {
    content: '"';
}

.footer .copy {
    font-size: 0.7rem;
    color: #5a6b78;
    margin-top: 18px;
}

.back-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f5b041, #e67e22);
    color: #070a1a;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(245, 176, 65, 0.2);
    cursor: pointer;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    border: none;
    z-index: 500;
}

.back-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-top:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 0 30px rgba(245, 176, 65, 0.4);
}

body.menu-open {
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (min-width: 480px) {
    .hero h1 {
        font-size: 2.6rem;
    }
    .timer {
        font-size: 2.2rem;
        gap: 8px;
    }
    .timer .time-box {
        min-width: 60px;
        padding: 8px 12px;
    }
    .timer .separator {
        font-size: 2.2rem;
    }
    .first-time-section .ft-main {
        font-size: 2.4rem;
    }
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .special-badge {
        font-size: 1.1rem;
        padding: 12px 32px;
    }
}

@media (min-width: 640px) {
    .container {
        padding: 0 24px;
    }
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero .subtitle {
        font-size: 1.15rem;
    }
    .release-announce {
        font-size: 0.95rem;
        padding: 14px 24px;
        max-width: 500px;
    }
    .resources-grid {
        gap: 30px;
    }
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.4rem;
    }
    .hero .subtitle {
        font-size: 1.4rem;
    }
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
    .timer {
        font-size: 3rem;
        gap: 14px;
    }
    .timer .time-box {
        min-width: 80px;
        padding: 12px 18px;
    }
    .timer .separator {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2.4rem;
    }
    .nav-overlay a {
        font-size: 2.6rem;
    }
    .cta-section h2 {
        font-size: 2.6rem;
    }
    .first-time-section .ft-main {
        font-size: 3rem;
        letter-spacing: 6px;
    }
    .release-announce {
        max-width: 600px;
        font-size: 1rem;
    }
    .special-badge {
        font-size: 1.2rem;
        padding: 14px 40px;
    }
    .logo .brand-text .fbas {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        min-height: 80vh;
        padding: 50px 20px 80px;
    }
    .hero h1 {
        font-size: 4.2rem;
    }
    .container {
        padding: 0 48px;
    }
    .glass-card {
        padding: 40px 28px;
    }
    .features-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .feature-item {
        flex: 1 1 220px;
        max-width: 300px;
    }
    .resources-grid {
        max-width: 800px;
    }
    .first-time-section .ft-main {
        font-size: 3.6rem;
        letter-spacing: 10px;
    }
}

.text-glow {
    text-shadow: 0 0 30px rgba(245, 176, 65, 0.15);
}

.skill-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.skill-main-desc {
    font-size: 1.1rem;
    color: #e8eaed;
    line-height: 2;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(245, 176, 65, 0.1);
    border-radius: 20px;
    padding: 24px 28px;
    text-align: justify;
}

.skill-main-desc strong {
    color: #f5b041;
    font-weight: 800;
}

.skill-main-desc .highlight {
    color: #4fc3f7;
    font-weight: 700;
    background: rgba(79, 195, 247, 0.08);
    padding: 2px 10px;
    border-radius: 6px;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.skill-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f5b041, #4fc3f7, #f5b041);
    background-size: 200% 200%;
    animation: gradientMove 4s ease-in-out infinite alternate;
    opacity: 0;
    transition: 0.4s;
}

.skill-card:hover::before {
    opacity: 1;
}

.skill-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(245, 176, 65, 0.2);
    box-shadow: 0 12px 40px rgba(245, 176, 65, 0.08);
}

.skill-card .skill-icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
    display: block;
    animation: skillIconFloat 3s ease-in-out infinite;
}

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

.skill-card:nth-child(2) .skill-icon {
    animation-delay: 0.5s;
}

.skill-card:nth-child(3) .skill-icon {
    animation-delay: 1s;
}

.skill-card:nth-child(4) .skill-icon {
    animation-delay: 1.5s;
}

.skill-card:nth-child(5) .skill-icon {
    animation-delay: 2s;
}

.skill-card:nth-child(6) .skill-icon {
    animation-delay: 2.5s;
}

.skill-card h3 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.skill-card p {
    color: #e8eaed;
    font-size: 0.85rem;
    line-height: 1.7;
}

.skill-outcome {
    max-width: 700px;
    margin: 0 auto;
}

.outcome-box {
    background: linear-gradient(135deg, rgba(245, 176, 65, 0.08), rgba(79, 195, 247, 0.05));
    backdrop-filter: blur(12px);
    border: 2px solid rgba(245, 176, 65, 0.2);
    border-radius: 24px;
    padding: 28px 24px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.outcome-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(245, 176, 65, 0.05), transparent 70%);
    animation: outcomeGlow 4s ease-in-out infinite alternate;
}

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

.outcome-box:hover {
    border-color: #f5b041;
    box-shadow: 0 0 50px rgba(245, 176, 65, 0.15);
    transform: translateY(-3px);
}

.outcome-box .outcome-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.outcome-box h3 {
    font-size: 1.4rem;
    color: #f5b041;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.outcome-box p {
    color: #e8eaed;
    font-size: 0.95rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.outcome-box p strong {
    color: #4fc3f7;
    font-weight: 700;
}

@media (min-width: 480px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .skill-main-desc {
        font-size: 1.2rem;
        padding: 30px 36px;
    }
    
    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .skill-card {
        padding: 30px 24px;
    }
    
    .skill-card h3 {
        font-size: 1.25rem;
    }
    
    .skill-card p {
        font-size: 0.9rem;
    }
    
    .outcome-box {
        padding: 36px 32px;
    }
    
    .outcome-box h3 {
        font-size: 1.6rem;
    }
}

@media (min-width: 1024px) {
    .skill-card {
        padding: 36px 28px;
    }
}

.section-desc {
    text-align: center;
    color: #b0c4d0;
    max-width: 700px;
    margin: -20px auto 30px;
    font-size: 0.9rem;
    line-height: 1.8;
}

.track-note {
    max-width: 700px;
    margin: 24px auto 0;
    background: rgba(79, 195, 247, 0.05);
    border: 1px solid rgba(79, 195, 247, 0.15);
    border-radius: 16px;
    padding: 16px 20px;
    text-align: center;
}

.track-note p {
    color: #e8eaed;
    font-size: 0.9rem;
    line-height: 1.8;
}

.track-note strong {
    color: #f5b041;
}

.skill-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.skill-main-desc {
    font-size: 1.05rem;
    color: #e8eaed;
    line-height: 2;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(245, 176, 65, 0.1);
    border-radius: 20px;
    padding: 24px 28px;
    text-align: justify;
}

.skill-main-desc strong {
    color: #f5b041;
    font-weight: 800;
}

.skill-main-desc .highlight {
    color: #4fc3f7;
    font-weight: 700;
    background: rgba(79, 195, 247, 0.08);
    padding: 2px 10px;
    border-radius: 6px;
}

.phases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.phase-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px 20px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.phase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f5b041, #4fc3f7);
    opacity: 0;
    transition: 0.4s;
}

.phase-card:hover::before {
    opacity: 1;
}

.phase-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 176, 65, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.phase-header {
    text-align: center;
    margin-bottom: 16px;
}

.phase-icon {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 8px;
}

.phase-header h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 6px;
}

.phase-deadline {
    display: inline-block;
    font-size: 0.75rem;
    color: #f5b041;
    background: rgba(245, 176, 65, 0.08);
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 500;
}

.phase-card p {
    color: #e8eaed;
    font-size: 0.9rem;
    line-height: 1.8;
    text-align: justify;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.skill-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.skill-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f5b041, #4fc3f7, #f5b041);
    background-size: 200% 200%;
    animation: gradientMove 4s ease-in-out infinite alternate;
    opacity: 0;
    transition: 0.4s;
}

.skill-card:hover::after {
    opacity: 1;
}

.skill-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(245, 176, 65, 0.2);
    box-shadow: 0 12px 40px rgba(245, 176, 65, 0.08);
}

.skill-card .skill-icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
    display: block;
    animation: skillIconFloat 3s ease-in-out infinite;
}

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

.skill-card:nth-child(2) .skill-icon { animation-delay: 0.5s; }
.skill-card:nth-child(3) .skill-icon { animation-delay: 1s; }
.skill-card:nth-child(4) .skill-icon { animation-delay: 1.5s; }
.skill-card:nth-child(5) .skill-icon { animation-delay: 2s; }
.skill-card:nth-child(6) .skill-icon { animation-delay: 2.5s; }

.skill-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.skill-card p {
    color: #e8eaed;
    font-size: 0.85rem;
    line-height: 1.7;
}

.skill-outcome {
    max-width: 750px;
    margin: 0 auto;
}

.outcome-box {
    background: linear-gradient(135deg, rgba(245, 176, 65, 0.08), rgba(79, 195, 247, 0.05));
    backdrop-filter: blur(12px);
    border: 2px solid rgba(245, 176, 65, 0.2);
    border-radius: 24px;
    padding: 28px 24px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.outcome-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(245, 176, 65, 0.05), transparent 70%);
    animation: outcomeGlow 4s ease-in-out infinite alternate;
}

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

.outcome-box:hover {
    border-color: #f5b041;
    box-shadow: 0 0 50px rgba(245, 176, 65, 0.15);
    transform: translateY(-3px);
}

.outcome-box .outcome-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.outcome-box h3 {
    font-size: 1.4rem;
    color: #f5b041;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.outcome-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: right;
    position: relative;
    z-index: 2;
}

.outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: #e8eaed;
    line-height: 1.7;
}

.outcome-check {
    color: #4fc3f7;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.outcome-item strong {
    color: #f5b041;
    font-weight: 700;
}

@media (min-width: 480px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 640px) {
    .phases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .section-desc {
        font-size: 1rem;
    }
    
    .skill-main-desc {
        font-size: 1.1rem;
        padding: 30px 36px;
    }
    
    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .skill-card {
        padding: 30px 24px;
    }
    
    .skill-card h3 {
        font-size: 1.2rem;
    }
    
    .skill-card p {
        font-size: 0.9rem;
    }
    
    .outcome-box {
        padding: 36px 32px;
    }
    
    .outcome-box h3 {
        font-size: 1.6rem;
    }
    
    .outcome-item {
        font-size: 0.95rem;
    }
    
    .phase-card {
        padding: 30px 28px;
    }
    
    .phase-header h3 {
        font-size: 1.3rem;
    }
}

@media (min-width: 1024px) {
    .skill-card {
        padding: 36px 28px;
    }
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: -10px auto 36px;
}

.about-intro p {
    color: #e8eaed;
    font-size: 1rem;
    line-height: 2;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(245, 176, 65, 0.08);
    border-radius: 16px;
    padding: 20px 24px;
    text-align: justify;
}

.about-intro strong {
    color: #f5b041;
    font-weight: 700;
}

.timeline-section {
    margin-top: 50px;
}

.timeline-title {
    text-align: center;
    font-size: 1.3rem;
    color: #4fc3f7;
    margin-bottom: 30px;
    font-weight: 700;
}

.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding-right: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    right: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(245, 176, 65, 0.3), rgba(79, 195, 247, 0.3), rgba(245, 176, 65, 0.3));
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
}

.timeline-marker {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(7, 10, 26, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: 0.3s;
}

.timeline-marker.current {
    border-color: #f5b041;
    box-shadow: 0 0 20px rgba(245, 176, 65, 0.3);
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(245, 176, 65, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(245, 176, 65, 0.5);
    }
}

.marker-icon {
    font-size: 1.4rem;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 14px 18px;
    flex: 1;
    transition: 0.3s;
}

.timeline-content:hover {
    border-color: rgba(245, 176, 65, 0.2);
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-4px);
}

.timeline-content h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 4px;
    font-weight: 700;
}

.timeline-content p {
    font-size: 0.8rem;
    color: #b0c4d0;
}

.timeline-badge {
    display: inline-block;
    font-size: 0.65rem;
    color: #070a1a;
    background: linear-gradient(135deg, #f5b041, #e67e22);
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 6px;
}

@media (min-width: 640px) {
    .about-intro p {
        font-size: 1.05rem;
        padding: 24px 28px;
    }
    
    .timeline {
        padding-right: 30px;
    }
    
    .timeline::before {
        right: 36px;
    }
    
    .timeline-marker {
        width: 64px;
        height: 64px;
    }
    
    .marker-icon {
        font-size: 1.6rem;
    }
    
    .timeline-content h4 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.85rem;
    }
}

@media (min-width: 768px) {
    .about-intro p {
        font-size: 1.1rem;
        padding: 28px 32px;
    }
    
    .timeline-title {
        font-size: 1.5rem;
    }
}

.timeline-status {
    text-align: center;
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-status.active {
    background: rgba(79, 195, 247, 0.1);
    color: #4fc3f7;
    border: 1px solid rgba(79, 195, 247, 0.2);
}

.timeline-status.upcoming {
    background: rgba(245, 176, 65, 0.1);
    color: #f5b041;
    border: 1px solid rgba(245, 176, 65, 0.2);
}

.timeline-status.completed-all {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.timeline-marker.completed {
    border-color: #4caf50;
    background: rgba(76, 175, 80, 0.15);
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.2);
}

.timeline-marker.completed .marker-icon {
    opacity: 0.7;
}

.timeline-marker.upcoming-active {
    border-color: #4fc3f7;
    box-shadow: 0 0 15px rgba(79, 195, 247, 0.3);
    animation: markerPulse 2s ease-in-out infinite;
}

.timeline-marker.upcoming {
    opacity: 0.5;
}

.timeline-item:has(.timeline-marker.completed) .timeline-content {
    opacity: 0.7;
}

.timeline-item:has(.timeline-marker.upcoming) .timeline-content {
    opacity: 0.5;
}

.timeline-progress-container {
    max-width: 700px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.timeline-progress-bar {
    position: relative;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    margin: 0 20px;
}

.timeline-progress-fill {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, #4fc3f7, #f5b041);
    border-radius: 2px;
    transition: width 1s ease-in-out;
    width: 0%;
}

.timeline-progress-fill.completed {
    background: linear-gradient(90deg, #4caf50, #8bc34a);
}

.timeline-progress-nodes {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.timeline-node {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(7, 10, 26, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 2;
}

.timeline-node:hover {
    transform: scale(1.4);
}

.timeline-node.completed {
    border-color: #4caf50;
    background: #4caf50;
    box-shadow: 0 0 12px rgba(76, 175, 80, 0.4);
}

.timeline-node.current {
    border-color: #f5b041;
    background: #f5b041;
    box-shadow: 0 0 20px rgba(245, 176, 65, 0.6);
    animation: nodePulse 2s ease-in-out infinite;
}

.timeline-node.upcoming {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(7, 10, 26, 0.95);
}

@keyframes nodePulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(245, 176, 65, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(245, 176, 65, 0.8);
    }
}

.timeline-node .node-tooltip {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(7, 10, 26, 0.95);
    color: #fff;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-node:hover .node-tooltip {
    opacity: 1;
    top: -40px;
}

.timeline-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    max-width: 900px;
    margin: 0 auto 20px;
}

.timeline-card-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 16px 10px;
    text-align: center;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.timeline-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f5b041, #4fc3f7);
    opacity: 0;
    transition: 0.4s;
}

.timeline-card-item:hover::before {
    opacity: 1;
}

.timeline-card-item:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 176, 65, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.timeline-card-item.completed {
    opacity: 0.8;
    border-color: rgba(76, 175, 80, 0.15);
}

.timeline-card-item.completed::before {
    background: #4caf50;
    opacity: 1;
}

.timeline-card-item.current {
    border-color: rgba(245, 176, 65, 0.3);
    box-shadow: 0 0 30px rgba(245, 176, 65, 0.1);
    transform: scale(1.03);
}

.timeline-card-item.current::before {
    background: #f5b041;
    opacity: 1;
}

.timeline-card-item .card-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 8px;
}

.timeline-card-item .card-phase {
    font-size: 0.65rem;
    color: #f5b041;
    font-weight: 700;
    margin-bottom: 4px;
}

.timeline-card-item.current .card-phase {
    color: #f5b041;
}

.timeline-card-item.completed .card-phase {
    color: #4caf50;
}

.timeline-card-item h4 {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 4px;
}

.timeline-card-item .card-date {
    font-size: 0.65rem;
    color: #b0c4d0;
}

.timeline-card-item .card-badge {
    display: inline-block;
    font-size: 0.6rem;
    padding: 3px 10px;
    border-radius: 12px;
    margin-top: 6px;
    font-weight: 700;
}

.timeline-card-item .card-badge.active {
    background: linear-gradient(135deg, #f5b041, #e67e22);
    color: #070a1a;
}

.timeline-card-item .card-badge.done {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.timeline-card-item .card-badge.waiting {
    background: rgba(255, 255, 255, 0.05);
    color: #b0c4d0;
}

@media (max-width: 768px) {
    .timeline-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-cards .timeline-card-item:last-child {
        grid-column: span 2;
        max-width: 300px;
        justify-self: center;
    }
}

@media (max-width: 480px) {
    .timeline-cards {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .timeline-cards .timeline-card-item:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .timeline-progress-nodes {
        display: none;
    }
}

.timeline-section {
    margin-top: 50px;
}

.timeline-title {
    text-align: center;
    font-size: 1.3rem;
    color: #4fc3f7;
    margin-bottom: 30px;
    font-weight: 700;
}

.timeline-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 100px;
    padding: 10px;
}

.step-marker {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5b041, #e67e22);
    color: #070a1a;
    font-weight: 900;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 0 20px rgba(245, 176, 65, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-marker:hover {
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(245, 176, 65, 0.5);
}

.step-content h4 {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 4px;
    font-weight: 700;
}

.step-content p {
    font-size: 0.7rem;
    color: #b0c4d0;
}

.timeline-connector {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #f5b041, #4fc3f7);
    align-self: center;
    opacity: 0.4;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .timeline-simple {
        flex-direction: column;
        gap: 0;
    }
    
    .timeline-step {
        flex-direction: row;
        text-align: right;
        gap: 16px;
        width: 100%;
        max-width: 350px;
        padding: 12px 0;
    }
    
    .step-marker {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .step-content h4 {
        font-size: 0.85rem;
    }
    
    .step-content p {
        font-size: 0.7rem;
    }
    
    .timeline-connector {
        width: 2px;
        height: 20px;
        background: linear-gradient(180deg, #f5b041, #4fc3f7);
        align-self: flex-start;
        margin-right: 20px;
    }
}

@media (max-width: 480px) {
    .timeline-title {
        font-size: 1.1rem;
    }
    
    .step-marker {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    
    .step-content h4 {
        font-size: 0.8rem;
    }
    
    .step-content p {
        font-size: 0.65rem;
    }
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.faq-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4fc3f7, #f5b041);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-card:hover::before {
    opacity: 1;
}

.faq-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 176, 65, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.faq-card .faq-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
    transition: transform 0.3s ease;
}

.faq-card:hover .faq-icon {
    transform: scale(1.15);
}

.faq-card h3 {
    font-size: 1.1rem;
    color: #f5b041;
    margin-bottom: 10px;
    font-weight: 700;
}

.faq-card p {
    color: #e8eaed;
    font-size: 0.85rem;
    line-height: 1.8;
}

.faq-card p strong {
    color: #4fc3f7;
    font-weight: 700;
}

@media (min-width: 480px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-card {
        padding: 28px 22px;
    }
    
    .faq-card .faq-icon {
        font-size: 2.8rem;
    }
    
    .faq-card h3 {
        font-size: 1.15rem;
    }
    
    .faq-card p {
        font-size: 0.88rem;
    }
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .faq-card {
        padding: 32px 24px;
    }
    
    .faq-card .faq-icon {
        font-size: 3rem;
    }
    
    .faq-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .faq-card p {
        font-size: 0.9rem;
    }
}

@media (min-width: 1024px) {
    .faq-card {
        padding: 36px 28px;
    }
    
    .faq-card h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .main-overlay {
        background: rgba(7, 10, 26, 0.92);
        backdrop-filter: none;
    }
    
    .glass-card,
    .faq-card,
    .skill-card,
    .phase-card,
    .resource-card,
    .outcome-box,
    .navbar {
        backdrop-filter: none;
    }
    
    .timer-wrapper::before,
    .hero::before,
    .cta-section::before,
    .outcome-box::before,
    .first-time-section .ft-container::before {
        animation: none;
    }
}

body.low-power .main-overlay {
    background: rgba(7, 10, 26, 0.95);
    backdrop-filter: none;
}

body.low-power .navbar {
    backdrop-filter: none;
    background: rgba(7, 10, 26, 0.95);
}

body.low-power .glass-card,
body.low-power .faq-card,
body.low-power .skill-card,
body.low-power .phase-card,
body.low-power .resource-card,
body.low-power .outcome-box,
body.low-power .feature-item,
body.low-power .timer-wrapper,
body.low-power .release-announce,
body.low-power .ft-container,
body.low-power .about-intro p,
body.low-power .skill-main-desc,
body.low-power .m-text,
body.low-power .timeline-content,
body.low-power .timeline-card-item {
    backdrop-filter: none !important;
}

body.low-power .shooting-star,
body.low-power .particle {
    display: none !important;
}

body.low-power .special-badge {
    animation: none !important;
}

body.low-power .timer-wrapper::before,
body.low-power .hero::before,
body.low-power .cta-section::before,
body.low-power .outcome-box::before,
body.low-power .first-time-section .ft-container::before,
body.low-power .release-announce::before {
    animation: none !important;
    display: none !important;
}

body.low-power .skill-card .skill-icon {
    animation: none !important;
}

body.low-power .timer .separator {
    animation: none !important;
}

body.low-power .navbar,
body.low-power .main-overlay {
    will-change: transform;
}

body.low-power .glass-card,
body.low-power .faq-card,
body.low-power .skill-card {
    will-change: transform;
}

body.low-power .glass-card:hover,
body.low-power .faq-card:hover,
body.low-power .skill-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}
.support {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(79, 195, 247, 0.15);
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 12px;
    font-size: 0.8rem;
    color: #b0c4d0;
    transition: 0.3s;
}

.support:hover {
    border-color: rgba(245, 176, 65, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

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

.support-phone {
    color: #f5b041;
    font-weight: 700;
    font-size: 0.95rem;
    direction: ltr;
    display: inline-block;
    transition: 0.3s;
    border-bottom: 1px dashed rgba(245, 176, 65, 0.3);
}

.support-phone:hover {
    color: #ffaa33;
    border-bottom-color: #f5b041;
    transform: scale(1.03);
}

.cosmic-extension-banner {
    background: rgba(10, 15, 40, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 100;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
}
.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    position: relative;
    gap: 15px;
    flex-wrap: wrap;
}
.banner-icon-group {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.8rem;
    animation: floatIcon 3s ease-in-out infinite;
}
@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.banner-text {
    font-family: 'Vazirmatn', sans-serif;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0 0 15px rgba(0,0,0,0.5);
    text-align: center;
}
.gold-highlight {
    color: #ffd700;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 4px;
    position: relative;
    display: inline-block;
    font-size: 1.35rem;
}
.gold-highlight::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    animation: underlinePulse 2s infinite;
}
@keyframes underlinePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}
.banner-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.4), transparent),
                      radial-gradient(1px 1px at 85% 30%, rgba(255,255,255,0.5), transparent),
                      radial-gradient(1.5px 1.5px at 50% 70%, rgba(255,215,0,0.6), transparent),
                      radial-gradient(1px 1px at 90% 80%, rgba(255,255,255,0.3), transparent),
                      radial-gradient(1.5px 1.5px at 15% 60%, rgba(255,215,0,0.5), transparent);
    animation: twinkle 3s infinite alternate;
}
@keyframes twinkle {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}
.banner-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, #ffaa00, #ffd700, transparent);
    animation: glowMove 4s linear infinite;
}
@keyframes glowMove {
    0% { opacity: 0.4; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
    100% { opacity: 0.4; transform: scaleX(0.8); }
}
@media (max-width: 768px) {
    .banner-content {
        gap: 8px;
        padding: 12px 15px;
    }
    .banner-text {
        font-size: 1rem;
    }
    .gold-highlight {
        font-size: 1.1rem;
    }
    .banner-icon-group {
        font-size: 1.4rem;
    }
}