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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #141414;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 40px;
}

.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    animation: float 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background-color: #e50914;
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background-color: #e50914;
    bottom: 10%;
    right: -5%;
    animation-delay: -5s;
    opacity: 0.12;
}

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

.glass-panel {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.logo {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.5px;
}
.icon-red {
    color: #e50914;
    margin-right: 8px;
}
.text-white {
    color: #ffffff;
}
.text-red {
    color: #e50914;
}

.wrapper {
    max-width: 1200px;
    margin: 140px auto 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-panel {
    padding: 80px 60px;
    text-align: center;
}
.version-pill {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #a1a1aa;
}

.hero-actions { 
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
}

.hero-logo-text {
    font-size: 56px;
    font-weight: 700;
    margin: 24px 0;
    line-height: 1.1;
    letter-spacing: 1px;
}

.hero-logo-text .text-white {
    color: #ffffff !important;
    background: none;
    -webkit-text-fill-color: initial;
}

.hero-logo-text .text-red {
    color: #e50914 !important;
    background: none;
    -webkit-text-fill-color: initial;
}

.gradient-text {
    font-size: 56px;
    font-weight: 700;
    margin: 24px 0;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-panel p {
    color: #a1a1aa;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.ticker-panel { 
    padding: 24px 0;
    overflow: hidden;
    display: flex;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.ticker-mask {
    display: none !important;
}

.ticker-track { 
    display: flex;
    width: 3000px;
    animation: scroll-ticker 20s linear infinite;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.ticker-group {
    display: flex;
    align-items: center;
    width: 1500px;
    flex-shrink: 0;
}

.ticker-track span { 
    font-size: 20px;
    font-weight: 600;
    color: #d4d4d8;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    white-space: nowrap;
}

.ticker-track i { 
    color: #e50914;
    font-size: 24px;
}

@keyframes scroll-ticker { 
    0% {
        transform: translateX(0);
    } 
    100% {
        transform: translateX(-1500px);
    } 
}

.glass-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feature {
    padding: 40px;
}
.icon-ring { 
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid rgba(229, 9, 20, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #e50914;
    margin-bottom: 20px;
}
.feature h3 {
    font-size: 22px;
    margin-bottom: 12px;
}
.feature p {
    color: #a1a1aa;
    line-height: 1.6;
}

.changelog-panel {
    grid-column: span 2;
    padding: 40px;
}
.changelog-panel h3 {
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.changelog-panel h3 i {
    color: #e50914;
}

.cl-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cl-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.cl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    margin-top: 6px;
    flex-shrink: 0;
}
.cl-dot.new {
    background: #e50914;
    box-shadow: 0 0 12px rgba(229, 9, 20, 0.6);
}
.cl-text {
    color: #d4d4d8;
    font-size: 15px;
    line-height: 1.6;
}
.cl-text strong {
    color: #fff;
    background: rgba(255,255,255,0.1);
    padding: 2px 8px;
    border-radius: 6px;
    margin-right: 8px;
}

.release-specs {
    list-style: none;
    margin-top: 30px;
    padding: 0;
}

.release-specs li {
    display: block;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    min-height: 70px;
}

.release-specs li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tag {
    position: absolute;
    left: 0;
    top: 22px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 6px;
    text-align: center;
    min-width: 90px;
}

.spec-text {
    margin-left: 120px;
    text-align: left;
}

.spec-text strong {
    font-size: 16px;
    color: #ffffff;
    display: block;
    margin-bottom: 6px;
}

.spec-text p {
    color: #a1a1aa;
    font-size: 14px;
    line-height: 1.5;
}

.tag-new {
    background-color: #e50914;
    color: #ffffff;
}

.tag-fix {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tag-mod {
    background-color: rgba(255, 255, 255, 0.03);
    color: #a1a1aa;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.features-section {
    padding: 60px;
    margin-top: 24px;
}

.features-container {
    display: flex;
    gap: 60px;
}

.features-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features-left h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    color: #ffffff;
}

.section-desc {
    color: #a1a1aa;
    font-size: 16px;
    margin-bottom: 32px;
}

.control-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.control-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: #e4e4e7;
}

.control-list li i {
    color: #e50914;
    font-size: 16px;
    width: 24px;
    text-align: center;
}

.features-right {
    flex: 1.1;
}

.tech-spec-box {
    display: flex;
    flex-direction: column;
    gap: 28px;
    background: rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.spec-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(229, 9, 20, 0.08);
    border: 1px solid rgba(229, 9, 20, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e50914;
    font-size: 18px;
    flex-shrink: 0;
}

.spec-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.spec-info p {
    color: #a1a1aa;
    font-size: 14px;
    line-height: 1.5;
}

.kofi-panel {
    grid-column: span 2;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.kofi-content {
    max-width: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kofi-icon {
    font-size: 32px;
    color: #e50914;
    margin-bottom: 16px;
}

.kofi-panel h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.kofi-panel p {
    color: #a1a1aa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.btn-kofi {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-kofi:hover {
    background-color: #e50914;
    border-color: #e50914;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.4);
    transform: translateY(-2px);
}

.btn-kofi i {
    font-size: 14px;
}

.footer-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    font-size: 14px;
    color: #a1a1aa;
}

.footer-right-area {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-link {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}
.footer-link:hover {
    color: #ffffff;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 8px;
}

.lang-icon {
    font-size: 12px;
    color: #52525b;
    margin-right: 4px;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    color: #71717a;
    transition: color 0.2s ease;
}

.lang-btn.active {
    color: #e50914;
    cursor: default;
}

.lang-btn:hover:not(.active) {
    color: #ffffff;
}

.lang-divider {
    font-size: 10px;
    color: #27272a;
    user-select: none;
    padding: 0 2px;
}

.hero-actions { 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 10px;
    width: 100%;
}

.hero-container-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.hero-main-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.hero-sub-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.btn-sub {
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    color: #71717a;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.btn-sub i {
    font-size: 13px;
    color: #52525b;
    transition: color 0.2s ease;
}

.btn-sub .text-gold {
    color: rgba(234, 179, 8, 0.4);
}

.btn-sub:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-sub:hover i {
    color: #ffffff;
}

.btn-sub:hover .text-gold {
    color: #eab308;
}

.btn-solid { 
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    background: #e50914;
    color: #ffffff;
    border: 1px solid #e50914;
}
.btn-primary:hover {
    background: #b8070f;
    border-color: #b8070f;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(229, 9, 20, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}


@media (max-width: 900px) {
    .features-section {
        padding: 40px 24px;
    }
    .features-container {
        flex-direction: column;
        gap: 40px;
    }
    .tech-spec-box {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .footer-panel {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .footer-right-area {
        flex-direction: column;
        gap: 12px;
    }
    .hero-logo-text {
        font-size: 38px;
    }
    .kofi-panel {
        grid-column: span 1;
        padding: 30px 20px;
    }
}

@media (max-width: 640px) {
    .hero-main-actions, .hero-sub-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        gap: 12px;
    }
    .btn-solid, .btn-sub {
        width: 100%;
        justify-content: center;
    }
    .hero-sub-actions {
        gap: 16px;
        margin-top: 4px;
    }
}

@media (max-width: 520px) {
    .release-specs li {
        min-height: auto;
        padding: 16px 0;
    }
    .tag {
        position: relative;
        top: 0;
        display: inline-block;
        margin-bottom: 10px;
    }
    .spec-text {
        margin-left: 0;
    }
}