/* 
 * HHPOKER Modern Design System
 * Premium "Black Gold" Aesthetic
 * 2026 Edition
 */

:root {
    /* Color Palette - Premium Gold & Obsidian */
    --color-bg-depth: #050505;
    --color-bg-surface: #0a0a0a;
    --color-bg-card: rgba(20, 20, 20, 0.6);

    --color-gold-primary: #D4AF37;
    --color-gold-light: #F3D7A8;
    --color-gold-dark: #AA8C2C;
    --color-gold-glow: rgba(212, 175, 55, 0.5);

    --color-text-main: #FFFFFF;
    --color-text-muted: #A0A0A0;
    --color-success: #2EB848;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--color-gold-primary) 0%, var(--color-gold-light) 50%, var(--color-gold-primary) 100%);
    --gradient-dark: linear-gradient(135deg, var(--color-bg-depth) 0%, #1a1a1a 100%);
    --gradient-glass: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);

    /* Effects */
    --glass-blur: blur(20px);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --gold-border: 1px solid rgba(212, 175, 55, 0.3);

    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.15);

    /* Typography */
    --font-main: 'Noto Sans SC', sans-serif;

    /* Layout */
    --header-height: 90px;
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;

    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg-depth);
    color: var(--color-text-main);
    line-height: 1.6;
    font-size: 1.6rem;
    overflow-x: hidden;
    position: relative;
}

/* Dynamic Background Mesh */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.02) 0%, transparent 25%);
    pointer-events: none;
    z-index: -1;
}

/* Utility Classes */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Glassmorphism Header */
.header-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: var(--glass-border);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header-area.scrolled {
    background: rgba(5, 5, 5, 0.95);
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo - Clean & Premium */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--header-height);
    /* Strict height matching header */
    position: relative;
    padding-right: 3rem;
    /* Spacing for visual separation */
    margin-right: 1rem;
}

/* Premium Vertical Separator */
.logo::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.logo a {
    display: flex;
    /* Remove unwanted line-height issues */
    align-items: center;
    height: 100%;
}

.logo img {
    height: 5.2rem;
    /* Slightly larger for presence */
    width: auto;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.15));
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    vertical-align: middle;
    /* Fix sub-pixel alignment */
}

.logo:hover img {
    transform: scale(1.05) translateY(-1px);
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.4)) brightness(1.1);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.gaming-labs img {
    height: 4rem;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.gaming-labs:hover img {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(46, 184, 72, 0.4));
}

@media (max-width: 768px) {
    .logo {
        padding-right: 0;
        margin-right: 0;
    }

    .logo::after {
        display: none;
    }

    .logo img {
        height: 4rem;
        /* Slightly smaller on mobile to fit nicely */
    }
}

/* Modern Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 4rem;
    align-items: center;
}

.main-nav a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-fast);
    box-shadow: 0 0 8px var(--color-gold-primary);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-text-main);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-gold-primary);
    outline-offset: 3px;
}

/* Hero Banner - Parallax & Depth */
.banner-section {
    height: 100vh;
    min-height: clamp(620px, 90vh, 760px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

.banner-container {
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1s ease, transform 1.5s ease;
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--color-bg-depth) 100%);
    z-index: 2;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    text-align: center;
    z-index: 10;
    width: 100%;
    max-width: 1000px;
    padding: 0 2rem;
}

.banner-kicker {
    display: inline-block;
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold-light);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 999px;
    padding: 0.8rem 1.6rem;
    margin-bottom: 2rem;
    background: rgba(5, 5, 5, 0.55);
    opacity: 0;
    transform: translateY(20px);
}

/* Animated Text Gradient */
.banner-title {
    font-size: 8rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 4s linear infinite;
    filter: drop-shadow(0 5px 25px rgba(212, 175, 55, 0.3));
    opacity: 0;
    transform: translateY(30px);
}

.banner-slide.active .banner-title {
    animation: fadeUp 0.8s forwards 0.3s, shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.banner-subtitle {
    font-size: 2.8rem;
    color: var(--color-text-main);
    margin-bottom: 5rem;
    font-weight: 300;
    letter-spacing: 4px;
    opacity: 0;
    transform: translateY(30px);
}

.banner-slide.active .banner-subtitle {
    animation: fadeUp 0.8s forwards 0.5s;
}

.banner-proof {
    max-width: 760px;
    margin: 0 auto 3.6rem;
    font-size: 1.7rem;
    color: rgba(255, 255, 255, 0.86);
    opacity: 0;
    transform: translateY(30px);
}

.banner-slide.active .banner-kicker {
    animation: fadeUp 0.8s forwards 0.2s;
}

.banner-slide.active .banner-proof {
    animation: fadeUp 0.8s forwards 0.65s;
}

.banner-actions {
    display: flex;
    gap: 1.6rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Premium Button */
.banner-cta {
    display: inline-block;
    padding: 2rem 5rem;
    background: transparent;
    color: var(--color-gold-primary);
    border: 1px solid var(--color-gold-primary);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-decoration: none;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
}

.banner-slide.active .banner-cta {
    animation: fadeUp 0.8s forwards 0.85s;
}

.banner-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: var(--transition-fast);
    z-index: -1;
}

.banner-cta:hover {
    color: var(--color-bg-depth);
    border-color: transparent;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

.banner-cta:hover::before {
    left: 0;
}

.banner-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.7rem 3.4rem;
    border-radius: 50px;
    text-decoration: none;
    color: var(--color-text-main);
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.35);
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    opacity: 0;
    transform: translateY(30px);
}

.banner-slide.active .banner-cta-secondary {
    animation: fadeUp 0.8s forwards 0.95s;
}

.banner-cta-secondary:hover {
    border-color: var(--color-gold-primary);
    color: var(--color-gold-light);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-3px);
}

.banner-nav {
    position: absolute;
    bottom: 3.6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 12;
}

.banner-dots {
    display: flex;
    gap: 1rem;
}

.banner-dot {
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.2);
    padding: 0;
    cursor: pointer;
    transition: var(--transition-fast);
}

.banner-dot.active,
.banner-dot:hover {
    background: var(--color-gold-primary);
    border-color: var(--color-gold-primary);
    transform: scale(1.15);
}

/* Domain Section - Glass Card */
.domain-section {
    position: relative;
    z-index: 20;
    margin-top: -72px;
    padding-bottom: 8rem;
}

.domain-content {
    background: var(--color-bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 4rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 1000px;
    margin: 0 auto;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.domain-content.visible {
    transform: translateY(0);
    opacity: 1;
}

.domain-title {
    color: var(--color-gold-primary);
    font-size: 1.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.main-domain {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(90deg, #fff, #2EB848, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 6s linear infinite;
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 10px rgba(46, 184, 72, 0.2));
}

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

.backup-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 1.4rem;
    padding: 0.8rem 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--transition-fast);
}

.backup-link:hover {
    border-color: var(--color-success);
    color: var(--color-success);
    background: rgba(46, 184, 72, 0.05);
}

.trust-strip {
    padding: 2rem 0 8rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}

.trust-item {
    padding: 2.4rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    text-align: left;
}

.trust-label {
    font-size: 1.3rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.trust-value {
    font-size: 3rem;
    line-height: 1.1;
    color: var(--color-gold-light);
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.trust-meta {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.75);
}

.security-entry-section {
    display: block;
    margin-top: 2rem;
    text-decoration: none;
    background:
        linear-gradient(145deg, rgba(212, 175, 55, 0.12) 0%, rgba(46, 184, 72, 0.05) 100%),
        rgba(10, 10, 10, 0.82);
}

.security-entry-section .trust-value {
    font-size: clamp(2.2rem, 3vw, 3.2rem);
}

.security-entry-section:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: var(--shadow-glow);
}

/* Section Common Styles */
.section-title,
.main-title {
    font-size: 4.5rem;
    font-weight: 900;
    text-align: center;
    color: var(--color-gold-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 6rem;
    position: relative;
    padding-bottom: 2rem;
}

.section-title::after,
.main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    box-shadow: 0 0 10px var(--color-gold-primary);
}

/* Features - Glass Cards */
.features-section {
    padding: 10rem 0;
    position: relative;
}

.special-features {
    display: grid;
    gap: 6rem;
    margin-bottom: 10rem;
}

.special-feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-smooth);
}

.special-feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.special-feature-item:nth-child(even) {
    direction: rtl;
}

.special-feature-item:nth-child(even) .special-feature-content {
    direction: ltr;
}

.special-feature-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: var(--gold-border);
}

.special-feature-image img {
    width: 100%;
    display: block;
    transition: transform 0.8s ease;
}

.special-feature-image:hover img {
    transform: scale(1.05);
}

.special-feature-icon {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--color-gold-primary);
    font-size: 2.4rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.special-feature-title {
    font-size: 3.2rem;
    color: var(--color-text-main);
    margin-bottom: 2rem;
}

.special-feature-description {
    color: var(--color-text-muted);
    font-size: 1.8rem;
    line-height: 1.8;
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.feature-item {
    background: var(--gradient-glass);
    border: var(--glass-border);
    padding: 4rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent 70%);
    opacity: 0;
    transition: var(--transition-fast);
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-glow);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 4rem;
    color: var(--color-gold-primary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.feature-title {
    font-size: 2.4rem;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-description {
    color: var(--color-text-muted);
    font-size: 1.6rem;
    position: relative;
    z-index: 1;
}

/* Videos Section */
.videos-section {
    padding: 10rem 0;
    background: linear-gradient(to bottom, var(--color-bg-depth), #0f0f0f, var(--color-bg-depth));
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.video-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: var(--glass-border);
    transition: var(--transition-fast);
    background: #000;
    cursor: pointer;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--color-gold-primary);
}

.video-item:focus-visible {
    outline: 2px solid var(--color-gold-primary);
    outline-offset: 3px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.video-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.8;
}

.video-item:hover .video-wrapper img {
    transform: scale(1.05);
    opacity: 0.6;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-fast);
}

.video-play-btn i {
    color: #fff;
    font-size: 2rem;
    margin-left: 3px;
}

.video-item:hover .video-play-btn {
    background: var(--color-gold-primary);
    border-color: var(--color-gold-primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 2rem;
    text-align: center;
    background: var(--color-bg-surface);
}

.video-title {
    font-size: 1.8rem;
    color: var(--color-text-main);
}

/* Download Section */
.download-section {
    padding: 10rem 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.download-title {
    font-size: 5rem;
    color: var(--color-gold-primary);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.download-description {
    font-size: 2rem;
    color: var(--color-text-muted);
    margin-bottom: 6rem;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2.8rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 4rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    transition: var(--transition-fast);
    min-width: 300px;
    backdrop-filter: blur(10px);
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-gold-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.download-btn i {
    font-size: 4rem;
}

.ios-btn i {
    color: #fff;
}

.android-btn i {
    color: var(--color-success);
}

.btn-text {
    text-align: left;
}

.btn-main {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.2;
}

.btn-sub {
    font-size: 1.4rem;
    color: var(--color-text-muted);
}

.download-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
    margin: 0 auto 2rem;
    max-width: 980px;
}

.download-meta-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    padding: 1.8rem;
}

.meta-label {
    display: block;
    font-size: 1.2rem;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.meta-value {
    display: block;
    font-size: 1.8rem;
    color: var(--color-text-main);
    font-weight: 700;
}

.download-note {
    color: var(--color-text-muted);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.release-notes-link {
    color: var(--color-gold-light);
    font-size: 1.5rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    padding-bottom: 0.3rem;
}

.release-notes-link:hover {
    color: var(--color-gold-primary);
    border-bottom-color: var(--color-gold-primary);
}

/* Article/News Styles */
.news-section {
    margin-top: 10rem;
    text-align: left;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.14);
    background:
        radial-gradient(circle at right top, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0) 45%),
        rgba(10, 10, 10, 0.8);
    padding: 3.2rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), var(--shadow-sm);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.6rem;
    margin-bottom: 2.4rem;
}

.news-kicker {
    display: inline-block;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--color-gold-light);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.news-title {
    font-size: clamp(2.8rem, 3.4vw, 4rem);
    line-height: 1.12;
    letter-spacing: 1px;
    margin: 0;
    color: #fff;
}

.news-subtitle {
    margin-top: 0.8rem;
    color: var(--color-text-muted);
    font-size: 1.5rem;
}

.news-stat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    color: var(--color-gold-light);
    background: rgba(212, 175, 55, 0.08);
    font-size: 1.3rem;
    white-space: nowrap;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.news-item {
    display: flex;
    gap: 1.8rem;
    padding: 2.2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 18px;
    text-decoration: none;
    transition: var(--transition-fast);
    min-height: 16.4rem;
    position: relative;
    overflow: hidden;
}

.news-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0) 45%);
    opacity: 0;
    transition: var(--transition-fast);
    pointer-events: none;
}

.news-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-gold-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.news-item:hover::after {
    opacity: 1;
}

.news-icon {
    width: 4.8rem;
    height: 4.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 4.8rem;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold-primary);
    font-size: 1.9rem;
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.18);
}

.news-content {
    flex: 1;
}

.news-meta-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.9rem;
    flex-wrap: wrap;
}

.news-tag {
    display: inline-block;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gold-primary);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
}

.news-readtime {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.55);
}

.news-headline {
    color: var(--color-text-main);
    font-size: 1.92rem;
    margin-bottom: 0.7rem;
    font-weight: 700;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    overflow-wrap: anywhere;
}

.news-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

/* Footer */
.footer-section {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    background: #000;
}

.footer-logo img {
    height: 5.5rem;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.15));
    transition: var(--transition-fast);
}

.footer-logo:hover img {
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
}

.footer-copyright {
    color: var(--color-text-muted);
    font-size: 1.4rem;
    margin-top: 2rem;
}

.copy-helper {
    position: fixed;
    top: -1000px;
    left: -1000px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.not-found-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-depth);
    color: var(--color-text-main);
    font-family: var(--font-main);
    margin: 0;
}

.not-found-page .nf-wrap {
    text-align: center;
    padding: 4rem 2rem;
}

.not-found-page .nf-code {
    font-size: 8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin: 0;
}

.not-found-page .nf-title {
    font-size: 2.2rem;
    margin: 1.2rem 0 0.6rem;
}

.not-found-page .nf-text {
    opacity: 0.82;
    margin: 0 0 2rem;
    line-height: 1.7;
}

.not-found-page .nf-btn {
    display: inline-block;
    padding: 1.2rem 2.2rem;
    border-radius: 999px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-weight: 700;
}

/* Animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    background: black;
    border-radius: 12px;
    overflow: hidden;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.modal-video-player {
    width: 100%;
    height: 100%;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    background: transparent;
    border: none;
}

/* Mobile Responsive */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background: var(--color-gold-primary);
    transition: var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 992px) {
    html {
        font-size: 55%;
    }

    /* Mobile Header Polish */
    .header-area {
        height: 70px;
        /* Slimmer header on mobile */
        background: rgba(5, 5, 5, 0.95);
        /* More solid background */
        backdrop-filter: blur(20px);
    }

    .logo img {
        height: 3.5rem;
        /* adjusted for mobile */
    }

    .mobile-menu-btn {
        display: flex;
        width: 40px;
        height: 40px;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        border: 1px solid rgba(212, 175, 55, 0.2);
        background: rgba(212, 175, 55, 0.05);
        transition: var(--transition-fast);
    }

    .mobile-menu-btn:active {
        background: rgba(212, 175, 55, 0.15);
        transform: scale(0.95);
    }

    .mobile-menu-btn span {
        width: 20px;
        left: 0;
        /* reset positioning logic if needed */
    }

    .main-nav {
        position: fixed;
        top: 70px;
        /* Match header height */
        right: -100%;
        width: 100%;
        height: calc(100dvh - 70px);
        min-height: calc(100vh - 70px);
        background: linear-gradient(180deg, rgba(5, 5, 5, 0.98) 0%, rgba(10, 10, 10, 1) 100%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 4rem;
        padding-bottom: 3rem;
        transition: var(--transition-smooth);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
    }

    .main-nav a {
        font-size: 2.5rem;
    }

    .special-feature-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr !important;
    }

    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .special-feature-content {
        direction: ltr !important;
        text-align: left;
    }

    .banner-title {
        font-size: 5rem;
    }

    .domain-section {
        margin-top: -28px;
    }

    .banner-subtitle {
        font-size: 2.2rem;
        margin-bottom: 2.6rem;
    }

    .banner-proof {
        font-size: 1.5rem;
        margin-bottom: 2.4rem;
    }

    .download-meta-grid {
        grid-template-columns: 1fr;
    }

    .news-meta-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-section {
        padding: 2.4rem;
    }

    .news-header {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .news-title {
        font-size: clamp(2.4rem, 7vw, 3.2rem);
    }

    .news-subtitle {
        font-size: 1.4rem;
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 50%;
    }
}

@media (max-width: 576px) {
    .banner-section {
        min-height: 580px;
    }

    .banner-content {
        transform: translate(-50%, -42%);
    }

    .banner-kicker {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .banner-title {
        font-size: 4rem;
        letter-spacing: 3px;
    }

    .banner-cta,
    .banner-cta-secondary {
        width: 100%;
        max-width: 320px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .domain-section {
        margin-top: 0;
    }

    .download-btn {
        min-width: 100%;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .video-modal-content {
        width: 94%;
        border-radius: 10px;
    }
}

@media (max-width: 430px) {
    .banner-section {
        min-height: 560px;
    }

    .banner-title {
        font-size: 3.6rem;
        letter-spacing: 2px;
        margin-bottom: 1.2rem;
    }

    .banner-subtitle {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin-bottom: 1.6rem;
    }

    .banner-proof {
        font-size: 1.35rem;
        margin-bottom: 1.8rem;
    }

    .banner-actions {
        gap: 1rem;
    }

    .banner-cta,
    .banner-cta-secondary {
        max-width: 300px;
        padding: 1.4rem 2rem;
        font-size: 1.5rem;
    }

    .download-description {
        font-size: 1.7rem;
        margin-bottom: 3.6rem;
    }

    .news-item {
        padding: 1.6rem;
    }

    .news-section {
        padding: 1.8rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .banner-title,
    .banner-subtitle,
    .banner-kicker,
    .banner-proof,
    .banner-cta,
    .banner-cta-secondary {
        opacity: 1;
        transform: none;
    }
}

#MICHAT-MINI-WRAP::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 24px;
    background: #fff;
    z-index: 2147483647;
    pointer-events: none;
}
