:root {
    --primary: #ff6b35;
    --primary-dark: #e55a2b;
    --primary-light: #ff8c5a;
    --primary-glow: rgba(255, 107, 53, 0.5);
    --bg: #0a0a0a;
    --bg-elevated: #141414;
    --bg-hover: #1a1a1a;
    --bg-glass: rgba(20, 20, 20, 0.75);
    --text: #ffffff;
    --text-secondary: #d1d1d1;
    --text-muted: #999999;
    --border: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 107, 53, 0.5);
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.6);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.7);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.8);
    --shadow-xl: 0 24px 80px rgba(0, 0, 0, 0.9);
    --shadow-glow: 0 0 60px rgba(255, 107, 53, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    cursor: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 0 20px var(--primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    opacity: 0.5;
}

body:hover .cursor-dot,
body:hover .cursor-outline {
    opacity: 1;
}

a:hover ~ .cursor-dot,
button:hover ~ .cursor-dot {
    width: 12px;
    height: 12px;
}

a:hover ~ .cursor-outline,
button:hover ~ .cursor-outline {
    width: 60px;
    height: 60px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    html, body {
        cursor: auto;
    }
    
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: var(--shadow-md);
    border-bottom-color: rgba(255, 107, 53, 0.3);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 1.25rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo img {
    width: 36px;
    height: 36px;
    display: block;
    filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.6));
    transition: filter 0.3s ease;
}

.nav-logo:hover img {
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.8));
}

.logo-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px var(--primary-glow);
    position: relative;
    overflow: hidden;
}

.btn-download::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-download:hover::before {
    opacity: 1;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--primary-glow);
}

.btn-download > * {
    position: relative;
    z-index: 1;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gradient-mesh {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 140, 90, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: mesh-move 25s ease-in-out infinite;
    filter: blur(60px);
}

@keyframes mesh-move {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(5%, -5%) scale(1.1) rotate(2deg); }
    66% { transform: translate(-5%, 5%) scale(0.9) rotate(-2deg); }
}

.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary), transparent);
    top: 10%;
    left: 10%;
    animation: float-shape 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-light), transparent);
    bottom: 20%;
    right: 15%;
    animation: float-shape 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--primary), transparent);
    top: 50%;
    right: 30%;
    animation: float-shape 30s ease-in-out infinite;
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 30px) scale(1.05); }
}

#particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem;
    background: var(--bg-glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 50px;
    margin-bottom: 2.5rem;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    animation: badge-float 4s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 16px var(--primary);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.4); }
}

.badge-text {
    color: var(--text-secondary);
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
}

.title-line {
    display: block;
    opacity: 1;
    color: var(--text);
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light), #ffb380, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: gradient-flow 5s ease infinite;
    filter: drop-shadow(0 0 40px rgba(255, 107, 53, 0.6));
    position: relative;
}

@keyframes gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description strong {
    color: var(--text);
    font-weight: 600;
    background: linear-gradient(135deg, var(--text), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1.125rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 6px 28px var(--primary-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px var(--primary-glow);
}

.btn-shine {
    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.6s ease;
    z-index: 1;
    pointer-events: none;
}

.btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
    z-index: 1;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-secondary {
    background: var(--bg-glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--border-hover);
    background: var(--bg-hover);
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-md);
}

.btn-text,
.btn-icon,
.btn-primary > span,
.btn-primary > svg,
.btn-secondary > span,
.btn-secondary > svg {
    position: relative;
    z-index: 2;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.125rem;
}

.hero-stats {
    display: flex;
    gap: 5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-value {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.625rem;
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.5));
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, var(--primary), transparent);
    animation: scroll-bounce 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--primary);
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(15px); opacity: 0.4; }
}

.scroll-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: var(--bg-glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.features {
    padding: 10rem 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 3rem;
    background: var(--bg-glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: none;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, var(--primary), transparent, var(--primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-hover-effect {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.feature-card:hover .feature-hover-effect {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.feature-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.25), rgba(255, 140, 90, 0.15));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.feature-card:hover .feature-icon-bg {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
}

.feature-icon {
    color: var(--primary);
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.5));
}

.feature-card:hover .feature-icon {
    transform: scale(1.3) rotate(10deg);
}

.feature-title {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: var(--primary);
}

.feature-text {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.0625rem;
}

.about {
    padding: 10rem 0;
    background: var(--bg-elevated);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    max-width: 650px;
}

.about-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.about-description strong {
    color: var(--text);
    font-weight: 600;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 10px;
    cursor: none;
}

.about-feature:hover {
    background: var(--bg-hover);
    transform: translateX(10px);
    color: var(--text);
}

.about-feature svg {
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.about-feature:hover svg {
    transform: scale(1.3) rotate(8deg);
}

.contact-card {
    padding: 3.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--border);
    border-radius: 28px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: none;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-hover-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--border-hover);
}

.contact-card:hover .contact-hover-effect {
    opacity: 1;
}

.contact-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.25), rgba(255, 140, 90, 0.15));
    border-radius: 24px;
    color: var(--primary);
    transition: transform 0.5s ease;
    filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.5));
}

.contact-card:hover .contact-icon {
    transform: scale(1.15) rotate(8deg);
}

.contact-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-text {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.9;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 1rem 1.75rem;
    border-radius: 12px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 1;
}

.contact-email:hover {
    background: rgba(255, 107, 53, 0.25);
    border-color: var(--primary);
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
}

.cta {
    padding: 10rem 0;
    text-align: center;
    position: relative;
}

.cta-content {
    max-width: 750px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.375rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.9;
}

.page-hero {
    padding: 160px 0 5rem;
    text-align: center;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.page-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

.release-section {
    padding: 5rem 0 10rem;
}

.release-card {
    max-width: 950px;
    margin: 0 auto;
    padding: 4rem;
    background: var(--bg-glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--border);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}

.release-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.release-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.release-date {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.release-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.release-content {
    margin-bottom: 3rem;
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.0625rem;
}

.release-content h1,
.release-content h2,
.release-content h3 {
    color: var(--text);
    margin: 2.5rem 0 1.25rem;
    font-weight: 700;
}

.release-content h1 {
    font-size: 1.875rem;
}

.release-content h2 {
    font-size: 1.625rem;
}

.release-content h3 {
    font-size: 1.375rem;
}

.release-content p {
    margin-bottom: 1.25rem;
}

.release-content ul,
.release-content ol {
    margin: 1.25rem 0 1.25rem 2rem;
}

.release-content li {
    margin-bottom: 0.625rem;
}

.release-content code {
    background: rgba(255, 107, 53, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.9375em;
    color: var(--primary);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.release-content a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.release-content a:hover {
    border-bottom-color: var(--primary);
}

.release-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.release-error {
    max-width: 650px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.release-error svg {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.release-error h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.release-error p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.9;
}

.footer {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    padding: 5rem 0 2.5rem;
    margin-top: 10rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.6));
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.9;
    max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.875rem;
}

.footer-links a,
.footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9375rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary);
    transform: translateX(6px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.download-section {
    padding: 5rem 0 10rem;
}

.download-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem;
    background: var(--bg-glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--border);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}

.download-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.download-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 140, 90, 0.1));
    border-radius: 20px;
    color: var(--primary);
    flex-shrink: 0;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.4));
}

.download-info {
    flex: 1;
}

.download-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.download-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.download-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.0625rem;
}

.download-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    color: var(--primary);
    flex-shrink: 0;
}

.detail-content {
    flex: 1;
}

.detail-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.detail-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
}

.download-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-download-main {
    flex: 1;
    min-width: 250px;
}

.download-warning {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    align-items: flex-start;
}

.download-warning svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.download-warning strong {
    display: block;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.0625rem;
}

.download-warning p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.download-error {
    max-width: 600px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.download-error svg {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.download-error h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.download-error p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.9;
}

.beta-section {
    padding: 8rem 0;
    background: var(--bg-elevated);
    position: relative;
}

.beta-box {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem;
    background: var(--bg-glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--border);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}

.beta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), transparent);
    opacity: 0.5;
}

.beta-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.beta-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
}

.beta-badge-large svg {
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.5));
}

.beta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.beta-content {
    position: relative;
    z-index: 1;
}

.beta-intro {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.beta-intro strong {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.375rem;
}

.beta-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.beta-detail-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.beta-detail-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.beta-detail-card:hover::before {
    opacity: 1;
}

.beta-detail-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 107, 53, 0.2);
}

.beta-detail-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 140, 90, 0.1));
    border-radius: 16px;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.4));
}

.beta-detail-card:hover .beta-detail-icon {
    transform: scale(1.1) rotate(5deg);
}

.beta-detail-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
    transition: color 0.3s ease;
}

.beta-detail-card:hover .beta-detail-title {
    color: var(--primary);
}

.beta-detail-text {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1rem;
}

.beta-contact {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    margin-top: 3rem;
}

.beta-contact-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.beta-contact .btn {
    display: inline-flex;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-stats {
        gap: 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .release-card {
        padding: 2.5rem;
    }

    .release-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .download-card {
        padding: 2.5rem;
    }

    .download-header {
        flex-direction: column;
        gap: 1.5rem;
    }

    .download-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .beta-box {
        padding: 2.5rem;
    }

    .beta-details {
        grid-template-columns: 1fr;
    }

    .beta-title {
        font-size: 1.75rem;
    }
}

.error-404-section {
    padding: 10rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-404-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.error-404-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    color: var(--primary);
    animation: error-pulse 2s ease-in-out infinite;
}

@keyframes error-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.error-404-title {
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.05em;
}

.error-404-subtitle {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text);
    letter-spacing: -0.02em;
}

.error-404-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 3rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.error-404-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.error-404-links {
    padding: 2.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--border);
    border-radius: 20px;
    text-align: left;
}

.error-404-links h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.error-404-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.error-404-links li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.error-404-links li:last-child {
    border-bottom: none;
}

.error-404-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.error-404-links a::before {
    content: '→';
    color: var(--primary);
    font-weight: 700;
    transition: transform 0.3s ease;
}

.error-404-links a:hover {
    color: var(--primary);
    transform: translateX(8px);
}

.error-404-links a:hover::before {
    transform: translateX(-4px);
}

@media (max-width: 768px) {
    .error-404-section {
        padding: 5rem 0;
    }
    
    .error-404-actions {
        flex-direction: column;
    }
    
    .error-404-actions .btn {
        width: 100%;
    }
    
    .error-404-links {
        padding: 2rem;
    }
}

.news-hero,
.download-hero {
    padding: 180px 0 80px;
    text-align: center;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.news-hero-content,
.download-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.news-hero-title,
.download-hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--text), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-hero-subtitle,
.download-hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-secondary);
    line-height: 1.8;
}

.news-content,
.download-content {
    padding: 6rem 0 10rem;
}

.news-article {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: var(--shadow-lg);
}

.article-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-version {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
}

.article-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.article-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.article-body {
    margin-bottom: 3rem;
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.0625rem;
}

.article-body h1,
.article-body h2,
.article-body h3 {
    color: var(--text);
    margin: 2.5rem 0 1.25rem;
    font-weight: 800;
    line-height: 1.3;
}

.article-body h1 {
    font-size: 2rem;
    margin-top: 3rem;
}

.article-body h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
}

.article-body h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 0;
}

.article-body li {
    margin-bottom: 0.75rem;
    position: relative;
}

.article-body ul li::marker {
    color: var(--primary);
}

.article-body code {
    background: rgba(255, 107, 53, 0.15);
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    font-size: 0.9375em;
    color: var(--primary);
    border: 1px solid rgba(255, 107, 53, 0.2);
    font-family: 'Courier New', monospace;
}

.article-body a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 600;
}

.article-body a:hover {
    border-bottom-color: var(--primary);
    padding-bottom: 2px;
}

.article-footer {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.news-error,
.download-error-page {
    max-width: 600px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.news-error .error-icon,
.download-error-page .error-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-error h2,
.download-error-page h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.news-error p,
.download-error-page p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.error-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.download-main {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
}

.download-info-box {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.download-version {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.version-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.version-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
}

.download-name {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.download-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.spec-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.spec-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.download-action-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.btn-download-large {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    border-radius: 20px;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    cursor: none;
}

.btn-download-large::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-download-large:hover::before {
    opacity: 1;
}

.btn-download-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(255, 107, 53, 0.4);
}

.btn-download-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    flex-shrink: 0;
}

.btn-download-text {
    flex: 1;
    text-align: left;
}

.btn-download-label {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.btn-download-subtitle {
    display: block;
    font-size: 0.9375rem;
    opacity: 0.9;
    font-weight: 500;
}

.btn-download-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-download-large:hover .btn-download-arrow {
    transform: translateX(4px);
}

.download-beta-notice {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    color: var(--primary);
    font-size: 0.9375rem;
    font-weight: 600;
}

.download-beta-notice svg {
    flex-shrink: 0;
}

.download-link-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    margin: 0 auto;
}

.download-link-secondary:hover {
    color: var(--primary);
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .news-hero,
    .download-hero {
        padding: 140px 0 60px;
    }
    
    .news-content,
    .download-content {
        padding: 4rem 0 6rem;
    }
    
    .news-article {
        padding: 2.5rem;
        border-radius: 20px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .article-footer {
        flex-direction: column;
    }
    
    .article-footer .btn {
        width: 100%;
    }
    
    .download-info-box {
        padding: 2rem;
    }
    
    .download-specs {
        grid-template-columns: 1fr;
    }
    
    .btn-download-large {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .btn-download-text {
        text-align: center;
    }
    
    .download-link-secondary {
        width: 100%;
        justify-content: center;
    }
}

.page-hero-modern {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.page-hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-background .gradient-mesh {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 140, 90, 0.1), transparent 50%);
    animation: gradient-shift 8s ease infinite;
}

.page-hero-background canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.page-hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.page-hero-title .title-word {
    display: inline-block;
}

.page-hero-title .title-word.highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-description {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.release-section-modern,
.download-section-modern {
    padding: 6rem 0 10rem;
    position: relative;
}

.release-card-modern,
.download-card-modern {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.release-card-modern::before,
.download-card-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), transparent);
    pointer-events: none;
}

.release-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.release-badge-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.badge-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    color: var(--primary);
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.badge-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.badge-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.release-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.release-title-modern {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 3rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.release-content-modern {
    margin-bottom: 4rem;
    color: var(--text-secondary);
    line-height: 2;
    font-size: 1.125rem;
    position: relative;
    z-index: 1;
}

.release-content-modern h1,
.release-content-modern h2,
.release-content-modern h3 {
    color: var(--text);
    margin: 3rem 0 1.5rem;
    font-weight: 800;
    line-height: 1.3;
}

.release-content-modern h1 {
    font-size: 2rem;
}

.release-content-modern h2 {
    font-size: 1.75rem;
}

.release-content-modern h3 {
    font-size: 1.5rem;
}

.release-content-modern p {
    margin-bottom: 1.5rem;
}

.release-content-modern ul,
.release-content-modern ol {
    margin: 2rem 0 2rem 2.5rem;
    padding-left: 0;
}

.release-content-modern li {
    margin-bottom: 1rem;
    position: relative;
}

.release-content-modern ul li::marker {
    color: var(--primary);
}

.release-content-modern code {
    background: rgba(255, 107, 53, 0.15);
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    font-size: 0.9375em;
    color: var(--primary);
    border: 1px solid rgba(255, 107, 53, 0.2);
    font-family: 'Courier New', monospace;
}

.release-content-modern a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 600;
}

.release-content-modern a:hover {
    border-bottom-color: var(--primary);
    padding-bottom: 2px;
}

.release-actions-modern {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.release-error-modern,
.download-error-modern {
    max-width: 700px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}

.error-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    color: var(--primary);
    animation: error-pulse 2s ease-in-out infinite;
}

.error-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text);
}

.error-message {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.error-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.download-header-modern {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.download-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.download-icon-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3), transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.download-icon-wrapper svg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    color: var(--primary);
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.6));
}

.download-info-modern {
    flex: 1;
}

.download-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.download-title-modern {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.download-description-modern {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.125rem;
}

.download-details-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.detail-card-modern {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.detail-card-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.detail-card-modern:hover::before {
    opacity: 1;
}

.detail-card-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(255, 107, 53, 0.15);
}

.detail-icon-modern {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 140, 90, 0.1));
    border-radius: 14px;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.4));
}

.detail-card-modern:hover .detail-icon-modern {
    transform: scale(1.15) rotate(5deg);
}

.detail-content-modern {
    position: relative;
    z-index: 1;
}

.detail-label-modern {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.detail-value-modern {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text);
}

.download-actions-modern {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-download-hero {
    flex: 1;
    min-width: 280px;
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
}

.download-warning-modern {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 16px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.warning-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    color: var(--primary);
    flex-shrink: 0;
}

.warning-content strong {
    display: block;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.warning-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .release-card-modern,
    .download-card-modern {
        padding: 4rem;
    }
    
    .download-header-modern {
        flex-direction: column;
        gap: 2rem;
    }
    
    .download-details-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero-modern {
        padding: 140px 0 60px;
        min-height: 400px;
    }
    
    .release-section-modern,
    .download-section-modern {
        padding: 4rem 0 6rem;
    }
    
    .release-card-modern,
    .download-card-modern {
        padding: 2.5rem;
        border-radius: 24px;
    }
    
    .release-header-modern {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .download-details-modern {
        grid-template-columns: 1fr;
    }
    
    .download-actions-modern {
        flex-direction: column;
    }
    
    .btn-download-hero {
        width: 100%;
        min-width: auto;
    }
    
    .download-warning-modern {
        flex-direction: column;
        gap: 1rem;
    }
    
    .error-actions {
        flex-direction: column;
    }
    
    .error-actions .btn {
        width: 100%;
    }
}
