﻿/* ============================================================
   HIROSHIMA — MAIN STYLESHEET
   Theme: Dark Valorant-inspired with glassmorphism
============================================================ */

/* ── CSS Variables ── */
:root {
    --bg-primary: #0a0e17;
    --bg-secondary: #0f1923;
    --bg-card: rgba(15, 25, 35, 0.6);
    --text-primary: #ece8e1;
    --text-secondary: #8892a0;
    --text-muted: #4a5568;
    --accent-red: #fd4556;
    --accent-dark-red: #bd3944;
    --accent-teal: #17ecd2;
    --accent-gold: #ffcc00;
    --glass-bg: rgba(15, 25, 35, 0.55);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: 20px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* ============================================================
   NAVBAR
============================================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 40px;
    transition: background var(--transition-fast), box-shadow var(--transition-fast), padding var(--transition-fast);
}

#navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 23, 0.4);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--glass-border);
    transition: background var(--transition-fast);
    z-index: -1;
}

#navbar.scrolled::before {
    background: rgba(10, 14, 23, 0.85);
    border-bottom-color: rgba(253, 69, 86, 0.15);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height var(--transition-fast);
}

#navbar.scrolled .nav-inner {
    height: 64px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Teko', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-red);
    transition: transform var(--transition-fast);
}

.nav-brand:hover {
    transform: scale(1.03);
}

.brand-icon {
    font-size: 1rem;
    animation: rotateDiamond 8s linear infinite;
}

@keyframes rotateDiamond {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(90deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(270deg);
    }
}

.brand-text {
    background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    position: relative;
    padding: 8px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

.nav-link.active {
    color: var(--accent-red);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent-red);
    border-radius: 1px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta {
    padding: 10px 28px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-dark-red) 100%);
    color: #fff;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(253, 69, 86, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(253, 69, 86, 0.45);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5px) translateX(5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* User Dropdown Menu */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-dropdown-btn {
    background: transparent;
    border: 1px solid rgba(253, 69, 86, 0.2);
    border-radius: 4px;
    padding: 8px 16px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.user-dropdown-btn:hover, .user-dropdown-btn.active {
    background: rgba(253, 69, 86, 0.05);
    border-color: rgba(253, 69, 86, 0.5);
}

.user-dropdown-btn .balance-badge {
    background: rgba(253, 69, 86, 0.15);
    color: var(--accent-red);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
}

.user-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 10px;
    background: #0e0e14;
    min-width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow: hidden;
    animation: dropdownFadeIn 0.2s ease;
}

.user-dropdown-content.show {
    display: block;
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.user-dropdown-content a {
    color: var(--text-secondary);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.user-dropdown-content a:last-child {
    border-bottom: none;
}

.user-dropdown-content a:hover {
    background: rgba(253, 69, 86, 0.08);
    color: var(--text-primary);
    padding-left: 20px;
}

.user-dropdown-content a.logout {
    color: #ff6666;
}
.user-dropdown-content a.logout:hover {
    background: rgba(255, 60, 60, 0.15);
}

.user-dropdown-header {
    padding: 12px 16px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.user-dropdown-header .username {
    display: block;
    font-family: 'Teko', sans-serif;
    font-size: 1.3rem;
    color: var(--text-primary);
    line-height: 1;
}
.user-dropdown-header .role {
    font-size: 0.7rem;
    color: var(--accent-red);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 4px;
    display: inline-block;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 14, 23, 0.96);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-list {
    text-align: center;
}

.mobile-nav-link {
    display: block;
    padding: 18px 0;
    font-family: 'Teko', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--accent-red);
    transform: scale(1.05);
}

/* ============================================================
   SECTIONS — Common
============================================================ */
.section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 120px 40px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 16px;
}

.section-label.center {
    justify-content: center;
    width: 100%;
}

.label-line {
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--accent-red);
}

.section-title {
    font-family: 'Teko', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.section-title.center {
    text-align: center;
}

.accent-dot {
    color: var(--accent-red);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 60px;
}

.section-header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 40px;
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    background: url('../assets/bg.png') center/cover no-repeat;
    opacity: 0.35;
    filter: brightness(0.6) saturate(1.4);
    animation: heroBgZoom 30s ease-in-out infinite alternate;
}

@keyframes heroBgZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.hero-bg-layer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 14, 23, 0.4) 0%,
            rgba(10, 14, 23, 0.1) 30%,
            rgba(10, 14, 23, 0.6) 70%,
            var(--bg-primary) 100%);
}

/* Animated grid overlay */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(253, 69, 86, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(253, 69, 86, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    animation: gridShift 20s linear infinite;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
}

@keyframes gridShift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 60px 60px;
    }
}

/* Floating glowing orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(253, 69, 86, 0.15) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(23, 236, 210, 0.08) 0%, transparent 70%);
    bottom: 10%;
    left: -5%;
    animation: orbFloat2 15s ease-in-out infinite;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(253, 69, 86, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(-30px, 40px);
    }

    66% {
        transform: translate(20px, -20px);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(40px, -30px);
    }

    66% {
        transform: translate(-20px, 20px);
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.6;
    }
}

/* Scanline effect */
.hero-scanline {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-scanline::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(253, 69, 86, 0.15), transparent);
    top: -2px;
    animation: scanMove 6s ease-in-out infinite;
}

@keyframes scanMove {
    0% {
        top: -2px;
    }

    100% {
        top: 100%;
    }
}

/* Vignette */
.hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, rgba(10, 14, 23, 0.7) 100%);
}

/* Corner decorations */
.hero-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 3;
    pointer-events: none;
    opacity: 0.25;
}

.hero-corner-tl {
    top: 30px;
    left: 30px;
    border-top: 2px solid var(--accent-red);
    border-left: 2px solid var(--accent-red);
}

.hero-corner-tr {
    top: 30px;
    right: 30px;
    border-top: 2px solid var(--accent-red);
    border-right: 2px solid var(--accent-red);
}

.hero-corner-bl {
    bottom: 30px;
    left: 30px;
    border-bottom: 2px solid var(--accent-red);
    border-left: 2px solid var(--accent-red);
}

.hero-corner-br {
    bottom: 30px;
    right: 30px;
    border-bottom: 2px solid var(--accent-red);
    border-right: 2px solid var(--accent-red);
}

/* Side branding text */
.hero-side-text {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center center;
    font-family: 'Teko', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(253, 69, 86, 0.2);
    z-index: 3;
    pointer-events: none;
    white-space: nowrap;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 850px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(253, 69, 86, 0.1);
    border: 1px solid rgba(253, 69, 86, 0.25);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease 0.2s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.hero-title {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 24px;
}

.hero-line {
    display: block;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.hero-line-1 {
    font-size: clamp(3.5rem, 9vw, 7rem);
    color: var(--text-primary);
    animation: fadeInDown 0.8s ease 0.35s both;
}

.hero-line-2 {
    font-size: clamp(4.5rem, 12vw, 9rem);
    background: linear-gradient(135deg, var(--accent-red) 0%, #ff8a94 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInDown 0.8s ease 0.5s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInDown 0.8s ease 0.65s both;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    animation: fadeInDown 0.8s ease 0.8s both;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-dark-red) 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(253, 69, 86, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(253, 69, 86, 0.5);
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.btn-play {
    font-size: 0.65rem;
}

.btn-arrow {
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    animation: fadeInDown 0.8s ease 0.95s both;
}

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

.stat-number {
    font-family: 'Teko', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-suffix {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-red);
}

.stat-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
    animation: fadeInDown 0.8s ease 1.1s both;
}

.hero-scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-red), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.about-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    position: relative;
    overflow: visible;
    z-index: 1;
    padding-bottom: 0;
}

/* Diagonal bottom slice */
.about-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 200px;
    background: var(--bg-primary);
    clip-path: polygon(0 70%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 3;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding-bottom: 180px;
}

.about-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 22px;
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
}

.feature-item:hover {
    border-color: rgba(253, 69, 86, 0.2);
    background: rgba(253, 69, 86, 0.05);
    transform: translateX(6px);
}

.feature-icon {
    font-size: 1.2rem;
    color: var(--accent-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* About Right — Image */
.about-right {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
    position: relative;
    z-index: 2; /* Put behind the diagonal bottom slice (which is z-index 3) */
}

.about-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-image-wrapper {
    position: relative;
    width: 75%;
    max-width: 500px;
    margin-top: -60px;
    margin-bottom: -150px;
}

.about-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.image-glow {
    display: none;
}

.image-frame {
    display: none;
}

@keyframes framePulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}

/* ============================================================
   MEDIA SECTION
============================================================ */
.media-section {
    background: var(--bg-primary);
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.media-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--bg-card);
    transition: all var(--transition-smooth);
}

.media-card:hover {
    border-color: rgba(253, 69, 86, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.media-card-large {
    grid-column: 1 / -1;
    height: 420px;
}

.media-card-small {
    height: 280px;
}

.media-video-wrapper {
    position: absolute;
    inset: 0;
}

.media-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.media-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(10, 14, 23, 0.95) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.media-tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--accent-red);
    color: #fff;
    border-radius: 4px;
    margin-bottom: 10px;
}

.media-card-overlay h3 {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.media-card-overlay p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ============================================================
   REVIEWS SECTION
============================================================ */
.reviews-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.reviews-track-wrapper {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.reviews-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card {
    min-width: 100%;
    padding: 50px 60px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.review-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
}

.review-star {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.review-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: 30px;
    font-style: italic;
}

.review-text::before {
    content: '"';
    font-family: 'Teko', sans-serif;
    font-size: 4rem;
    color: var(--accent-red);
    opacity: 0.4;
    line-height: 0;
    display: block;
    margin-bottom: 10px;
}

.review-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.review-author-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.review-author-role {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-red);
    font-weight: 600;
}

.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.review-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-primary);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.review-arrow:hover {
    background: rgba(253, 69, 86, 0.15);
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.reviews-dots {
    display: flex;
    gap: 8px;
}

.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.review-dot.active {
    background: var(--accent-red);
    transform: scale(1.3);
}

/* ============================================================
   PRODUCTS / PRICING SECTION
============================================================ */
.products-section {
    background: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-inner {
    height: 100%;
    padding: 40px 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
}

.pricing-card.popular .pricing-card-inner {
    border-color: rgba(253, 69, 86, 0.3);
    background: rgba(253, 69, 86, 0.05);
}

.pricing-card.lifetime .pricing-card-inner {
    border-color: rgba(255, 204, 0, 0.2);
    background: rgba(255, 204, 0, 0.03);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-dark-red) 100%);
    color: #fff;
    z-index: 2;
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-tier {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.pricing-tier.lifetime-tier {
    color: var(--accent-gold);
}

.pricing-name {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 6px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--glass-border);
}

.pricing-currency {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-muted);
}

.pricing-value {
    font-family: 'Teko', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
}

.pricing-card.popular .pricing-value {
    color: var(--accent-red);
}

.pricing-card.lifetime .pricing-value {
    color: var(--accent-gold);
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.pricing-features {
    flex: 1;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.check {
    color: var(--accent-teal);
    font-weight: 700;
    font-size: 0.9rem;
}

.check.gold {
    color: var(--accent-gold);
}

.check.dim {
    color: var(--text-muted);
    opacity: 0.4;
}

.dim {
    opacity: 0.4;
}

/* Card Buttons */
.btn-outline-card,
.btn-primary-card,
.btn-gold-card {
    width: 100%;
    padding: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-outline-card {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-outline-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary-card {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-dark-red) 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(253, 69, 86, 0.3);
}

.btn-primary-card:hover {
    box-shadow: 0 8px 30px rgba(253, 69, 86, 0.5);
    transform: translateY(-2px);
}

.btn-gold-card {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #e6b800 100%);
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(255, 204, 0, 0.2);
}

.btn-gold-card:hover {
    box-shadow: 0 8px 30px rgba(255, 204, 0, 0.4);
    transform: translateY(-2px);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 40px;
    background: rgba(10, 14, 23, 0.8);
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Teko', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-red);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-right {
        order: -1;
    }

    .about-image-wrapper {
        max-width: 450px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .hero-line-1 {
        font-size: 3.5rem;
    }

    .hero-line-2 {
        font-size: 5rem;
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    #navbar {
        padding: 0 20px;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero-section {
        padding: 0 20px;
    }

    .section-container {
        padding: 80px 20px;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .media-card-large {
        height: 280px;
    }

    .media-card-small {
        height: 220px;
    }

    .review-card {
        padding: 30px 24px;
    }

    .review-text {
        font-size: 1rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-line-1 {
        font-size: 2.5rem;
    }

    .hero-line-2 {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}