/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #de2f2f;
    --secondary-color: #000000;
    --dark-bg: #ffffff;
    --darker-bg: #fbfbfd;
    --light-text: #1d1d1f;
    --gray-text: #6e6e73;
    --card-bg: #ffffff;
    --accent-gradient: linear-gradient(135deg, #de2f2f 0%, #b82828 100%);
    --black-gradient: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
}

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

/* Override browser default link colors immediately */
a:link, a:visited, a:hover, a:active {
    color: inherit;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    /* No longer needs absolute positioning */
}

.logo-image {
    width: 209px;
    height: 124px;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--light-text) !important;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    position: relative;
    padding: 12px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color) !important;
    text-shadow: 0 0 15px rgba(222, 47, 47, 0.5);
    background: none;
}

/* Active navigation state */
.nav-menu a.active {
    color: var(--primary-color) !important;
}

.nav-menu a.active:hover {
    color: var(--primary-color) !important;
}

.nav-menu a.active {
    color: var(--primary-color) !important;
    text-shadow: 0 0 10px rgba(222, 47, 47, 0.3);
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    transition: all 0.3s ease;
}

/* ============================================
   COMPACT NAVBAR (EA-STYLE)
   ============================================ */

.navbar-compact {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    height: 80px;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar-compact .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
}

.navbar-compact .nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar-compact .logo {
    flex-shrink: 0;
    width: 200px;
}

.navbar-compact .nav-right {
    flex-shrink: 0;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.navbar-compact .logo-image {
    height: 48px;
    width: auto;
    display: block;
    transition: opacity 0.2s ease;
}

.navbar-compact .logo a:hover .logo-image {
    opacity: 1;
}

.navbar-compact .nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0 auto;
    padding: 0;
    justify-content: center;
}

.navbar-compact .nav-item {
    position: relative;
}

.navbar-compact .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    color: #1a1a1a !important;
    text-decoration: none !important;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.navbar-compact .nav-link:hover {
    background: rgba(222, 47, 47, 0.08);
    color: var(--primary-color) !important;
}

.navbar-compact .nav-link .dropdown-arrow {
    width: 10px;
    height: 10px;
    border: none;
    transition: transform 0.2s ease;
}

.navbar-compact .nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.navbar-compact .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar-compact .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-compact .dropdown-category {
    padding: 8px 20px 6px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
}

.navbar-compact .dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #333 !important;
    text-decoration: none !important;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    transition: all 0.15s ease;
}

.navbar-compact .dropdown-item:hover {
    background: linear-gradient(90deg, rgba(222, 47, 47, 0.1) 0%, rgba(222, 47, 47, 0.02) 100%);
    color: var(--primary-color) !important;
    padding-left: 24px;
}

.navbar-compact .dropdown-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 8px 16px;
}

.navbar-compact .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.navbar-compact .mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
    display: block;
    transform-origin: center;
    border-radius: 1px;
}

.navbar-compact .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-compact .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.navbar-compact .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

body.mobile-menu-open {
    overflow: hidden;
}

/* Hide old navbar */
.navbar {
    display: none !important;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    position: relative;
    text-decoration: none;
    display: inline-block;
}

a.btn-primary,
a.btn-primary:hover,
a.btn-primary:visited,
.game-footer a.btn-primary,
.game-footer a.btn-primary:hover,
.game-footer a.btn-primary:visited {
    color: white !important;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 4px;
    padding: 2px;
    background: var(--accent-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(222, 47, 47, 0.5), 0 0 40px rgba(222, 47, 47, 0.3);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: rgba(222, 47, 47, 0.05);
    color: var(--primary-color);
}

.btn-large {
    padding: 18px 45px;
    font-size: 16px;
}

/* Carousel Section */
.carousel-section {
    position: relative;
    width: 100%;
    margin-top: 80px;
    background: #ffffff;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.carousel-slide-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    cursor: pointer;
}

.carousel-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.carousel-background {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    position: relative;
    z-index: 2;
    background: none;
}

.carousel-content {
    max-width: 800px;
    z-index: 2;
    animation: slideInLeft 0.8s ease-out;
}

.carousel-slide.active .carousel-content {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-subtitle {
    font-size: 14px;
    color: white;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-left: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.carousel-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 2px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.carousel-title {
    font-size: 88px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 25px;
    color: white;
    letter-spacing: -1px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.carousel-description {
    font-size: 20px;
    color: white;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.carousel-content-christmas .carousel-title {
    font-size: 52px;
}

.carousel-content-ipad {
    margin-top: -80px;
}

.carousel-content-ipad .carousel-buttons {
    margin-top:20px;
}

.christmas-poem {
    font-size: 16px;
    line-height: 1.8;
    color: white;
    margin-bottom: 30px;
    max-width: 600px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    font-style: italic;
}

.christmas-poem p {
    margin-bottom: 20px;
}

.btn-with-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.button-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.carousel-content-christmas .btn-primary {
    background: #000000;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.carousel-content-christmas .btn-primary::before {
    display: none;
}

.carousel-content-christmas .btn-primary:hover {
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.4);
}

.carousel-buttons {
    display: flex;
    gap: 15px;
}

.carousel-buttons-stacked {
    flex-direction: column;
    align-items: flex-start;
}

.carousel-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--light-text);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.carousel-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--light-text);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.carousel-visual {
    display: none;
}

.carousel-app-icon {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.app-icon-glow {
    width: 256px;
    height: 256px;
    border-radius: 60px;
    box-shadow: 
        0 0 40px rgba(255, 255, 255, 0.6),
        0 0 80px rgba(255, 255, 255, 0.5),
        0 0 120px rgba(255, 255, 255, 0.3),
        0 10px 60px rgba(0, 0, 0, 0.3);
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--light-text);
    backdrop-filter: blur(10px);
}

.carousel-arrow:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-left {
    left: 30px;
}

.carousel-arrow-right {
    right: 30px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(0, 0, 0, 0.4);
}

.carousel-dot.active {
    background: rgba(0, 0, 0, 0.7);
    width: 24px;
    border-radius: 4px;
}

/* Apple-Style Carousel Slide */
.carousel-slide-apple .carousel-background-image {
    background-position: top center;
}

.carousel-slide-apple .carousel-overlay {
    background: none;
}

.carousel-content-apple {
    text-align: center;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: flex-start;
    padding-top: 40px;
}

.carousel-slide.active .carousel-content-apple {
    animation: fadeInUp 0.8s ease-out;
}

.carousel-title-apple {
    font-family: 'Rajdhani', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    color: #1d1d1f;
    letter-spacing: -0.5px;
    text-transform: none;
    margin-bottom: 10px;
    white-space: nowrap;
}

.carousel-subtitle-row-apple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.carousel-description-apple {
    font-family: 'Roboto', sans-serif;
    font-size: 21px;
    color: #86868b;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

.mac-app-store-badge {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.mac-app-store-badge:hover {
    opacity: 0.8;
}

.mac-app-store-badge img {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Spider-Style Carousel Slide */
.carousel-slide-spider .carousel-overlay {
    background: none;
}

.carousel-content-spider {
    text-align: left;
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 40px;
}

.carousel-slide.active .carousel-content-spider {
    animation: fadeInUp 0.8s ease-out;
}

.carousel-title-spider {
    font-family: 'Rajdhani', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    letter-spacing: -0.5px;
    text-transform: none;
    margin-bottom: 10px;
    max-width: 500px;
}

.carousel-description-spider {
    font-family: 'Roboto', sans-serif;
    font-size: 21px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

.carousel-content-spider .app-store-badge img {
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    border-radius: 7px;
}

.carousel-content-spider .app-store-badge {
    margin-top: 24px;
}

.app-store-badge {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.app-store-badge:hover {
    opacity: 0.8;
}

.app-store-badge img {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 4px;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    display: inline-block;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.hero-subtitle::before {
    left: -60px;
}

.hero-subtitle::after {
    right: -60px;
}

.hero-title {
    font-size: 96px;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #5a5a5a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
    letter-spacing: -2px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 20px;
    color: var(--gray-text);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 1.2s ease-out;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1.4s ease-out;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0; top: 8px; }
    50% { opacity: 1; top: 16px; }
}

/* Featured Game Spotlight */
.featured-spotlight {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.spotlight-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.spotlight-image {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, #f5f5f7 0%, #fafafa 100%);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.spotlight-image::before {
    content: '♠';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 200px;
    color: rgba(222, 47, 47, 0.1);
}

.spotlight-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--accent-gradient);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 4px 20px rgba(222, 47, 47, 0.4), 0 0 30px rgba(222, 47, 47, 0.2);
}

.spotlight-content {
    padding: 20px 0;
}

.spotlight-text h2 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.spotlight-tagline {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.spotlight-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 40px;
}

.spotlight-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 32px;
    line-height: 1;
}

.feature-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--light-text);
}

.feature-text p {
    font-size: 14px;
    color: var(--gray-text);
    margin: 0;
}

.spotlight-buttons {
    display: flex;
    gap: 15px;
}

/* Games Section */
.games-section {
    padding: 120px 0 120px;
    background: var(--dark-bg);
    scroll-margin-top: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-header h2 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-text);
    margin-top: 25px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.game-card {
    background: var(--card-bg);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.game-card.featured {
    grid-column: span 1;
}

.game-image {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #f5f5f7 0%, #fafafa 100%);
    overflow: hidden;
    position: relative;
}

.game-image::before {
    content: '♠';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    color: rgba(222, 47, 47, 0.1);
    font-weight: bold;
}

.game-card:nth-child(2) .game-image::before {
    content: '♥';
}

.game-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.game-card:hover .game-image::after {
    left: 100%;
}

.game-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gradient);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(222, 47, 47, 0.4), 0 0 30px rgba(222, 47, 47, 0.2);
    text-transform: uppercase;
}

.coming-soon-badge {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    box-shadow: 0 4px 20px rgba(108, 117, 125, 0.3), 0 0 30px rgba(108, 117, 125, 0.15);
}

.game-footer .btn-primary:disabled {
    background: linear-gradient(135deg, #adb5bd 0%, #868e96 100%);
    cursor: not-allowed;
    opacity: 0.7;
}

.game-footer .btn-primary:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* ============================================
   SHOWCASE GRID (Games & Extras pages)
   ============================================ */

.showcase-section {
    padding: 120px 0 100px;
    background: #ffffff;
}

.showcase-page-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--light-text);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 8px;
}

.showcase-page-subtitle {
    font-size: 17px;
    color: var(--gray-text);
    text-align: center;
    margin-bottom: 40px;
}

.showcase-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 64px;
}

.filter-btn {
    padding: 10px 28px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    background: transparent;
    color: var(--gray-text);
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-btn:hover {
    border-color: rgba(0, 0, 0, 0.25);
    color: var(--light-text);
}

.filter-btn.active {
    background: var(--light-text);
    border-color: var(--light-text);
    color: #ffffff;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 260px);
    gap: 48px 40px;
    max-width: 960px;
    margin: 0 auto;
    justify-content: center;
}

.showcase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
}

.showcase-item:nth-child(1) { animation-delay: 0.05s; }
.showcase-item:nth-child(2) { animation-delay: 0.12s; }
.showcase-item:nth-child(3) { animation-delay: 0.19s; }
.showcase-item:nth-child(4) { animation-delay: 0.26s; }
.showcase-item:nth-child(5) { animation-delay: 0.33s; }
.showcase-item:nth-child(6) { animation-delay: 0.40s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.showcase-item:hover,
.showcase-item.popover-active {
    transform: translateY(-8px);
    z-index: 100;
    position: relative;
}

.showcase-icon-wrapper {
    position: relative;
    margin-bottom: 20px;
    z-index: 1;
}

.showcase-item:hover .showcase-icon-wrapper,
.showcase-item.popover-active .showcase-icon-wrapper {
    z-index: 9999;
}

.showcase-icon-img {
    width: 220px;
    height: 220px;
    border-radius: 48px;
    display: block;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item:hover .showcase-icon-img {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18), 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: scale(1.04);
}

.showcase-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--light-text);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.showcase-item:hover .showcase-name {
    color: var(--primary-color);
}

.showcase-platform {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--gray-text);
    margin-bottom: 6px;
}

.showcase-platform svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
    opacity: 0.7;
}

.showcase-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 100px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: auto;
    padding-top: 6px;
}

.showcase-status.coming-soon {
    background: rgba(0, 0, 0, 0.05);
    color: #888;
}

.showcase-status.coming-soon::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #bbb;
}

.showcase-status.free {
    background: rgba(99, 102, 241, 0.08);
    color: #6366f1;
}

.showcase-status.free::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6366f1;
}

.showcase-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 6px;
}

.showcase-rating .stars {
    color: #FFB800;
    font-size: 13px;
    letter-spacing: 1px;
}

.showcase-rating .rating-text {
    font-size: 12px;
    color: var(--gray-text);
}

/* Styled icon tiles (for extras items without real app icons) */
.showcase-icon-tile {
    width: 220px;
    height: 220px;
    border-radius: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.showcase-item:hover .showcase-icon-tile {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18), 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: scale(1.04);
}

.tile-christmas-saver {
    background: linear-gradient(135deg, #1a472a 0%, #2d6b45 40%, #1a472a 100%);
}

.tile-christmas-tv {
    background: linear-gradient(135deg, #0a0a1a 0%, #12122e 40%, #1a1a3e 100%);
}

.showcase-icon-tile::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.06;
    pointer-events: none;
}

.tile-christmas-saver::before {
    content: '\2744 \2744 \2744';
    font-size: 60px;
    letter-spacing: 16px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-8deg) scale(1.3);
    opacity: 0.08;
}

.tile-christmas-tv::before {
    content: '\2726 \2726 \2726';
    font-size: 60px;
    letter-spacing: 16px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.06;
}

.tile-emoji {
    font-size: 64px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.tile-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

/* ============================================
   POPOVER CARD (App Store-style)
   ============================================ */

.showcase-popover {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    width: 300px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16), 0 4px 16px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
    padding: 24px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.showcase-popover.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.showcase-popover::after {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: #ffffff;
    box-shadow: -3px -3px 6px rgba(0, 0, 0, 0.06);
    border-radius: 2px;
}

.showcase-popover.above {
    top: auto;
    bottom: calc(100% + 16px);
    transform: translateX(-50%) translateY(8px);
}

.showcase-popover.above.visible {
    transform: translateX(-50%) translateY(0);
}

.showcase-popover.above::after {
    top: auto;
    bottom: -7px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.06);
}

.popover-tagline {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--light-text);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.popover-description {
    font-size: 13px;
    line-height: 1.65;
    color: var(--gray-text);
    margin-bottom: 0;
}

/* Showcase responsive */
@media (max-width: 900px) {
    .showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
    .showcase-icon-img { width: 180px; height: 180px; border-radius: 40px; }
    .showcase-icon-tile { width: 180px; height: 180px; border-radius: 40px; }
    .tile-emoji { font-size: 52px; }
}

@media (max-width: 560px) {
    .showcase-section { padding: 100px 0 80px; }
    .showcase-page-title { font-size: 36px; }
    .showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
    .showcase-icon-img { width: 140px; height: 140px; border-radius: 32px; }
    .showcase-icon-tile { width: 140px; height: 140px; border-radius: 32px; }
    .showcase-name { font-size: 16px; }
    .filter-btn { padding: 8px 18px; font-size: 12px; }
    .tile-emoji { font-size: 42px; }
}


/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: #fbfbfd;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 30px;
    transition: transform 0.3s ease;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 64px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-weight: 800;
    position: relative;
}

.stat-number::after {
    content: '+';
    position: absolute;
    right: -20px;
    top: 0;
    font-size: 40px;
    opacity: 0.5;
}

.stat-item p {
    color: var(--gray-text);
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* About Section */
.about-section {
    padding: 120px 0;
}

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

.about-content h2 {
    font-size: 48px;
    margin-bottom: 30px;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 20px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.about-lead {
    font-size: 24px;
    color: var(--light-text);
    margin-bottom: 25px;
    font-weight: 500;
}

.about-content p {
    color: var(--gray-text);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}


.about-stats-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.about-stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.3s ease;
}

.about-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(222, 47, 47, 0.2);
}

.about-stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.about-stat-number {
    font-size: 48px;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.about-stat-label {
    font-size: 16px;
    color: var(--gray-text);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* News Section */
.news-section {
    padding: 120px 0;
    background: #ffffff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--card-bg);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, #f5f5f7 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.news-image::before {
    content: '📰';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    opacity: 0.2;
}

.news-card:nth-child(2) .news-image::before {
    content: '🎉';
}

.news-card:nth-child(3) .news-image::before {
    content: '🎨';
}

.news-content {
    padding: 25px;
}

.news-date {
    color: var(--primary-color);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 2px solid rgba(222, 47, 47, 0.2);
}

.news-content h3 {
    font-size: 22px;
    margin: 15px 0;
    letter-spacing: 1px;
}

.news-content p {
    color: var(--gray-text);
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.read-more:hover {
    color: #c42424;
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 15px,
        rgba(0, 0, 0, 0.04) 15px,
        rgba(0, 0, 0, 0.04) 16px
    );
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 56px;
    margin-bottom: 20px;
    letter-spacing: 3px;
    color: var(--light-text);
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--gray-text);
}

.cta-section .btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 5px 20px rgba(222, 47, 47, 0.3);
}

.cta-section .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(222, 47, 47, 0.5);
}

/* Footer */
.footer {
    background: #ffffff;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 20px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-column h4 a {
    color: inherit;
    text-decoration: none;
}

.footer-column h4 a:hover {
    color: var(--primary-color);
}

.footer-column p {
    color: var(--gray-text);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--gray-text);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-column ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-column ul li a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.social-links a:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-copyright {
    color: var(--gray-text);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0;
}

.footer-legal a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
    padding: 0 14px;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.footer-legal a:first-child {
    border-left: none;
}

.footer-legal a:last-child {
    padding-right: 0;
}

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

/* Scroll Reveal Effects */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* Support Page Styles */
.support-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.support-hero-content {
    position: relative;
    z-index: 1;
}

.support-hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #ffffff;
}

.careers-hero-bg .support-hero-content h1 {
    font-size: 42px;
}

.support-hero-content p {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 40px;
}

.support-quick-links {
    padding: 80px 0;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.quick-link-card {
    padding: 40px 30px;
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.quick-link-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.faq-app-icon {
    border-radius: 11px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-hero-icon {
    border-radius: 8px;
    vertical-align: middle;
    margin-right: 8px;
    position: relative;
    top: -2px;
}

.quick-link-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.quick-link-card p {
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.faq-section {
    padding: 100px 0;
    background: #ffffff;
}

.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.contact-info p {
    color: var(--gray-text);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    padding: 20px;
    background: #fbfbfd;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-method strong {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--light-text);
}

/* In-App Support Tip Box */
.in-app-support-tip {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-left: 4px solid var(--primary-color);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(222, 47, 47, 0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.in-app-support-tip h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.in-app-support-tip p {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 15px;
}

.in-app-support-tip strong {
    color: var(--dark-text);
    font-weight: 600;
}

.in-app-support-tip ul {
    margin: 15px 0 15px 20px;
    list-style: disc;
}

.in-app-support-tip li {
    color: var(--light-text);
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-method p {
    margin: 0;
    color: var(--gray-text);
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: var(--light-text);
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Space Mono', monospace;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.logo a {
    text-decoration: none;
    display: block;
}

/* Privacy Page Styles */
.privacy-content {
    padding: 80px 0;
    background: #ffffff;
}

.privacy-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.privacy-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 25px;
}

.privacy-select {
    font-weight: 600;
    color: var(--light-text);
    margin-top: 40px;
}

.privacy-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-link-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.privacy-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.privacy-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.privacy-icon img {
    width: 48px;
    height: 48px;
    display: block;
}

.privacy-icon-app img {
    border-radius: 11px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.privacy-link-card h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--light-text);
    margin: 0;
    flex: 1;
}

.link-arrow-right {
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.privacy-link-card:hover .link-arrow-right {
    transform: translateX(5px);
}

/* Privacy Document Pages */
.privacy-document {
    padding: 100px 0;
    background: #ffffff;
}

.document-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.document-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin: 80px 0 30px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    line-height: 1.2;
}

.document-content h2:first-child {
    margin-top: 0;
}

.document-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 50px 0 25px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.document-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 30px;
}

.document-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 20px;
    line-height: 1.3;
}

.document-content h5 {
    font-size: 20px;
    font-weight: 700;
    margin: 30px 0 15px;
    line-height: 1.4;
}

.document-content ul,
.document-content ol {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 30px;
    padding-left: 30px;
}

.document-content li {
    margin-bottom: 10px;
}

.document-content li ul,
.document-content li ol {
    margin-top: 10px;
    margin-bottom: 10px;
}

.document-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.document-content a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.document-content strong {
    font-weight: 700;
    color: var(--light-text);
}

.document-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.document-content th,
.document-content td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--gray-text);
}

.document-content th {
    font-weight: 700;
    color: var(--light-text);
    background: rgba(0, 0, 0, 0.02);
}

.document-content blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    border-left: 4px solid var(--primary-color);
    background: rgba(0, 0, 0, 0.02);
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-text);
}

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

.document-content code {
    font-family: 'Space Mono', monospace;
    font-size: 15px;
    background: rgba(0, 0, 0, 0.04);
    padding: 2px 6px;
    border-radius: 4px;
}

.document-content hr {
    border: none;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 40px 0;
}

.privacy-icon svg {
    width: 48px;
    height: 48px;
    display: block;
    color: var(--primary-color);
}

.back-link {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.back-link a,
a.back-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s ease;
    display: inline-block;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.back-link a:hover,
a.back-link:hover {
    transform: translateX(-5px);
}

/* Neutralize iubenda HTML class collisions inside policy documents */
.document-content .cta-section {
    padding: 20px 0;
    position: static;
    overflow: visible;
    text-align: left;
}

.document-content .cta-section::before {
    display: none;
}

.document-content .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.document-content footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.document-content details {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
}

.document-content summary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    cursor: pointer;
    list-style: none;
}

.document-content summary::-webkit-details-marker {
    display: none;
}

.document-content summary::before {
    content: '\25B6';
    font-size: 12px;
    color: var(--gray-text);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.document-content details[open] > summary::before {
    transform: rotate(90deg);
}

.document-content summary figure {
    margin: 0;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.document-content summary figure img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: block;
}

.document-content summary h4 {
    margin: 0 0 4px;
    font-size: 18px;
}

.document-content summary p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.document-content details > div {
    padding: 0 20px 20px;
}

/* Dark Hero for Privacy Document Pages (legacy) */
.privacy-hero-dark {
    background: linear-gradient(135deg, 
        #2a2a2a 0%, 
        #1f1f1f 20%, 
        #1a1a1a 40%, 
        #0f0f0f 60%, 
        #0a0a0a 80%, 
        #000000 100%);
}

/* Privacy Hero: Inline Icon + Title */
.privacy-hero-title {
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.privacy-hero-title-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    overflow: hidden;
    line-height: 1;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-hero-title-icon svg {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px;
    min-height: 48px;
    max-width: 48px;
    max-height: 48px;
    display: block;
    color: #ffffff;
}

.privacy-hero-title-icon-app {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
}

.privacy-hero-title-icon-app img {
    width: 48px;
    height: 48px;
    border-radius: 11px;
    display: block;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* Our Story Section */
.our-story-section {
    padding: 100px 0;
    background: #ffffff;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    text-align: center;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 30px;
}

/* Company Info Section */
.company-info-section {
    padding: 100px 0;
    background: #fbfbfd;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.company-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.company-info-item {
    text-align: center;
}

.company-info-item h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.company-info-item p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--light-text);
    font-weight: 500;
}

.company-address {
    grid-column: span 3;
    padding: 40px;
    background: white;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Join Our Team Section */
.join-team-section {
    padding: 100px 0;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.join-team-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.join-team-content h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark-text);
    margin-bottom: 30px;
}

.join-team-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 20px;
}

.join-team-content a {
    display: inline-block;
    margin-top: 40px;
    color: white !important;
}

/* About Page Hero Background */
.about-hero-bg {
    background-image: url('/images/about/about_header-1920.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px;
    padding: 160px 0 80px;
}

.about-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.about-hero-bg .support-hero-content {
    position: relative;
    z-index: 1;
}

/* Retro Arcade Gradient for Games Page */
.arcade-hero {
    background: linear-gradient(135deg,
        #0f0c29 0%,
        #302b63 25%,
        #24243e 50%,
        #302b63 75%,
        #0f0c29 100%);
    min-height: 600px;
    padding: 160px 0 80px;
}

/* Synthwave/Retro Arcade Gradient for News Page */
.arcade-hero-news {
    background: linear-gradient(135deg,
        #001a1a 0%,
        #0d2e3e 20%,
        #1a3d5c 40%,
        #0d2e3e 60%,
        #001a1a 100%) !important;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    padding: 160px 0 80px;
}

.arcade-hero-news::before {
    content: '';
    position: absolute;
    top: -25%;
    left: -10%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(0, 255, 127, 0.45) 0%, rgba(0, 255, 127, 0.22) 30%, transparent 70%);
    filter: blur(70px);
    z-index: 0;
}

.arcade-hero-news::after {
    content: '';
    position: absolute;
    bottom: -25%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 150, 255, 0.4) 0%, rgba(0, 150, 255, 0.18) 30%, transparent 70%);
    filter: blur(75px);
    z-index: 0;
}

.arcade-hero-news .support-hero-content {
    position: relative;
    z-index: 1;
}

/* Careers Page Hero Background */
.careers-hero-bg {
    background-image: url('/images/careers/careers_header-2400.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px;
    padding: 160px 0 80px;
}

.careers-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.careers-hero-bg .support-hero-content {
    position: relative;
    z-index: 1;
    margin-top: 20px;
}

/* Responsive About Stats */
@media (max-width: 968px) {
    .about-stats-visual {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }
}

/* Responsive Company Info */
@media (max-width: 968px) {
    .company-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .company-address {
        grid-column: span 1;
    }
}

/* Careers Page Styles */
.careers-intro,
.careers-apply {
    padding: 80px 0;
    background: #ffffff;
}

.careers-intro {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.careers-intro-content,
.careers-apply-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.careers-intro-content h2,
.careers-apply-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.careers-intro-content p,
.careers-apply-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-text);
}

.job-listings {
    padding: 80px 0;
    background: #fbfbfd;
}

.job-card {
    max-width: 900px;
    margin: 0 auto 40px;
    background: white;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.job-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.job-icon {
    font-size: 48px;
}

.job-header h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    margin: 0;
}

.job-content {
    padding: 40px;
}

.job-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 25px;
}

.job-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 20px;
    letter-spacing: 0.5px;
    color: var(--light-text);
}

.job-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.job-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.job-content ul li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--primary-color);
    font-weight: bold;
}

.job-apply {
    padding: 30px 40px 40px;
    text-align: center;
}

/* Responsive Careers Page */
@media (max-width: 768px) {
    .job-header {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .job-header h2 {
        font-size: 28px;
    }
    
    .job-content,
    .job-apply {
        padding: 30px 25px;
    }
}

/* Responsive Privacy Page */
@media (max-width: 968px) {
    .privacy-links-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-intro {
        padding: 0 20px;
    }

    .privacy-hero-title {
        gap: 12px;
    }

    .privacy-hero-title-icon {
        width: 32px;
        height: 32px;
    }

    .privacy-hero-title-icon svg {
        width: 32px;
        height: 32px;
        max-width: 32px;
        max-height: 32px;
    }

    .privacy-hero-title-icon-app {
        width: 32px;
        height: 32px;
    }

    .privacy-hero-title-icon-app img {
        width: 32px;
        height: 32px;
        border-radius: 7px;
    }
}

/* Responsive Support Page */
@media (max-width: 968px) {
    .spotlight-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .spotlight-image {
        height: 400px;
    }
    
    .spotlight-text h2 {
        font-size: 42px;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .support-hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .support-hero-content h1 {
        font-size: 32px;
    }
    
    .support-search {
        flex-direction: column;
    }
    
    .contact-form-container {
        padding: 25px;
    }
}

/* ============================================
   PRODUCT PAGES (new design)
   ============================================ */

.product-hero {
    padding: 140px 0 80px;
    background: #ffffff;
}

.product-hero-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.product-hero-icon { flex-shrink: 0; }

.product-app-icon-img {
    width: 256px;
    height: 256px;
    border-radius: 56px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14), 0 4px 16px rgba(0, 0, 0, 0.06);
}

.product-badge {
    display: inline-block;
    background: var(--accent-gradient);
    color: white;
    padding: 4px 14px;
    border-radius: 100px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 12px;
    position: relative;
    top: -2px;
}

.product-badge-coming-soon {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.product-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.product-subtitle-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.product-tagline {
    font-size: 20px;
    color: var(--gray-text);
    margin-bottom: 16px;
    font-weight: 300;
}

.product-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-text);
    max-width: 520px;
    margin-bottom: 24px;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-rating .stars {
    color: #FFB800;
    font-size: 16px;
}

.product-rating .rating-text {
    font-size: 14px;
    color: var(--gray-text);
}

.product-platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(0, 0, 0, 0.05);
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #555;
}

.product-platform-badge svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.product-cross-ref {
    margin-bottom: 20px;
}

.product-cross-ref a {
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.product-cross-ref a:hover {
    text-decoration: underline !important;
}

.product-hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--light-text);
    color: #ffffff !important;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-download:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-download svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.btn-game-disabled {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    background: #e5e7eb;
    color: #9ca3af !important;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 12px;
    cursor: not-allowed;
}

/* Stats Bar */
.product-stats-bar {
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.stats-bar-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

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

.stat-bar-number {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.stat-bar-label {
    display: block;
    font-size: 12px;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.stat-bar-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.08);
}

/* Product Features */
.product-features {
    padding: 100px 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    padding: 32px;
    background: #f8f9fa;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
}

.feature-icon img {
    width: 44px;
    height: 44px;
    display: block;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-text);
}

/* Screenshot Gallery */
.product-gallery {
    padding: 100px 0;
    background: #f8f9fa;
}

.gallery-scroll-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -24px;
    padding: 0 24px;
}

.gallery-scroll-container::-webkit-scrollbar { display: none; }

.gallery-track {
    display: flex;
    gap: 20px;
    padding: 10px 0;
}

.gallery-item { flex-shrink: 0; }

.gallery-screenshot {
    height: 500px;
    width: auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-screenshot:hover { transform: scale(1.02); }

/* Specs (single-column list) */
.product-specs {
    padding: 80px 0;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.specs-list {
    max-width: 600px;
    margin: 0 auto;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.spec-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--light-text);
}

.spec-value {
    font-size: 14px;
    color: var(--gray-text);
}

/* Product CTA */
.product-cta {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
}

.product-cta-content { max-width: 600px; margin: 0 auto; }

.product-cta-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

.product-cta-content h2 {
    font-size: 40px;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-cta-content p {
    font-size: 17px;
    color: var(--gray-text);
    margin-bottom: 28px;
}

/* Related Products (icon grid) */
.product-related {
    padding: 80px 0;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 180px);
    gap: 40px 32px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.related-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.related-item:hover { transform: translateY(-6px); }

.related-icon-img {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.related-item:hover .related-icon-img {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
    transform: scale(1.04);
}

.related-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
    transition: color 0.2s ease;
}

.related-item:hover .related-name { color: var(--primary-color); }

.related-platform-text {
    font-size: 11px;
    color: var(--gray-text);
}

.related-coming-soon { opacity: 1; }

/* Storefront Page (minimal store-redirect layout) */
.storefront {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    padding: 60px 24px;
}

.storefront-icon {
    width: 160px;
    height: 160px;
    border-radius: 36px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    margin-bottom: 28px;
}

.storefront-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.storefront-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.storefront-subtitle {
    font-size: 15px;
    color: var(--gray-text);
    font-weight: 400;
    margin-bottom: 20px;
}

.storefront-platform {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border: 1px solid #d2d2d7;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-text);
    margin-bottom: 32px;
}

.storefront-platform svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.storefront-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.storefront-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--light-text);
    color: #ffffff !important;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 260px;
    justify-content: center;
}

.storefront-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.storefront-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.storefront-btn-disabled {
    background: #e5e7eb !important;
    color: #9ca3af !important;
    cursor: default;
    pointer-events: none;
}

.storefront-footer {
    margin-top: 48px;
    font-size: 13px;
    color: #86868b;
}

.storefront-footer a {
    color: var(--primary-color) !important;
}

.storefront-footer a:hover {
    text-decoration: underline !important;
}

@media (max-width: 480px) {
    .storefront-icon {
        width: 120px;
        height: 120px;
        border-radius: 28px;
    }
    .storefront-name { font-size: 24px; }
    .storefront-btn { min-width: 220px; padding: 14px 32px; }
}

/* Product page responsive */
@media (max-width: 968px) {
    .product-hero-layout { grid-template-columns: 1fr; text-align: center; gap: 32px; }
    .product-hero-icon { order: -1; }
    .product-app-icon-img { width: 180px; height: 180px; border-radius: 40px; }
    .product-title { font-size: 48px; }
    .product-meta { justify-content: center; }
    .product-hero-buttons { justify-content: center; }
    .product-description { max-width: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-bar-grid { gap: 32px; }
}

@media (max-width: 560px) {
    .product-hero { padding: 110px 0 60px; }
    .product-title { font-size: 36px; }
    .product-app-icon-img { width: 150px; height: 150px; border-radius: 34px; }
    .features-grid { grid-template-columns: 1fr; }
    .stats-bar-grid { flex-wrap: wrap; gap: 20px; }
    .stat-bar-divider { display: none; }
    .gallery-screenshot { height: 360px; }
    .related-grid { grid-template-columns: repeat(auto-fit, 140px); gap: 24px; }
    .related-icon-img { width: 100px; height: 100px; border-radius: 24px; }
}

/* ============================================
   EXTRAS PRODUCT PAGE
   ============================================ */

.extras-product-hero-tile {
    width: 256px;
    height: 256px;
    border-radius: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14), 0 4px 16px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.extras-product-hero-tile .tile-emoji {
    font-size: 80px;
}

.extras-product-hero-tile .tile-label {
    font-size: 12px;
}

.extras-product-feature-emoji {
    font-size: 36px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.extras-product-cta-tile {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    margin: 0 auto 24px;
    position: relative;
    overflow: hidden;
}

.extras-product-cta-tile .tile-emoji {
    font-size: 40px;
}

.extras-product-related-tile {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.related-item:hover .extras-product-related-tile {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
    transform: scale(1.04);
}

.extras-product-related-tile .tile-emoji {
    font-size: 48px;
}

.btn-download-free {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.btn-download-free:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.btn-download-free svg {
    fill: none;
    stroke: currentColor;
}

@media (max-width: 968px) {
    .extras-product-hero-tile { width: 180px; height: 180px; border-radius: 40px; }
    .extras-product-hero-tile .tile-emoji { font-size: 64px; }
}

@media (max-width: 560px) {
    .extras-product-hero-tile { width: 150px; height: 150px; border-radius: 34px; }
    .extras-product-hero-tile .tile-emoji { font-size: 52px; }
    .extras-product-related-tile { width: 100px; height: 100px; border-radius: 24px; }
    .extras-product-related-tile .tile-emoji { font-size: 40px; }
}

/* ============================================
   SUPPORT PAGE - NEW DESIGN
   ============================================ */

.support-search-new {
    max-width: 600px;
    margin: 0 auto 32px;
    position: relative;
}

.support-search-new input {
    width: 100%;
    padding: 20px 24px 20px 60px;
    font-family: 'Space Mono', monospace;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    background: #ffffff;
    color: #1a1a1a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.support-search-new input::placeholder {
    color: #666;
}

.support-search-new input:focus {
    outline: none;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.support-search-new .search-icon {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    stroke: #888;
}

.support-search-new button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    padding: 12px 28px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: #de2f2f;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.support-search-new button:hover {
    background: #c42828;
    box-shadow: 0 4px 16px rgba(222, 47, 47, 0.4);
}

.popular-searches {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.popular-searches > span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.popular-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.popular-tag:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff !important;
    transform: translateY(-1px);
}

/* Quick Links */
.quick-links-section {
    background: #ffffff;
    padding: 80px 0;
}

.quick-links-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.quick-link-card-new {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quick-link-card-new:hover {
    background: #ffffff;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
    border-color: transparent;
}

.quick-link-icon-new {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.quick-link-card-new:hover .quick-link-icon-new {
    background: rgba(222, 47, 47, 0.1);
}

.quick-link-icon-new svg {
    width: 36px;
    height: 36px;
    stroke: #1a1a1a;
    stroke-width: 1.5;
    fill: none;
    transition: stroke 0.3s ease;
}

.quick-link-card-new:hover .quick-link-icon-new svg {
    stroke: #de2f2f;
}

.quick-link-card-new h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.quick-link-card-new p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.quick-link-arrow {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #de2f2f;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.quick-link-card-new:hover .quick-link-arrow {
    gap: 10px;
}

/* FAQ Section */
.faq-section-new {
    background: #f8f9fa;
    padding: 80px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.faq-header p {
    font-size: 17px;
    color: #666;
}

.faq-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    max-width: 900px;
    margin: 0 auto;
}

.faq-category-group {
    margin-bottom: 36px;
}

.faq-category-group:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eee;
}

.faq-category-link {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.faq-category-link:hover {
    color: var(--primary-color);
}

.faq-category-icon {
    border-radius: 5px;
    flex-shrink: 0;
}

.faq-category-view-all {
    margin-left: auto;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #999;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.faq-category-link:hover .faq-category-view-all {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary-color);
}

.faq-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-link-item {
    margin-bottom: 8px;
}

.faq-link-item:last-child {
    margin-bottom: 0;
}

.faq-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-size: 15px;
    color: #444 !important;
    text-decoration: none !important;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.faq-link:hover {
    background: rgba(222, 47, 47, 0.06);
    color: #de2f2f !important;
    padding-left: 24px;
}

.faq-link-icon {
    width: 18px;
    height: 18px;
    stroke: #999;
    stroke-width: 1.5;
    fill: none;
    flex-shrink: 0;
    transition: stroke 0.2s ease;
}

.faq-link:hover .faq-link-icon {
    stroke: #de2f2f;
}

.faq-view-all {
    text-align: center;
    margin-top: 40px;
}

.faq-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff !important;
    background: #de2f2f;
    border: none;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(222, 47, 47, 0.3);
}

.faq-view-all-btn:hover {
    background: #c42828;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(222, 47, 47, 0.4);
    color: #ffffff !important;
}

.support-cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0;
    text-align: center;
}

.support-cta-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.support-cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 540px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.support-cta-content p strong {
    color: #ffffff;
}

.support-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff !important;
    background: #de2f2f;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(222, 47, 47, 0.3);
}

.support-cta-btn:hover {
    background: #c42828;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(222, 47, 47, 0.4);
    color: #ffffff !important;
}

.contact-success-section {
    padding: 140px 0 80px;
    background: #fbfbfd;
}

.contact-success-section .success-card {
    max-width: 640px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 60px 50px;
    text-align: center;
}

.contact-success-section .success-icon {
    margin-bottom: 20px;
    line-height: 1;
}

.contact-success-section h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--light-text);
    margin-bottom: 16px;
}

.contact-success-section .ticket-number {
    font-size: 15px;
    color: var(--gray-text);
    margin-bottom: 12px;
}

.contact-success-section .success-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 32px 0;
}

.contact-success-section .success-tips {
    text-align: left;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-success-section .success-tips h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--light-text);
}

.contact-success-section .success-tips ul {
    list-style: none;
    padding: 0;
}

.contact-success-section .success-tips li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.6;
}

.contact-success-section .success-tips li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Contact Section */
.contact-section-new {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-page-standalone {
    padding-top: 160px;
}

.contact-header {
    text-align: center;
    margin-bottom: 56px;
}

.contact-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contact-header p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-grid-new {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.contact-info-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.contact-method-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
    stroke-width: 1.5;
    fill: none;
}

.contact-method-text strong {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-method-text p {
    font-size: 16px;
    color: #ffffff;
    margin: 0;
}

.contact-pro-tip {
    background: rgba(59, 130, 246, 0.15);
    border-left: 4px solid #3b82f6;
    border-radius: 0 12px 12px 0;
    padding: 20px;
    margin-top: 32px;
}

.contact-pro-tip strong {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #3b82f6;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-pro-tip p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.contact-pro-tip p + p {
    margin-top: 12px;
}

.contact-info-box {
    background: rgba(251, 191, 36, 0.2);
    border-left: 4px solid #f59e0b;
    border-radius: 0 12px 12px 0;
    padding: 20px;
    margin-top: 20px;
}

.contact-info-box strong {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #f59e0b;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-info-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 12px;
}

.contact-info-box p:last-child {
    margin-bottom: 0;
}

.contact-info-box ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.contact-info-box ul li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    padding: 4px 0 4px 20px;
    position: relative;
}

.contact-info-box ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-form-new {
    display: flex;
    flex-direction: column;
}

.contact-form-new .form-group {
    margin-bottom: 20px;
}

.contact-form-new label {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-form-new input,
.contact-form-new textarea,
.contact-form-new select {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Space Mono', monospace;
    font-size: 16px;
    color: #1a1a1a;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.contact-form-new input:focus,
.contact-form-new textarea:focus,
.contact-form-new select:focus {
    outline: none;
    background: #ffffff;
    border-color: #de2f2f;
}

.contact-form-new textarea {
    resize: vertical;
    min-height: 180px;
}

.contact-form-new .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 480px) {
    .contact-form-new .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.contact-form-new button[type="submit"] {
    width: 100%;
    padding: 16px 32px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    background: #de2f2f;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.contact-form-new button[type="submit"]:hover {
    background: #c42828;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(222, 47, 47, 0.3);
}

.contact-form-new .form-group.has-error input,
.contact-form-new .form-group.has-error textarea,
.contact-form-new .form-group.has-error select {
    border-color: #de2f2f;
    background: #fff5f5;
}

.contact-form-new .error-message {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #de2f2f;
    margin-top: 6px;
}

.contact-form-new .required {
    color: #de2f2f;
}

.contact-form-new .field-optional {
    font-size: 12px;
    font-weight: 500;
    color: #86868b;
    letter-spacing: 0.5px;
}

.contact-form-new .field-hint {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #86868b;
    margin-top: 6px;
    letter-spacing: 0.3px;
}

.contact-form-new .file-input-wrapper {
    position: relative;
}

.contact-form-new input[type="file"] {
    width: 100%;
    padding: 14px 20px;
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    border: 1px solid #e5e5e7;
    border-radius: 10px;
    background: #f5f5f7;
    color: #1d1d1f;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form-new input[type="file"]:hover {
    border-color: #c5c5c7;
    background: #ffffff;
}

.contact-form-new input[type="file"]:focus {
    outline: none;
    background: #ffffff;
    border-color: #de2f2f;
}

.contact-form-new input[type="file"]::file-selector-button {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    margin-right: 12px;
    border: none;
    border-radius: 6px;
    background: #1d1d1f;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.contact-form-new input[type="file"]::file-selector-button:hover {
    background: #de2f2f;
}

.alert-error {
    background: #fff5f5;
    border: 2px solid #de2f2f;
    border-radius: 10px;
    padding: 20px 24px;
    color: #a11;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

/* Support search results */
.search-results-section {
    padding: 60px 0;
    background: #ffffff;
}

.results-count {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-results .search-result-card {
    display: block;
    padding: 20px 24px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
    text-decoration: none !important;
}

.search-results .search-result-card:hover {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.search-results .search-result-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.result-category {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.search-results .search-result-card p {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    line-height: 1.5;
}

.clear-search {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-color) !important;
    font-weight: 600;
}

.search-no-results {
    text-align: center;
    padding: 60px 20px;
}

.search-no-results h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--light-text);
    margin-bottom: 8px;
}

.search-no-results p {
    font-size: 15px;
    color: var(--gray-text);
    margin-bottom: 0;
}

/* Support responsive */
@media (max-width: 1024px) {
    .quick-links-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid-new {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .support-search-new button {
        position: static;
        width: 100%;
        margin-top: 12px;
        transform: none;
    }
    .support-search-new {
        display: flex;
        flex-direction: column;
    }
    .support-search-new input {
        padding: 16px 20px 16px 50px;
    }
    .quick-links-grid-new {
        grid-template-columns: 1fr;
    }
    .faq-card {
        padding: 32px 24px;
    }
    .faq-header h2,
    .contact-header h2 {
        font-size: 32px;
    }
    .contact-form-card,
    .contact-info-card {
        padding: 28px;
    }
}

/* ============================================
   CAREERS PAGE - NEW DESIGN
   ============================================ */

.why-edgerift-section {
    background: #ffffff;
    padding: 80px 0;
}

.why-edgerift-header {
    text-align: center;
    margin-bottom: 48px;
}

.why-edgerift-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.why-edgerift-header p {
    font-size: 16px;
    color: #666;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.benefit-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* How to Apply */
.how-to-apply-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.apply-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.apply-card-icon {
    font-size: 32px;
}

.apply-card-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.apply-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

.apply-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

.apply-checklist li {
    font-size: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.apply-checklist li::before {
    content: '✓';
    color: #de2f2f;
    font-weight: 700;
    font-size: 16px;
}

/* Open Positions */
.positions-section {
    background: #ffffff;
    padding: 80px 0;
}

.positions-header {
    text-align: center;
    margin-bottom: 48px;
}

.positions-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.positions-header p {
    font-size: 16px;
    color: #666;
}

.job-card-modern {
    background: #ffffff;
    border-radius: 16px;
    padding: 48px;
    max-width: 900px;
    margin: 0 auto 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.job-card-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.job-icon-modern {
    font-size: 48px;
    flex-shrink: 0;
}

.job-title-area h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
    margin: 0 0 8px;
}

.job-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.job-meta-tag {
    font-size: 13px;
    color: #666;
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 20px;
}

.job-description {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 32px;
}

.job-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.job-column h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #de2f2f;
    display: inline-block;
}

.job-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-column li {
    font-size: 14px;
    color: #555;
    padding: 6px 0 6px 20px;
    position: relative;
    line-height: 1.5;
}

.job-column li::before {
    content: '•';
    color: #de2f2f;
    position: absolute;
    left: 0;
    font-weight: 700;
}

.job-nice-to-have {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.job-nice-to-have h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #888;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.job-nice-to-have ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.job-nice-to-have li {
    font-size: 13px;
    color: #666;
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #ddd;
}

.job-apply-area {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: #de2f2f;
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    background: #c42828;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(222, 47, 47, 0.3);
}

.btn-apply svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* General Inquiry */
.general-inquiry-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.general-inquiry-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(222, 47, 47, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 133, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.inquiry-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 48px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.inquiry-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.inquiry-card h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.inquiry-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 32px;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-contact svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Careers responsive */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .job-columns {
        grid-template-columns: 1fr;
    }
    .job-card-modern {
        padding: 32px 24px;
    }
    .apply-card {
        padding: 32px 24px;
    }
    .apply-checklist {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SOCIAL MEDIA PAGE STYLES
   ============================================ */

.social-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 420px;
    padding: 140px 0 100px;
    margin-top: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.social-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 133, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(222, 47, 47, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.social-hero .container {
    width: 100%;
}

.social-hero-content {
    position: relative;
    z-index: 1;
}

.social-hero h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.social-hero p {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

/* Bluesky Section */
.bluesky-section {
    background: #ffffff;
    padding: 80px 0;
}

.bluesky-section .container {
    text-align: left;
}

.bluesky-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    flex-wrap: nowrap;
}

.bluesky-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bluesky-brand-icon {
    width: 36px;
    height: 36px;
    background: #0085ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.bluesky-brand-icon svg {
    width: 20px;
    height: 20px;
}

.bluesky-brand-text h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 -4px 0;
    letter-spacing: 0.5px;
}

.bluesky-brand-text span {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: #0085ff;
    font-weight: 500;
}

.bluesky-follow-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: transparent !important;
    color: #0085ff !important;
    text-decoration: none !important;
    border-radius: 6px;
    border: 1.5px solid #0085ff !important;
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.bluesky-follow-btn:hover {
    background: #0085ff !important;
    color: white !important;
}

.bluesky-follow-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
    stroke: currentColor !important;
}

.bluesky-follow-btn:hover svg {
    transform: translateX(3px);
}

/* Bluesky Posts Grid */
.bluesky-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.bluesky-grid-loading {
    display: contents;
}

.skeleton-grid-post {
    background: var(--card-bg);
    border-radius: 12px;
    height: 280px;
    animation: blueskyPulse 1.5s ease-in-out infinite;
}

@keyframes blueskyPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.bluesky-grid-card {
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.bluesky-grid-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 133, 255, 0.15);
}

.bluesky-grid-card.animate-in {
    animation: blueskyFadeInUp 0.4s ease forwards;
}

@keyframes blueskyFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bluesky-grid-media {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.bluesky-grid-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bluesky-grid-media .video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.bluesky-grid-media .video-play-overlay svg {
    width: 22px;
    height: 22px;
    fill: white;
    margin-left: 3px;
}

.bluesky-grid-card:hover .video-play-overlay {
    background: var(--primary-color);
}

.bluesky-placeholder {
    background: linear-gradient(135deg, #1185fe 0%, #0066cc 50%, #004d99 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bluesky-placeholder-icon {
    width: 60px;
    height: 60px;
    color: rgba(255, 255, 255, 0.25);
}

.bluesky-grid-card:hover .bluesky-placeholder-icon {
    color: rgba(255, 255, 255, 0.4);
}

.bluesky-grid-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 180px;
}

.bluesky-grid-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--light-text) !important;
    margin: 0 0 16px 0;
    flex: 1;
}

.bluesky-grid-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--gray-text);
}

.bluesky-grid-time {
    color: var(--gray-text);
}

.bluesky-grid-likes {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--gray-text);
}

.bluesky-grid-likes svg {
    width: 14px;
    height: 14px;
}

.bluesky-grid-error {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    background: var(--card-bg);
    border-radius: 12px;
}

.bluesky-grid-error svg {
    width: 48px;
    height: 48px;
    color: var(--gray-text);
    margin-bottom: 16px;
}

.bluesky-grid-error p {
    color: var(--gray-text);
    margin-bottom: 20px;
}

/* Follow Us Everywhere Section */
.follow-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.follow-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.follow-section-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.follow-section-header p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #666;
}

.social-platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.platform-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.platform-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    transform: none !important;
}

.platform-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-card:hover .platform-icon {
    transform: none !important;
}

.platform-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.platform-info h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px;
}

.platform-info span {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #888;
}

.platform-cta {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* Platform-specific colors */
.platform-bluesky .platform-icon {
    background: #0085ff;
}
.platform-bluesky .platform-cta {
    color: #0085ff;
    border: 2px solid #0085ff;
}
.platform-bluesky:hover .platform-cta {
    background: #0085ff;
    color: white;
}

.platform-facebook .platform-icon {
    background: #1877f2;
}
.platform-facebook .platform-cta {
    color: #1877f2;
    border: 2px solid #1877f2;
}
.platform-facebook:hover .platform-cta {
    background: #1877f2;
    color: white;
}

.platform-instagram .platform-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.platform-instagram .platform-cta {
    color: #dc2743;
    border: 2px solid #dc2743;
}
.platform-instagram:hover .platform-cta {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
    color: white;
}

.platform-linkedin .platform-icon {
    background: #0a66c2;
}
.platform-linkedin .platform-cta {
    color: #0a66c2;
    border: 2px solid #0a66c2;
}
.platform-linkedin:hover .platform-cta {
    background: #0a66c2;
    color: white;
}

/* Social media page responsive */
@media (max-width: 1200px) {
    .bluesky-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .bluesky-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .social-platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .social-hero {
        min-height: 350px;
        padding: 100px 0 80px;
    }
    .social-hero h1 {
        font-size: 36px;
        letter-spacing: 2px;
    }
    .social-hero p {
        font-size: 17px;
    }
}

@media (max-width: 600px) {
    .bluesky-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .social-platforms-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   COMPANY / ABOUT PAGE STYLES
   ============================================ */

.about-hero {
    background-image: url('/images/about/about_header-1920.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 420px;
    padding: 140px 0 100px;
    margin-top: 80px;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

.about-hero p {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

/* What Drives Us Section */
.drives-section {
    background: #ffffff;
    padding: 100px 0;
}

.drives-header {
    text-align: center;
    margin-bottom: 56px;
}

.drives-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.drives-header p {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    color: #666;
}

.drives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.drives-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 48px 36px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.drives-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.drives-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.drives-icon-wrapper svg {
    width: 40px;
    height: 40px;
    stroke: #1a1a1a;
    stroke-width: 1.5;
    fill: none;
}

.drives-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.drives-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Our Story Section */
.story-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.story-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 56px 64px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.story-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.story-card-header > svg {
    width: 36px;
    height: 36px;
    stroke: #1a1a1a;
    stroke-width: 1.5;
    fill: none;
    flex-shrink: 0;
}

.story-card-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
}

.story-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.story-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, rgba(222, 47, 47, 0.08) 0%, rgba(222, 47, 47, 0.02) 100%);
    padding: 20px 24px;
    border-radius: 12px;
    margin-top: 32px;
    border-left: 4px solid #de2f2f;
}

.story-highlight p {
    margin: 0;
    font-style: italic;
    color: #444;
}

/* Company Stats Section (Dark Gradient) */
.about-stats-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(222, 47, 47, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 85% 50%, rgba(0, 133, 255, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.about-stat-number-dark {
    font-family: 'Rajdhani', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.about-stat-label-dark {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Contact/Location Section */
.about-location-section {
    background: #ffffff;
    padding: 100px 0;
}

.about-location-header {
    text-align: center;
    margin-bottom: 48px;
}

.about-location-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-location-header p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #666;
}

.about-location-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.about-location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.about-location-info {
    padding-right: 24px;
}

.about-location-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.about-location-info-header svg {
    width: 24px;
    height: 24px;
    stroke: #1a1a1a;
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

.about-location-info-header h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.about-location-address {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.about-location-address strong {
    color: #1a1a1a;
    font-weight: 600;
}

.about-location-address a.about-location-email {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.about-location-address a.about-location-email:hover {
    text-decoration: underline;
}

.about-location-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.about-location-map iframe {
    display: block;
    border: 0;
}

/* Social CTA Section */
.social-cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.social-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 133, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(222, 47, 47, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.social-cta-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 56px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.social-cta-card > svg {
    width: 52px;
    height: 52px;
    stroke: #ffffff;
    stroke-width: 1.5;
    fill: none;
    margin-bottom: 24px;
}

.social-cta-card h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.social-cta-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 36px;
}

.social-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-social-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #0085ff;
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-social-primary:hover {
    background: #0073e6;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 133, 255, 0.3);
}

.btn-social-primary svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.btn-social-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-social-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-social-secondary svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Company/About page responsive */
@media (max-width: 992px) {
    .drives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 60px;
    }
    .about-location-grid {
        grid-template-columns: 1fr;
    }
    .about-location-info {
        padding-right: 0;
        text-align: center;
    }
    .about-location-info-header {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 350px;
        padding: 100px 0 80px;
    }
    .about-hero h1 {
        font-size: 36px;
        letter-spacing: 2px;
    }
    .about-hero p {
        font-size: 17px;
    }
    .drives-section,
    .story-section,
    .about-location-section {
        padding: 70px 0;
    }
    .drives-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .drives-card {
        padding: 40px 32px;
    }
    .story-card {
        padding: 40px 28px;
    }
    .story-card-header h2 {
        font-size: 26px;
    }
    .about-stats-section {
        padding: 60px 0;
    }
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .about-stat-number-dark {
        font-size: 42px;
    }
    .about-location-card {
        padding: 32px 24px;
    }
    .social-cta-card {
        padding: 40px 28px;
    }
    .social-cta-card h2 {
        font-size: 28px;
    }
    .social-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 28px;
    }
    .drives-header h2,
    .about-location-header h2 {
        font-size: 28px;
    }
    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .about-stat-number-dark {
        font-size: 36px;
    }
    .about-stat-label-dark {
        font-size: 12px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 60px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 968px) {
    .nav-menu, .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .navbar-compact .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 24px;
        gap: 0;
        overflow-y: auto;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .navbar-compact .nav-menu.active {
        display: flex;
    }

    .navbar-compact .nav-right {
        width: auto;
    }

    .navbar-compact .nav-search-trigger {
        display: none;
    }

    .navbar-compact .nav-link {
        padding: 16px 0;
        font-size: 16px;
    }

    .navbar-compact .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 12px 16px;
        display: none;
        background: transparent;
        min-width: unset;
    }

    .navbar-compact .nav-item.open .dropdown-menu {
        display: block;
    }

    .navbar-compact .dropdown-item {
        padding: 12px 0;
    }

    .navbar-compact .dropdown-item:hover {
        padding-left: 0;
        background: none;
    }

    .navbar-compact .mobile-menu-toggle {
        display: flex;
    }
    
    .carousel-container {
        height: 600px;
    }
    
    .carousel-background {
        padding: 40px;
        flex-direction: column;
        justify-content: center;
    }
    
    .carousel-content {
        text-align: center;
        max-width: 100%;
    }
    
    .carousel-title {
        font-size: 48px;
    }
    
    .carousel-description {
        font-size: 16px;
    }
    
    .carousel-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .carousel-visual {
        display: none;
    }

    .carousel-title-apple {
        font-size: 24px;
        white-space: normal;
    }

    .carousel-description-apple {
        font-size: 16px;
    }

    .carousel-subtitle-row-apple {
        flex-direction: column;
        gap: 10px;
    }

    .mac-app-store-badge img {
        width: 140px;
        height: auto;
    }

    .carousel-content-spider {
        padding-top: 30px;
    }

    .carousel-title-spider {
        font-size: 28px;
        max-width: 60%;
    }

    .carousel-description-spider {
        font-size: 15px;
        max-width: 55%;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow-left {
        left: 15px;
    }
    
    .carousel-arrow-right {
        right: 15px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle::before,
    .hero-subtitle::after {
        display: none;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }

    .footer-legal a:first-child {
        padding-left: 0;
    }
    
    .section-header h2 {
        font-size: 42px;
    }
    
    .hero-title {
        font-size: 64px;
    }
    
    .carousel-title {
        font-size: 56px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        height: 500px;
    }
    
    .carousel-background {
        padding: 20px;
    }
    
    .carousel-title {
        font-size: 32px;
    }
    
    .spotlight-text h2 {
        font-size: 36px;
    }
    
    .spotlight-buttons {
        flex-direction: column;
    }
    
    .spotlight-buttons .btn-large {
        width: 100%;
    }
    
    .carousel-subtitle {
        font-size: 12px;
        padding-left: 40px;
    }
    
    .carousel-subtitle::before {
        width: 25px;
    }
    
    .carousel-description {
        font-size: 14px;
    }

    .carousel-content-apple {
        padding-top: 16px;
    }

    .carousel-title-apple {
        font-size: 18px;
        white-space: normal;
    }

    .carousel-subtitle-row-apple {
        flex-direction: column;
        gap: 8px;
    }

    .carousel-description-apple {
        font-size: 13px;
    }

    .mac-app-store-badge img {
        width: 120px;
        height: auto;
    }

    .carousel-content-spider {
        padding-top: 16px;
    }

    .carousel-title-spider {
        font-size: 20px;
        max-width: 55%;
    }

    .carousel-description-spider {
        font-size: 13px;
        max-width: 50%;
    }

    .carousel-content-spider .app-store-badge img {
        width: 120px;
        height: auto;
    }
    
    .carousel-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .carousel-buttons .btn-large {
        width: 100%;
    }
    
    .carousel-dots {
        padding: 16px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .btn-large {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .game-card {
        min-width: unset;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .logo h1 {
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    .games-grid-modern {
        grid-template-columns: 1fr;
        max-width: 550px;
    }
}

@media (max-width: 768px) {
    .games-hero {
        min-height: 350px;
        padding: 120px 0 80px;
    }
    .games-hero h1 {
        font-size: 36px;
    }
    .games-hero p {
        font-size: 17px;
    }
    .hero-buttons-games {
        flex-direction: column;
        align-items: center;
    }
    .section-header-modern h2 {
        font-size: 32px;
    }
    .game-card-content {
        padding: 24px;
    }
    .game-card-title {
        font-size: 22px;
    }
    .game-card-footer {
        flex-direction: column;
    }
}

/* ============================================
   FAQ ARTICLE PAGE
   ============================================ */

.faq-article-section {
    padding: 120px 0 100px;
    background: #fbfbfd;
}

.faq-article-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.faq-article-header {
    padding: 40px 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.category-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-text);
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 0.2s ease;
}

.category-back-link:hover {
    color: var(--primary-color);
}

.category-back-link svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.category-back-link:hover svg {
    transform: translateX(-2px);
}

.faq-article-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--light-text);
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.faq-article-summary {
    font-size: 18px;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 0;
}

.faq-article-body {
    padding: 50px;
}

.faq-article-body p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 25px;
}

.faq-article-body h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--light-text);
    margin: 50px 0 25px;
    padding-left: 18px;
    border-left: 4px solid var(--primary-color);
    letter-spacing: 0.3px;
}

.faq-article-body ol,
.faq-article-body ul {
    margin: 25px 0 35px;
    padding-left: 0;
    list-style: none;
}

.faq-article-body ol {
    counter-reset: step-counter;
}

.faq-article-body ol li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 25px;
    counter-increment: step-counter;
}

.faq-article-body ol li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.faq-article-body ol li strong {
    display: block;
    font-size: 17px;
    color: var(--light-text);
    margin-bottom: 8px;
}

.faq-article-body ol li p {
    margin: 0;
    font-size: 16px;
}

.faq-article-body ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-text);
}

.faq-article-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.faq-article-body ul li strong {
    color: var(--light-text);
}

.faq-article-body strong {
    color: var(--light-text);
}

/* Tip & Warning Boxes */
.faq-tip-box,
.faq-warning-box {
    display: flex;
    gap: 20px;
    padding: 25px 30px;
    border-radius: 12px;
    margin: 35px 0;
}

.faq-tip-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #86efac;
}

.faq-warning-box {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #fcd34d;
}

.tip-icon,
.warning-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.tip-content strong,
.warning-content strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--light-text);
}

.tip-content p,
.warning-content p {
    font-size: 15px !important;
    color: var(--gray-text);
    margin: 0 !important;
    line-height: 1.6;
}

.faq-article-updated-bottom {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 50px;
}

/* Related Articles */
.faq-related-articles {
    padding: 40px 50px;
    background: #fbfbfd;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-related-articles h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.related-articles-icon {
    width: 20px;
    height: 20px;
    stroke: var(--gray-text);
}

.faq-related-articles ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq-related-articles li {
    margin-bottom: 12px;
}

.faq-related-articles a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: transform 0.3s ease;
    display: inline-block;
}

.faq-related-articles a:hover {
    transform: translateX(5px);
}

/* Article CTA */
.faq-article-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px 50px;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-article-cta p {
    font-size: 16px;
    color: var(--gray-text);
    margin: 0;
}

.faq-article-cta .btn-primary {
    color: #ffffff !important;
}

/* ============================================
   FAQ ARTICLES LIST (category page)
   ============================================ */

.articles-section {
    padding: 50px 0 100px;
    background: #ffffff;
}

.articles-list {
    max-width: 900px;
    margin: 0 auto;
}

.articles-list-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.article-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: #f8f9fa;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.article-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gray-text);
    transition: color 0.3s ease;
}

.article-card:hover .article-icon {
    color: var(--primary-color);
}

.article-card .article-content {
    flex: 1;
}

.article-card .article-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.article-card .article-summary {
    font-size: 14px;
    color: var(--gray-text);
    margin: 0;
    line-height: 1.6;
}

.article-arrow {
    font-size: 18px;
    color: var(--gray-text);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.article-card:hover .article-arrow {
    color: var(--primary-color);
    transform: translateX(4px);
}

.back-link-container {
    margin-top: 40px;
    text-align: center;
}

.back-link-container .back-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 15px;
}

/* ============================================
   CONTACT CTA SECTION
   ============================================ */

.contact-cta-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-cta-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.contact-cta-card h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.contact-cta-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.contact-cta-card p {
    font-size: 17px;
    color: var(--gray-text);
    margin-top: 25px;
    margin-bottom: 28px;
}

/* ============================================
   BREADCRUMBS
   ============================================ */

.support-hero .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 16px 0;
}

.support-hero .breadcrumb-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.support-hero .breadcrumb-link:hover {
    color: #ffffff !important;
}

.support-hero .breadcrumb-chevron {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.support-hero .breadcrumb-current {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
}

/* Breadcrumbs partial (ol/li format) */
.breadcrumbs ol {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
    padding: 16px 0;
    margin: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumbs li + li::before {
    content: '›';
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: #ffffff !important;
}

.breadcrumbs span[aria-current] {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Light breadcrumbs (article header) */
.article-header .breadcrumbs li + li::before {
    color: rgba(0, 0, 0, 0.3);
}

.article-header .breadcrumbs a {
    color: var(--gray-text) !important;
}

.article-header .breadcrumbs a:hover {
    color: var(--primary-color) !important;
}

.article-header .breadcrumbs span[aria-current] {
    color: var(--light-text);
}

/* Support page breadcrumbs (dark hero) */
.support-hero .breadcrumbs {
    margin-bottom: 20px;
}

/* ============================================
   FAQ & ARTICLE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .faq-article-container {
        margin: 0 15px;
        border-radius: 16px;
    }
    .faq-article-header,
    .faq-article-body,
    .faq-related-articles,
    .faq-article-cta {
        padding-left: 30px;
        padding-right: 30px;
    }
    .faq-article-header h1 {
        font-size: 28px;
    }
    .article-card {
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .faq-article-header,
    .faq-article-body,
    .faq-related-articles {
        padding-left: 20px;
        padding-right: 20px;
    }
    .faq-article-header h1 {
        font-size: 24px;
    }
    .faq-article-body h3 {
        font-size: 20px;
    }
    .faq-article-cta {
        flex-direction: column;
        gap: 15px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .article-card {
        padding: 18px;
    }
}

/* ============================================
   FAQ CLEAN HERO (replaces red gradient for FAQ pages)
   ============================================ */

.faq-hero-clean {
    padding: 50px 0 0;
    background: #ffffff;
    text-align: center;
    position: relative;
}

.faq-hero-clean--no-breadcrumb {
    padding-top: 130px;
}

.faq-hero-clean-content {
    position: relative;
    z-index: 1;
}

.faq-hero-icon-large {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.faq-hero-icon-large img {
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.faq-hero-clean-content h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: var(--light-text);
}

.faq-hero-clean-content p {
    font-size: 18px;
    color: var(--gray-text);
    margin-top: 25px;
    margin-bottom: 0;
}

/* ============================================
   FAQ CLEAN HERO RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .faq-hero-clean {
        padding: 40px 0 0;
    }
    .faq-hero-clean--no-breadcrumb {
        padding-top: 110px;
    }
    .faq-hero-clean-content h1 {
        font-size: 36px;
    }
    .faq-hero-icon-large img {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .faq-hero-clean-content h1 {
        font-size: 28px;
    }
    .faq-hero-clean-content p {
        font-size: 16px;
    }
    .article-card {
        padding: 20px;
        gap: 14px;
    }
    .article-icon {
        width: 26px;
        height: 26px;
    }
    .article-icon svg {
        width: 20px;
        height: 20px;
    }
    .contact-cta-card {
        padding: 40px 24px;
    }
    .contact-cta-card h2 {
        font-size: 24px;
    }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: #1d1d1f;
    color: #f5f5f7;
    padding: 16px 20px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-banner-content a {
    color: #58a6ff !important;
    text-decoration: underline !important;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cookie-btn-accept {
    background: var(--primary-color);
    color: #fff;
}

.cookie-btn-reject {
    background: transparent;
    color: #f5f5f7;
    border: 1px solid #555;
}

@media (max-width: 600px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================
   Search — Nav Trigger
   ============================================================ */

.nav-search-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #1a1a1a;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    flex-shrink: 0;
}

.nav-search-trigger:hover {
    background: #f0f0f0;
    color: var(--primary-color);
}

/* ============================================================
   Search — Overlay
   ============================================================ */

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    padding-top: 12vh;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.search-overlay-visible {
    opacity: 1;
    pointer-events: auto;
}

.search-overlay-visible .search-modal {
    transform: translateY(0);
}

.search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.search-modal {
    position: relative;
    width: 100%;
    max-width: 620px;
    max-height: 70vh;
    margin: 0 16px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(-12px);
    transition: transform 0.2s ease;
}

/* Input */
.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

.search-input-icon {
    flex-shrink: 0;
    color: #999;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
    color: var(--light-text);
    background: transparent;
}

.search-input::placeholder {
    color: #aaa;
}

.search-kbd {
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 7px;
    border-radius: 5px;
    background: #f2f2f2;
    color: #888;
    border: 1px solid #ddd;
    line-height: 1;
    flex-shrink: 0;
}

/* Results container */
.search-results {
    overflow-y: auto;
    flex: 1;
    padding: 8px 0;
}

/* Groups */
.search-result-group {
    padding: 4px 0;
}

.search-result-group-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #999;
    padding: 8px 20px 4px;
}

/* Individual result */
.search-result-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 20px;
    color: inherit !important;
    text-decoration: none !important;
    cursor: pointer;
    transition: background 0.1s;
    border-radius: 0;
}

.search-result-item:hover,
.search-result-item-active {
    background: #f6f6f8;
}

.search-result-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.search-result-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--light-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-desc {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Badge */
.search-result-badge {
    font-family: 'Rajdhani', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 3px;
    line-height: 1.4;
}

.search-result-badge--game {
    background: #fef2f2;
    color: var(--primary-color);
}

.search-result-badge--extra {
    background: #f0f9ff;
    color: #0369a1;
}

.search-result-badge--support {
    background: #f0fdf4;
    color: #15803d;
}

.search-result-badge--page {
    background: #f5f3ff;
    color: #7c3aed;
}

/* Highlight */
.search-highlight {
    background: #fff3cd;
    color: inherit;
    border-radius: 2px;
    padding: 0 1px;
}

/* Empty states */
.search-empty {
    padding: 32px 20px;
    text-align: center;
}

.search-empty-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 4px;
}

.search-empty-hint {
    font-size: 13px;
    color: #999;
}

.search-shortcut-hints {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    font-size: 12px;
    color: #aaa;
}

.search-shortcut-hints kbd {
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    padding: 2px 5px;
    border-radius: 4px;
    background: #f2f2f2;
    color: #888;
    border: 1px solid #ddd;
    margin: 0 2px;
}

/* View all link */
.search-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 20px;
    border-top: 1px solid #eee;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-color) !important;
    text-decoration: none !important;
    transition: background 0.15s;
}

.search-view-all:hover {
    background: #fafafa;
}

/* ============================================================
   Search — Results Page (/search)
   ============================================================ */

.search-page-hero {
    background: var(--black-gradient);
    padding: 120px 0 48px;
    text-align: center;
}

.search-page-count {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.search-page-query {
    font-family: 'Rajdhani', sans-serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1.2;
}

.search-page-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
}

.search-page-body {
    padding: 40px 0 80px;
}

/* Page search input */
.search-page-form {
    max-width: 560px;
    margin: 0 auto 32px;
}

.search-page-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    transition: border-color 0.2s;
}

.search-page-input-wrapper:focus-within {
    border-color: var(--primary-color);
}

.search-page-input-icon {
    flex-shrink: 0;
    color: #999;
}

.search-page-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: var(--light-text);
    background: transparent;
}

.search-page-input::placeholder {
    color: #aaa;
}

.search-page-clear {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 20px;
    color: #999 !important;
    text-decoration: none !important;
    border-radius: 50%;
    transition: background 0.15s, color 0.15s;
}

.search-page-clear:hover {
    background: #f0f0f0;
    color: var(--light-text) !important;
}

/* Category tabs */
.search-page-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.search-tab {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 24px;
    color: var(--gray-text) !important;
    text-decoration: none !important;
    border: 1px solid #e5e5e5;
    transition: all 0.15s;
}

.search-tab:hover {
    border-color: #ccc;
    background: #fafafa;
}

.search-tab-active {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color) !important;
}

/* Result rows list */
.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.search-result-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    color: inherit !important;
    text-decoration: none !important;
    transition: box-shadow 0.2s, border-color 0.2s, background 0.2s;
}

.search-result-row:hover {
    border-color: #ddd;
    background: #fafafa;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.search-result-row:hover .search-result-row-arrow {
    opacity: 1;
    transform: translateX(3px);
}

.search-result-row-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    margin-top: 2px;
}

.search-result-row-icon--app {
    border-radius: 8px;
}

.search-result-row-icon--svg {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0f0f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.search-result-row-icon--svg svg {
    width: 20px;
    height: 20px;
}

.search-result-row-icon--default {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0f0f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.search-result-row-content {
    flex: 1;
    min-width: 0;
}

.search-result-row-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--light-text);
    line-height: 1.3;
    margin-bottom: 2px;
}

.search-result-row-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 4px;
}

.search-result-row-desc {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-result-row-desc mark {
    background: rgba(222, 47, 47, 0.12);
    color: var(--primary-color);
    padding: 1px 2px;
    border-radius: 2px;
    font-weight: inherit;
}

.search-result-row-arrow {
    flex-shrink: 0;
    font-size: 18px;
    color: #ccc;
    margin-top: 6px;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
}

/* Page empty state */
.search-page-empty {
    text-align: center;
    padding: 60px 20px;
}

.search-page-empty-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--light-text);
    margin-bottom: 8px;
}

.search-page-empty-hint {
    font-size: 15px;
    color: var(--gray-text);
}

/* ============================================================
   FAQ Search Page (/support/faq/search) — EA-Inspired Redesign
   ============================================================ */

/* Hero */
.faq-search-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 120px 0 40px;
    text-align: center;
}

.faq-search-hero-content {
    max-width: 660px;
    margin: 0 auto;
}

.faq-search-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 8px;
}

.faq-search-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
}

/* Search form */
.faq-search-form {
    max-width: 560px;
    margin: 0 auto;
}

.faq-search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-search-input-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 0 0 3px rgba(222, 47, 47, 0.12);
}

.faq-search-input-icon {
    flex-shrink: 0;
    color: #999;
}

.faq-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    background: transparent;
    color: var(--light-text);
}

.faq-search-input::placeholder {
    color: #bbb;
}

/* Spinner */
.faq-search-spinner {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: #bbb;
    animation: faq-spin 0.8s linear infinite;
}

@keyframes faq-spin {
    to { transform: rotate(360deg); }
}

/* Clear button */
.faq-search-clear {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #999 !important;
    text-decoration: none !important;
    border: none;
    background: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.faq-search-clear:hover {
    background: #f0f0f0;
    color: #333 !important;
}

/* ── Filter chips ── */
.faq-filter-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.faq-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.faq-chip:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.faq-chip--active {
    background: #fff;
    color: var(--light-text);
    border-color: #fff;
}

.faq-chip--active:hover {
    background: #fff;
    color: var(--light-text);
}

.faq-chip-icon {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    flex-shrink: 0;
}

/* ── Body ── */
.faq-search-body {
    padding: 40px 0 80px;
    min-height: 400px;
    background: #f9fafb;
}

/* ── Results header ── */
.faq-search-results-header {
    margin-bottom: 24px;
}

.faq-search-results-count {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--gray-text);
}

.faq-search-results-count strong {
    color: var(--light-text);
}

/* ── Result cards ── */
.faq-search-results-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-result-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    color: inherit !important;
    text-decoration: none !important;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.faq-result-card:hover {
    border-color: #ddd;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.faq-result-card:hover .faq-result-arrow {
    opacity: 1;
    transform: translateX(3px);
}

.faq-result-card.faq-result-card--hidden {
    display: none;
}

.faq-result-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.faq-result-icon img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.faq-result-icon svg {
    color: #888;
}

.faq-result-body {
    flex: 1;
    min-width: 0;
}

.faq-result-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--light-text);
    line-height: 1.3;
    margin-bottom: 2px;
}

.faq-result-meta {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.faq-result-snippet {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.faq-result-snippet mark {
    background: rgba(222, 47, 47, 0.1);
    color: var(--primary-color);
    padding: 1px 3px;
    border-radius: 3px;
    font-weight: inherit;
}

.faq-result-arrow {
    flex-shrink: 0;
    color: #ccc;
    margin-top: 8px;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
}

/* ── No results ── */
.faq-search-no-results {
    text-align: center;
    padding: 60px 20px;
}

.faq-no-results-icon {
    margin-bottom: 20px;
    color: #ccc;
}

.faq-no-results-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--light-text);
    margin-bottom: 8px;
}

.faq-no-results-hint {
    font-size: 15px;
    color: var(--gray-text);
    margin-bottom: 32px;
}

/* ── Empty state ── */
.faq-search-empty-state {
    max-width: 800px;
    margin: 0 auto;
}

/* Section headings */
.faq-section-heading {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--light-text);
    margin-bottom: 16px;
}

/* ── Popular questions ── */
.faq-popular-section {
    margin-bottom: 48px;
}

.faq-popular-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-popular-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    color: inherit !important;
    text-decoration: none !important;
    transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.faq-popular-row:hover {
    background: #fafafa;
    border-color: #e0e0e0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.faq-popular-row:hover .faq-popular-arrow {
    opacity: 1;
    transform: translateX(3px);
}

.faq-popular-title {
    flex: 1;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--light-text);
}

.faq-popular-category {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-text);
    white-space: nowrap;
}

.faq-popular-arrow {
    flex-shrink: 0;
    color: #ccc;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
}

/* ── Browse by topic ── */
.faq-browse-section {
    margin-bottom: 40px;
}

.faq-browse-topics {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.faq-browse-topics--compact {
    max-width: 640px;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.faq-topic-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 16px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    text-align: center;
    color: inherit !important;
    text-decoration: none !important;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.faq-topic-card:hover {
    border-color: #ddd;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.faq-topic-card--small {
    padding: 16px 12px;
    gap: 6px;
}

.faq-topic-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-topic-icon img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.faq-topic-icon svg {
    width: 32px;
    height: 32px;
    color: #666;
}

.faq-topic-card h3.faq-topic-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--light-text);
    line-height: 1.3;
}

span.faq-topic-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--light-text);
}

.faq-topic-count {
    font-size: 12px;
    color: var(--gray-text);
}

/* ── Quick actions ── */
.faq-quick-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-top: 12px;
}

.faq-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    color: inherit !important;
    text-decoration: none !important;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.faq-action-btn--primary {
    background: var(--primary-color);
    color: #fff !important;
}

.faq-action-btn--primary:hover {
    background: #c42626;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(222, 47, 47, 0.25);
}

.faq-action-btn--outline {
    background: transparent;
    border: 1px solid #ddd;
    color: var(--light-text) !important;
}

.faq-action-btn--outline:hover {
    border-color: #bbb;
    background: #fafafa;
}

.faq-action-btn--secondary {
    background: #f5f5f5;
    color: var(--light-text) !important;
}

.faq-action-btn--secondary:hover {
    background: #eee;
}

/* ── Still need help CTA ── */
.faq-help-cta {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.faq-help-cta-inner {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

.faq-help-cta-inner h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--light-text);
    margin-bottom: 8px;
}

.faq-help-cta-inner p {
    font-size: 15px;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.faq-help-cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

/* ── Fade animation for live search ── */
.faq-search-results-list.faq-results-entering {
    animation: faqFadeIn 0.2s ease-out;
}

@keyframes faqFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FAQ Search — Responsive
   ============================================================ */

@media (max-width: 768px) {
    .faq-browse-topics {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 8px;
    }

    .faq-topic-card {
        padding: 18px 12px;
    }

    .faq-help-cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .search-overlay {
        padding-top: 0;
    }

    .search-modal {
        max-width: 100%;
        max-height: 100%;
        height: 100%;
        margin: 0;
        border-radius: 0;
    }

    .search-page-hero {
        padding: 100px 0 32px;
    }

    .search-page-query {
        font-size: 28px;
    }

    .search-page-title {
        font-size: 28px;
    }

    .search-result-row {
        padding: 14px 16px;
        gap: 12px;
    }

    .search-result-row-icon {
        width: 28px;
        height: 28px;
    }

    .search-result-row-icon--svg,
    .search-result-row-icon--default {
        width: 28px;
        height: 28px;
    }

    .search-result-row-icon--svg svg {
        width: 16px;
        height: 16px;
    }

    .search-result-row-arrow {
        display: none;
    }

    .search-page-tabs {
        gap: 6px;
    }

    .search-tab {
        font-size: 12px;
        padding: 6px 14px;
    }

    .faq-search-hero {
        padding: 100px 0 28px;
    }

    .faq-search-title {
        font-size: 26px;
    }

    .faq-search-body {
        padding: 24px 0 60px;
    }

    .faq-filter-chips {
        gap: 6px;
        margin-top: 16px;
    }

    .faq-chip {
        font-size: 11px;
        padding: 5px 12px;
    }

    .faq-result-card {
        padding: 16px;
        gap: 12px;
    }

    .faq-result-icon {
        width: 32px;
        height: 32px;
    }

    .faq-result-icon img {
        width: 28px;
        height: 28px;
    }

    .faq-result-arrow {
        display: none;
    }

    .faq-result-title {
        font-size: 16px;
    }

    .faq-popular-row {
        padding: 12px 14px;
    }

    .faq-popular-category {
        display: none;
    }

    .faq-popular-arrow {
        opacity: 1;
    }

    .faq-browse-topics--compact {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .faq-quick-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================================
   Sitemap Page
   ============================================================ */

.sitemap-page {
    padding: 120px 0 100px;
}

.sitemap-heading {
    font-family: 'Rajdhani', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--light-text);
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 48px;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 40px;
}

.sitemap-section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--light-text);
    margin-bottom: 14px;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list li {
    margin-bottom: 6px;
}

.sitemap-list a {
    font-size: 14px;
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
    padding: 2px 0;
}

.sitemap-list a:hover {
    color: var(--primary-color);
}

.sitemap-sublist {
    list-style: none;
    padding: 4px 0 0 16px;
    margin: 0;
}

.sitemap-sublist li {
    margin-bottom: 4px;
}

.sitemap-sublist a {
    font-size: 13px;
}

@media (max-width: 900px) {
    .sitemap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sitemap-page {
        padding: 100px 0 60px;
    }

    .sitemap-heading {
        font-size: 26px;
    }

    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* ============================================
   Advertising Page
   ============================================ */

.advertising-hero {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 30%, #16213e 60%, #0f3460 100%);
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.advertising-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(222, 47, 47, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(0, 133, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.advertising-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.advertising-hero-label {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(222, 47, 47, 0.9);
    margin-bottom: 20px;
    padding: 6px 20px;
    border: 1px solid rgba(222, 47, 47, 0.3);
    border-radius: 4px;
}

.advertising-hero h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    line-height: 1.1;
}

.advertising-hero p {
    font-family: 'Roboto', sans-serif;
    font-size: 19px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 40px;
}

.advertising-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-advertising-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #de2f2f 0%, #b82828 100%);
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-advertising-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(222, 47, 47, 0.3);
}

.btn-advertising-primary svg {
    width: 18px;
    height: 18px;
}

.btn-advertising-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-advertising-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-advertising-secondary svg {
    width: 18px;
    height: 18px;
}

/* Why Advertise Section */
.advertising-why-section {
    background: #ffffff;
    padding: 100px 0;
}

.advertising-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.advertising-section-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.advertising-section-header p {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    color: #666;
}

.advertising-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.advertising-why-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 48px 36px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.advertising-why-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.advertising-why-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.advertising-why-icon svg {
    width: 40px;
    height: 40px;
    stroke: #1a1a1a;
}

.advertising-why-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.advertising-why-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* iOS Advertising Platform Section */
.advertising-platform-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.advertising-platform-header {
    text-align: center;
    margin-bottom: 56px;
}

.advertising-platform-badge {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.advertising-platform-badge svg {
    width: 36px;
    height: 36px;
    stroke: #ffffff;
}

.advertising-platform-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.advertising-platform-header p {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    color: #666;
}

.advertising-ios-content {
    max-width: 1000px;
    margin: 0 auto;
}

.advertising-how-it-works {
    margin-bottom: 64px;
}

.advertising-how-it-works > h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.advertising-how-it-works > p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.advertising-how-it-works > p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.advertising-how-it-works > p a:hover {
    text-decoration: underline;
}

.advertising-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.advertising-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.advertising-step:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.advertising-step-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #de2f2f 0%, #b82828 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.advertising-step-content h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.advertising-step-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.advertising-step-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.advertising-step-content a:hover {
    text-decoration: underline;
}

.advertising-step-content code {
    background: #f0f0f0;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 13px;
    font-family: 'Space Mono', monospace;
    color: #1a1a1a;
}

/* Ad Format Cards */
.advertising-formats {
    margin-bottom: 48px;
}

.advertising-formats > h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.advertising-formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ad-format-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.ad-format-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.ad-format-icon {
    width: 60px;
    height: 60px;
    background: rgba(222, 47, 47, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ad-format-icon svg {
    width: 28px;
    height: 28px;
    stroke: #de2f2f;
}

.ad-format-card h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ad-format-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* iOS CTA */
.advertising-ios-cta {
    text-align: center;
    padding-top: 16px;
}

.btn-advertising-google {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: #1a73e8;
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-advertising-google:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 115, 232, 0.3);
}

.btn-advertising-google svg {
    width: 18px;
    height: 18px;
}

.advertising-ios-note {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #888;
    margin-top: 20px;
}

.advertising-ios-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.advertising-ios-note a:hover {
    text-decoration: underline;
}

/* macOS Advertising Section */
.advertising-macos-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.advertising-macos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(222, 47, 47, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 133, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.advertising-macos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.advertising-platform-badge-light {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.advertising-platform-badge-light svg {
    stroke: #ffffff;
}

.advertising-macos-info h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.advertising-macos-info > p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 32px;
}

.advertising-macos-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.advertising-macos-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.advertising-macos-feature svg {
    width: 20px;
    height: 20px;
    stroke: #de2f2f;
    flex-shrink: 0;
}

.advertising-macos-feature span {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.advertising-macos-cta-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.advertising-macos-cta-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.advertising-macos-cta-card > p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

.btn-advertising-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #de2f2f 0%, #b82828 100%);
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-advertising-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(222, 47, 47, 0.35);
}

.btn-advertising-contact svg {
    width: 20px;
    height: 20px;
}

/* CTA Section */
.advertising-cta-section {
    background: #0a0a1a;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.advertising-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(222, 47, 47, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 133, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.advertising-cta-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.advertising-cta-card h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.advertising-cta-card > p {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 48px;
}

.advertising-cta-paths {
    display: flex;
    gap: 48px;
    align-items: stretch;
    justify-content: center;
}

.advertising-cta-path {
    flex: 1;
    max-width: 320px;
    padding: 36px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advertising-cta-path h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.advertising-cta-path > p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 24px;
}

.advertising-cta-path .btn-advertising-primary {
    margin-top: auto;
}


/* Advertising Page Responsive */
@media (max-width: 1024px) {
    .advertising-macos-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .advertising-macos-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .advertising-macos-features {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .advertising-hero {
        padding: 120px 0 80px;
    }
    .advertising-hero h1 {
        font-size: 42px;
        letter-spacing: 2px;
    }
    .advertising-hero p {
        font-size: 16px;
    }
    .advertising-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .advertising-why-section,
    .advertising-platform-section,
    .advertising-macos-section {
        padding: 70px 0;
    }
    .advertising-section-header h2,
    .advertising-platform-header h2,
    .advertising-macos-info h2 {
        font-size: 32px;
    }
    .advertising-why-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .advertising-formats-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .advertising-step {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        align-items: center;
    }
    .advertising-cta-paths {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .advertising-cta-path {
        max-width: 100%;
        width: 100%;
    }
    .advertising-cta-card h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .advertising-hero h1 {
        font-size: 32px;
    }
    .advertising-section-header h2,
    .advertising-platform-header h2,
    .advertising-macos-info h2 {
        font-size: 28px;
    }
    .advertising-why-card {
        padding: 36px 24px;
    }
    .advertising-step {
        padding: 24px;
    }
    .advertising-macos-cta-card {
        padding: 36px 24px;
    }
}

