/* ============================================
   Tower Rush 5 - Minimalist Luxury Theme
   Premium design: clean, elegant, gold accents
   ============================================ */

/* --- Font Faces (Self-hosted) --- */
@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Orbitron';
    src: url('/fonts/Orbitron-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Orbitron';
    src: url('/fonts/Orbitron-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Orbitron';
    src: url('/fonts/Orbitron-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* --- CSS Variables --- */
:root {
    --color-bg: #fafafa;
    --color-bg-alt: #f5f5f0;
    --color-bg-white: #ffffff;
    --color-dark: #1a1a1a;
    --color-dark-soft: #2a2a2a;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-gold: #c9a84c;
    --color-gold-light: #d4af37;
    --color-gold-dark: #a8893a;
    --color-gold-pale: rgba(201, 168, 76, 0.08);
    --color-border: #e5e5e5;
    --color-border-light: #f0f0f0;
    --color-success: #4a7c59;
    --color-error: #c0392b;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Orbitron', 'Inter', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
    --max-width-narrow: 800px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.75;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

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

a {
    color: var(--color-gold-dark);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-gold);
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: var(--max-width-narrow);
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.2;
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    margin-bottom: 32px;
    position: relative;
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-bottom: 16px;
    font-weight: 600;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    color: var(--color-dark);
    box-shadow: 0 6px 28px rgba(201, 168, 76, 0.25);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--color-dark);
    border: 1px solid var(--color-dark);
}

.btn-outline:hover {
    background: var(--color-dark);
    color: var(--color-bg-white);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 16px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 250, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border-light);
    transition: all var(--transition);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-sm);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    color: var(--color-gold);
    font-size: 20px;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.main-nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color var(--transition);
    text-decoration: none;
}

.main-nav a:hover {
    color: var(--color-gold);
}

.header-cta {
    padding: 10px 24px;
    background: var(--color-gold);
    color: var(--color-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition);
}

.header-cta:hover {
    background: var(--color-gold-light);
    color: var(--color-dark);
    box-shadow: var(--shadow-gold);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-dark);
    transition: all var(--transition);
}

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

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

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

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 140px 0 80px;
    background: var(--color-bg-white);
    border-bottom: 1px solid var(--color-border-light);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.hero h1 {
    color: var(--color-dark);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: var(--color-border);
    font-size: 18px;
}

.star.filled {
    color: var(--color-gold);
}

.star.half {
    color: var(--color-gold);
    opacity: 0.5;
}

.rating-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-dark);
}

.rating-count {
    font-size: 13px;
    color: var(--color-text-muted);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 80px;
    height: 80px;
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-sm);
    z-index: -1;
    opacity: 0.4;
}

/* ============================================
   RATING BANNER
   ============================================ */
.rating-banner {
    padding: 32px 0;
    background: var(--color-dark);
}

.editorial-note {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    text-align: center;
    line-height: 1.7;
}

.editorial-note strong {
    color: var(--color-gold);
}

/* ============================================
   INFO TABLE
   ============================================ */
.info-table-section {
    padding: 80px 0;
    background: var(--color-bg-white);
}

.info-table-section h2 {
    text-align: center;
}

.info-table {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.info-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    border-bottom: 1px solid var(--color-border-light);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    padding: 16px 24px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    background: var(--color-bg-alt);
    border-right: 1px solid var(--color-border-light);
}

.info-value {
    padding: 16px 24px;
    font-size: 15px;
    color: var(--color-dark);
    font-weight: 500;
}

/* ============================================
   GAME SECTION
   ============================================ */
.game-section {
    padding: 80px 0;
    background: var(--color-dark);
    text-align: center;
}

.game-section h2 {
    color: var(--color-bg-white);
}

.game-section .section-intro {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    font-size: 16px;
}

.game-wrapper {
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 0 60px rgba(201, 168, 76, 0.08);
    background: #111;
}

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

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
    padding: 80px 0;
}

.content-section.section-dark {
    background: var(--color-dark);
}

.content-section.section-dark h2,
.content-section.section-dark h3 {
    color: var(--color-bg-white);
}

.content-section.section-dark p,
.content-section.section-dark .section-intro {
    color: rgba(255, 255, 255, 0.75);
}

.content-section.section-dark .note {
    color: rgba(255, 255, 255, 0.5);
    border-left-color: var(--color-gold);
}

.content-section.section-light {
    background: var(--color-bg-alt);
}

.section-intro {
    font-size: 17px;
    color: var(--color-text-light);
    margin-bottom: 48px;
    line-height: 1.8;
}

.content-block {
    margin-bottom: 32px;
}

.content-block p {
    margin-bottom: 20px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-image {
    margin: 40px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.content-image img {
    width: 100%;
    object-fit: cover;
}

.note {
    font-size: 14px;
    color: var(--color-text-muted);
    font-style: italic;
    border-left: 2px solid var(--color-gold);
    padding-left: 16px;
    margin-top: 16px;
}

/* ============================================
   BONUS CARDS
   ============================================ */
.bonus-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 40px;
    margin-bottom: 32px;
    transition: all var(--transition);
}

.bonus-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.05);
}

.bonus-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.bonus-icon {
    font-size: 28px;
    color: var(--color-gold);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.bonus-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.bonus-card p:last-child {
    margin-bottom: 0;
}

.example-box {
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin: 20px 0;
}

.example-box p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-size: 15px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 64px 0;
    background: var(--color-bg-white);
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 12px;
}

.cta-content p {
    color: var(--color-text-light);
    margin-bottom: 32px;
    font-size: 16px;
}

/* ============================================
   PHASES GRID
   ============================================ */
.phases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.phase-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
}

.phase-card:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.phase-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.phase-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.phase-duration {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.phase-card p:last-child {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   DEVICES GRID
   ============================================ */
.devices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.device-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
}

.device-card:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-md);
}

.device-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 20px;
    opacity: 0.8;
}

.device-card p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   ERRORS LIST
   ============================================ */
.errors-list {
    max-width: 700px;
}

.error-item {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--color-border);
}

.error-item:last-child {
    border-bottom: none;
}

.error-number {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-gold);
    flex-shrink: 0;
    width: 40px;
    text-align: center;
    line-height: 1.4;
}

.error-item h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.error-item p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: all var(--transition);
}

.testimonial-card:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-md);
}

.testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.testimonial-rating {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.testimonial-card blockquote {
    font-size: 15px;
    line-height: 1.75;
    color: var(--color-text);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ============================================
   RESPONSIBLE GAMING
   ============================================ */
.responsible-section {
    padding: 60px 0;
    background: var(--color-dark);
    text-align: center;
}

.responsible-section h2 {
    color: var(--color-bg-white);
    margin-bottom: 24px;
}

.responsible-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    font-size: 15px;
}

.helpline {
    margin-top: 24px;
    font-size: 17px;
}

.helpline strong {
    color: var(--color-gold);
}

.helpline a {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 700px;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    transition: color var(--transition);
    gap: 16px;
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-icon {
    font-size: 20px;
    font-weight: 300;
    color: var(--color-gold);
    flex-shrink: 0;
    transition: transform var(--transition);
    width: 24px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.75;
}

/* ============================================
   VERDICT
   ============================================ */
.verdict-section {
    padding: 80px 0;
    background: var(--color-bg-white);
    text-align: center;
}

.verdict-card {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 60px 48px;
}

.verdict-card h2 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.verdict-score {
    margin-bottom: 40px;
}

.score-number {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.score-max {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-text-muted);
}

.verdict-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 20px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.verdict-card .btn {
    margin-top: 24px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    padding: 48px 0 32px;
    background: var(--color-dark);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand .logo-icon {
    color: var(--color-gold);
    font-size: 18px;
}

.footer-brand .logo-text {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-bg-white);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-nav {
    display: flex;
    gap: 28px;
}

.footer-nav a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-helpline {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.footer-helpline a {
    color: var(--color-gold);
}

.footer-copy {
    margin-top: 16px;
    font-size: 12px;
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 250, 250, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 999;
    padding: 40px 24px;
}

.mobile-nav-overlay.active {
    display: block;
}

.mobile-nav-overlay ul {
    list-style: none;
    text-align: center;
}

.mobile-nav-overlay li {
    margin-bottom: 8px;
}

.mobile-nav-overlay a {
    display: block;
    padding: 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px solid var(--color-border-light);
    transition: color var(--transition);
}

.mobile-nav-overlay a:hover {
    color: var(--color-gold);
}

.mobile-nav-overlay .mobile-cta {
    display: block;
    margin-top: 24px;
    padding: 16px 32px;
    background: var(--color-gold);
    color: var(--color-dark);
    font-weight: 700;
    text-align: center;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: none;
}

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

    .hero-image {
        max-width: 600px;
    }

    .hero-image::before {
        display: none;
    }

    .phases-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .devices-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

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

    .testimonial-card:last-child {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .main-nav,
    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 110px 0 60px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .btn {
        text-align: center;
    }

    .content-section {
        padding: 60px 0;
    }

    .info-row {
        grid-template-columns: 1fr;
    }

    .info-label {
        border-right: none;
        border-bottom: 1px solid var(--color-border-light);
        padding: 12px 20px;
    }

    .info-value {
        padding: 12px 20px;
    }

    .bonus-card {
        padding: 28px 20px;
    }

    .footer-top {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .verdict-card {
        padding: 40px 24px;
    }

    .score-number {
        font-size: 48px;
    }

    .error-item {
        gap: 16px;
    }

    .game-wrapper {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .btn-lg {
        padding: 14px 32px;
    }

    .phase-card,
    .device-card {
        padding: 28px 20px;
    }

    .testimonial-card {
        padding: 24px;
    }
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gold underline accent for headings */
.content-section h2::after,
.info-table-section h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--color-gold);
    margin-top: 16px;
}

.content-section.section-dark h2::after {
    background: var(--color-gold);
    opacity: 0.6;
}

.game-section h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--color-gold);
    margin: 16px auto 0;
}

.info-table-section h2::after {
    margin-left: auto;
    margin-right: auto;
}

/* Smooth scroll offset for fixed header */
:target {
    scroll-margin-top: 88px;
}

/* Selection color */
::selection {
    background: var(--color-gold-pale);
    color: var(--color-dark);
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .site-header,
    .game-section,
    .cta-banner,
    .mobile-toggle {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
}