* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --emp-accent: #611BE2;
    --emp-accent-dark: #4a12b8;
    --emp-bg-dark: #000000;
    --emp-bg-white: #FFFFFF;
    --emp-text-dark: #111827;
    --emp-shadow: rgba(97, 27, 226, 0.15);
    --emp-border-radius: 24px;
    --emp-border-radius-sm: 16px;
    --emp-border-radius-lg: 32px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--emp-text-dark);
    background: var(--emp-bg-white);
    overflow-x: hidden;
}

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

/* =====================================================
   HEADER
   ===================================================== */
.emp-header {
    background: var(--emp-bg-dark);
    box-shadow: 0 4px 24px var(--emp-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.emp-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
    position: relative;
}

.emp-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.emp-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--emp-bg-white);
    text-decoration: none;
}

.emp-logo i {
    font-size: 28px;
    color: var(--emp-accent);
}

.emp-logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--emp-bg-white);
    letter-spacing: -0.3px;
    white-space: nowrap;
    line-height: 1.2;
}
.emp-logo-br {
    display: none;
}

.emp-nav {
    display: none;
    gap: 32px;
}

.emp-nav-link {
    color: var(--emp-bg-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    padding: 8px 0;
}

.emp-nav-link:hover {
    color: var(--emp-accent);
}

.emp-nav.active {
    /* disabled — mobile menu is now out-of-header, see .emp-mobile-menu */
}

/* In-flow mobile menu (outside <header>, like csdrop) */
.emp-mobile-menu {
    display: none;
    background: var(--emp-bg-dark);
    padding: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.emp-mobile-menu.open {
    max-height: 1200px;
}

.emp-mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 4px;
}

.emp-mobile-nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s;
}

.emp-mobile-nav-link:hover {
    color: var(--emp-accent);
}

.emp-mobile-cta {
    display: block;
    background: var(--emp-accent);
    color: #fff;
    text-align: center;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    margin-top: 12px;
    transition: background 0.2s;
}

.emp-mobile-cta:hover {
    background: var(--emp-accent-dark);
}

/* Nav CTA in desktop nav — always hidden (only the out-of-header mobile menu has the CTA) */
.emp-nav-cta {
    display: none !important;
}

/* Header CTA (hidden on mobile) */
.emp-btn--header {
    display: none;
}

.emp-mobile-menu-toggle {
    display: block;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--emp-bg-white);
    cursor: pointer;
}

/* =====================================================
   CTA BUTTON
   ===================================================== */
.emp-cta-button {
    background: var(--emp-accent);
    color: var(--emp-bg-white);
    padding: 14px 32px;
    border-radius: var(--emp-border-radius);
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(97, 27, 226, 0.3);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.emp-cta-button:hover {
    background: var(--emp-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(97, 27, 226, 0.4);
}

.emp-cta-large {
    padding: 18px 48px;
    font-size: 18px;
}

/* =====================================================
   HERO
   ===================================================== */
.emp-hero {
    padding: 40px 0 60px;
    background: linear-gradient(135deg, rgba(97, 27, 226, 0.08) 0%, rgba(97, 27, 226, 0.03) 100%);
}

.emp-hero--centered {
    text-align: center;
}

.emp-hero--centered .emp-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.emp-hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(97, 27, 226, 0.15);
    border: 2px solid var(--emp-accent);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--emp-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.emp-hero-content {
    text-align: center;
}

.emp-hero-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--emp-text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.emp-hero-description {
    font-size: 18px;
    color: var(--emp-text-dark);
    margin-bottom: 24px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   PROMO CODE BLOCK
   ===================================================== */
.emp-promo-code {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(97, 27, 226, 0.08);
    border-radius: var(--emp-border-radius);
    margin-bottom: 24px;
    overflow: visible;
}

.emp-promo-code__icon {
    width: 48px;
    height: 48px;
    font-size: 48px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: emp-promo-flip 1.5s ease-in-out infinite;
}

@keyframes emp-promo-flip {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

.emp-promo-code__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    text-align: center;
}

.emp-promo-code__title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--emp-text-dark);
    margin: 0;
}

.emp-promo-code__description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--emp-text-dark);
    opacity: 0.8;
    margin: 0;
}

.emp-promo-code__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
}

.emp-promo-code__display {
    border: 2px dashed var(--emp-accent);
    padding: 12px 16px;
    border-radius: var(--emp-border-radius-sm);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 700;
    font-size: 18px;
    color: var(--emp-text-dark);
    background: transparent;
    text-align: center;
    letter-spacing: 0.05em;
}

.emp-promo-code__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    width: 100%;
    border-radius: var(--emp-border-radius-sm);
    background: var(--emp-accent);
    color: var(--emp-bg-white);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s ease;
    box-shadow: 0 4px 16px rgba(97, 27, 226, 0.3);
}

.emp-promo-code__btn:hover {
    background: var(--emp-accent-dark);
    transform: scale(1.02);
}

.emp-promo-code__btn:active {
    transform: scale(0.98);
}

.emp-promo-code__btn:focus {
    outline: 2px solid var(--emp-accent);
    outline-offset: 2px;
}

.emp-promo-code__btn svg {
    width: 20px;
    height: 20px;
}

.emp-promo-code__btn .icon-copy { display: block; }
.emp-promo-code__btn .icon-copied { display: none; }
.emp-promo-code__btn.copied .icon-copy { display: none; }
.emp-promo-code__btn.copied .icon-copied { display: block; }

.emp-promo-code__btn.copied {
    background: #25B896;
    color: #FFFFFF;
}

/* Hero Promo Code Variant */
.emp-promo-code--hero {
    max-width: 500px;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
    background: var(--emp-bg-white);
    border: 2px solid var(--emp-accent);
    box-shadow: 0 12px 40px var(--emp-shadow);
}

/* =====================================================
   GAMES CAROUSEL
   ===================================================== */
.emp-games-carousel {
    padding: 60px 0;
    background: var(--emp-bg-white);
}

.emp-carousel-container {
    position: relative;
    width: 100%;
    margin: 0;
}

.emp-carousel-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.emp-carousel-slide {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--emp-border-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--emp-shadow);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.emp-carousel-slide:hover {
    transform: scale(1.02);
    border-color: var(--emp-accent);
    box-shadow: 0 8px 32px var(--emp-shadow), 0 0 40px rgba(97, 27, 226, 0.2);
}

.emp-carousel-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.emp-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    display: block;
}

.emp-game-card {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.emp-game-card__image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.emp-game-card__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.emp-game-card:hover .emp-game-card__image-wrapper img {
    transform: scale(1.05);
}

.emp-game-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 12px;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.emp-game-card__badge--hot {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: #FFFFFF;
}

.emp-game-card__badge--new {
    background: linear-gradient(135deg, #25B896, #1ABC9C);
    color: #FFFFFF;
}

.emp-game-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.emp-game-card:hover .emp-game-card__overlay {
    opacity: 1;
}

.emp-game-card__play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--emp-accent);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.85);
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(97, 27, 226, 0.4);
}

.emp-game-card:hover .emp-game-card__play-btn {
    transform: scale(1);
}

.emp-game-card__play-btn:hover {
    background: var(--emp-accent-dark);
    transform: scale(1.1);
}

.emp-game-card__play-btn svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
    margin-left: 3px;
}

@media (hover: none) {
    .emp-game-card__overlay { opacity: 0; }
    .emp-game-card:active .emp-game-card__overlay { opacity: 1; }
}

/* =====================================================
   SECTION LABELS
   ===================================================== */
.emp-section-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--emp-text-dark);
    text-align: center;
    margin-bottom: 20px;
}

.emp-section-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--emp-text-dark);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* =====================================================
   CONTENT SECTION
   ===================================================== */
.emp-content-section {
    padding: 80px 0 20px 0;
    background: var(--emp-bg-white);
}

.emp-content-wrapper {
    margin-bottom: 60px;
}

.emp-text-block {
    margin-bottom: 40px;
}

.emp-text-block h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--emp-text-dark);
    margin-bottom: 24px;
}

.emp-text-block h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--emp-accent);
    margin-top: 32px;
    margin-bottom: 16px;
}

.emp-text-block h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--emp-accent);
    margin-top: 24px;
    margin-bottom: 12px;
}

.emp-text-block p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.emp-text-block a:not(.emp-cta-button) {
    color: var(--emp-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.emp-text-block a:not(.emp-cta-button):hover {
    color: var(--emp-accent-dark);
}

.emp-text-block ul {
    margin: 20px 0;
    padding-left: 24px;
}

.emp-text-block li {
    margin-bottom: 12px;
    font-size: 17px;
}

.emp-inline-image {
    margin: 24px 0;
    text-align: center;
}

.emp-inline-image img {
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: var(--emp-border-radius);
    box-shadow: 0 12px 40px var(--emp-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.emp-inline-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(97, 27, 226, 0.25);
}

/* =====================================================
   HIGHLIGHT BLOCK WITH IMAGE
   ===================================================== */
.emp-highlight-block {
    background: linear-gradient(135deg, rgba(97, 27, 226, 0.12) 0%, rgba(97, 27, 226, 0.06) 100%);
    padding: 40px;
    border-radius: var(--emp-border-radius-lg);
    text-align: center;
    color: var(--emp-text-dark);
    box-shadow: 0 12px 48px var(--emp-shadow);
    border: 2px solid var(--emp-accent);
}

.emp-highlight-block h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--emp-accent);
}

.emp-highlight-block p {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.emp-highlight-block--with-image {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
    align-items: center;
}

.emp-highlight-block--with-image .emp-highlight-content {
    text-align: center;
}

.emp-highlight-block--with-image .emp-highlight-image img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: var(--emp-border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto;
}

/* =====================================================
   CONTENT ROW
   ===================================================== */
.emp-content-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 48px;
}

.emp-content-row--reverse { direction: ltr; }
.emp-content-row__text { direction: ltr; }
.emp-content-row__image { direction: ltr; }

.emp-content-row__image img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: var(--emp-border-radius);
    box-shadow: 0 12px 40px var(--emp-shadow);
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.emp-content-row__image img:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(97, 27, 226, 0.25);
}

.emp-content-row__text h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--emp-text-dark);
    margin-bottom: 20px;
}

.emp-content-row__text h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--emp-accent);
    margin-bottom: 16px;
}

.emp-content-row__text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.emp-content-row__text ul {
    margin: 16px 0;
    padding-left: 24px;
}

.emp-content-row__text li {
    margin-bottom: 12px;
    font-size: 17px;
}

.emp-content-row__text a:not(.emp-cta-button) {
    color: var(--emp-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.emp-content-row__text a:not(.emp-cta-button):hover { color: var(--emp-accent-dark); }

/* =====================================================
   FAQ SECTION
   ===================================================== */
.emp-faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(97, 27, 226, 0.06) 0%, rgba(97, 27, 226, 0.02) 100%);
}

.emp-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.emp-faq-item {
    background: var(--emp-bg-white);
    border-radius: var(--emp-border-radius);
    overflow: hidden;
    box-shadow: 0 4px 24px var(--emp-shadow);
}

.emp-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    transition: background 0.3s;
}

.emp-faq-question:hover {
    background: rgba(97, 27, 226, 0.04);
}

.emp-faq-question h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--emp-text-dark);
    margin: 0;
}

.emp-faq-toggle {
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--emp-accent);
    cursor: pointer;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.emp-faq-item.active .emp-faq-toggle {
    transform: rotate(180deg);
}

.emp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.emp-faq-item.active .emp-faq-answer {
    max-height: 600px;
    padding: 0 24px 24px;
}

.emp-faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--emp-text-dark);
    margin-bottom: 12px;
}

.emp-faq-answer ul {
    padding-left: 24px;
    margin: 12px 0;
}

.emp-faq-answer li {
    font-size: 16px;
    margin-bottom: 8px;
}

/* =====================================================
   FINALE SECTION
   ===================================================== */
.emp-finale-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #611BE2 0%, #4a12b8 100%);
    text-align: center;
}

.emp-finale-content {
    max-width: 800px;
    margin: 0 auto;
}

.emp-finale-title {
    font-size: 44px;
    font-weight: 900;
    color: var(--emp-bg-white);
    margin-bottom: 24px;
}

.emp-finale-subtitle {
    font-size: 20px;
    color: var(--emp-bg-white);
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.92;
}

.emp-finale-section .emp-cta-button {
    background: var(--emp-bg-white);
    color: var(--emp-accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.emp-finale-section .emp-cta-button:hover {
    background: var(--emp-bg-white);
    color: var(--emp-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* =====================================================
   FOOTER
   ===================================================== */
.emp-footer {
    background: var(--emp-bg-dark);
    padding: 60px 0 40px;
}

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

.emp-footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--emp-bg-white);
    margin-bottom: 16px;
}

.emp-footer-links {
    list-style: none;
}

.emp-footer-links li {
    margin-bottom: 12px;
}

.emp-footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s;
}

.emp-footer-links a:hover {
    color: var(--emp-accent);
}

.emp-social-icons {
    display: flex;
    gap: 16px;
}

.emp-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--emp-border-radius-sm);
    color: var(--emp-bg-white);
    text-decoration: none;
    font-size: 22px;
    transition: all 0.3s;
}

.emp-social-icons a:hover {
    background: var(--emp-accent);
    transform: translateY(-4px);
}

.emp-footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.emp-footer-bottom p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* =====================================================
   STICKY BOTTOM CTA
   ===================================================== */
.emp-sticky-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--emp-bg-dark);
    box-shadow: 0 -4px 24px rgba(97, 27, 226, 0.3);
    padding: 16px 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s;
    border-top: 2px solid var(--emp-accent);
}

.emp-sticky-bottom-cta.visible {
    transform: translateY(0);
}

.emp-sticky-cta-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.emp-sticky-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.emp-sticky-cta-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--emp-bg-white);
    text-align: center;
}

/* =====================================================
   MODAL
   ===================================================== */
.emp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

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

.emp-modal {
    background: var(--emp-bg-white);
    border-radius: var(--emp-border-radius-lg);
    padding: 48px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s;
    border-top: 4px solid var(--emp-accent);
}

.emp-modal-overlay.active .emp-modal {
    transform: scale(1);
}

.emp-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--emp-text-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--emp-border-radius-sm);
    transition: all 0.3s;
}

.emp-modal-close:hover {
    background: rgba(97, 27, 226, 0.1);
    color: var(--emp-accent);
}

.emp-modal-content {
    text-align: center;
}

.emp-modal-icon {
    font-size: 56px;
    color: var(--emp-accent);
    margin-bottom: 20px;
}

.emp-modal-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--emp-text-dark);
    margin-bottom: 16px;
}

.emp-modal-text {
    font-size: 17px;
    color: var(--emp-text-dark);
    margin-bottom: 28px;
    line-height: 1.6;
}

/* =====================================================
   PERFORMANCE
   ===================================================== */
.emp-games-carousel,
.emp-content-section,
.emp-faq-section,
.emp-finale-section,
.emp-footer {
    content-visibility: auto;
    contain: layout style paint;
}

/* =====================================================
   RESPONSIVE — mobile < 768px
   ===================================================== */
@media (max-width: 767px) {
    .emp-logo-br {
        display: inline;
    }
    .emp-logo-text {
        font-size: 14px;
        white-space: normal;
    }
    .emp-logo i {
        font-size: 22px;
    }
    .emp-header .emp-logo {
        min-width: 0;
    }
    .emp-header .emp-header-right {
        min-width: 0;
    }
    .emp-header-content {
        gap: 8px;
    }
    .emp-btn--header {
        display: none !important;
    }
    /* Show in-flow mobile menu on mobile */
    .emp-mobile-menu {
        display: block;
    }
    /* Hide desktop nav on mobile */
    .emp-nav {
        display: none !important;
    }
}

/* =====================================================
   RESPONSIVE — 768px
   ===================================================== */
@media (min-width: 768px) {
    /* Hide mobile menu on desktop */
    .emp-mobile-menu {
        display: none !important;
    }

    .emp-nav {
        display: flex;
    }

    .emp-btn--header {
        display: inline-block;
    }

    .emp-mobile-menu-toggle {
        display: none;
    }

    .emp-hero-title {
        font-size: 44px;
    }

    .emp-hero {
        padding: 50px 0 70px;
    }

    .emp-promo-code {
        flex-direction: row;
        align-items: flex-start;
        padding: 24px;
    }

    .emp-promo-code__icon {
        width: 56px;
        height: 56px;
        font-size: 56px;
    }

    .emp-promo-code__content {
        text-align: left;
    }

    .emp-promo-code__title {
        font-size: 22px;
    }

    .emp-promo-code__description {
        font-size: 15px;
    }

    .emp-promo-code__actions {
        flex-direction: row;
        gap: 16px;
    }

    .emp-promo-code__btn {
        width: auto;
        padding: 12px 32px;
    }

    .emp-carousel-track {
        grid-template-columns: repeat(3, 1fr);
    }

    .emp-carousel-slide:nth-child(7) {
        grid-column: 1 / -1;
        aspect-ratio: 32/9;
    }

    .emp-footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .emp-content-row {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .emp-content-row--reverse {
        direction: rtl;
    }

    .emp-content-row__image img {
        max-width: 100%;
    }

    .emp-highlight-block--with-image {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .emp-highlight-block--with-image .emp-highlight-content {
        text-align: left;
    }

    .emp-section-title {
        font-size: 44px;
    }
}

@media (min-width: 1024px) {
    .emp-hero-title {
        font-size: 52px;
    }

    .emp-finale-title {
        font-size: 52px;
    }

    .emp-content-row {
        gap: 80px;
    }

    .emp-content-row__text h2 {
        font-size: 36px;
    }
}

/* =====================================================
   LANG SELECTOR
   ===================================================== */
.lang-selector {
    position: relative;
}
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.35);
    cursor: pointer;
    color: #fff;
    transition: background 0.2s, border-color 0.2s;
}
.lang-toggle:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.6);
}
.lang-toggle .fa-globe {
    font-size: 18px;
    color: #fff;
}
.flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}
.chevron {
    width: 12px;
    height: 12px;
    stroke: #fff;
}
.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: #1a1a2e;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    list-style: none;
    padding: 0.5rem;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 1000;
}
.lang-selector.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-dropdown li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s;
    font-size: 14px;
}
.lang-dropdown li a:hover {
    background: rgba(255,255,255,0.1);
}
.lang-dropdown .flag-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.mobile-lang-selector {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-lang-selector__label {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.mobile-lang-selector__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.mobile-lang-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-size: 12px;
    transition: background 0.2s;
}
.mobile-lang-option:hover,
.mobile-lang-option.active {
    background: rgba(255,255,255,0.15);
}
.mobile-lang-option .flag-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}
.mobile-lang-option .fa-globe {
    font-size: 32px;
    color: currentColor;
}

@media (min-width: 769px) { .mobile-lang-selector { display: none; } }
@media (max-width: 768px)  { .lang-selector         { display: none; } }
