/* CSS Variables — switzerland3 theme: Alpine Emerald / Copper */
:root {
    --se-primary: #E39B4C;
    --se-primary-dark: #C9822F;
    --se-secondary: #0d2b24;
    --se-accent: #0f3a30;
    --se-text: #f3f7f4;
    --se-text-gray: #9fb3ab;
    --se-bg-dark: #061912;
    --se-bg-light: #0d2b24;
    --se-surface: #123a30;
    --se-border: rgba(227, 155, 76, 0.22);
    --se-radius: 14px;
    --se-shadow: 0 6px 24px rgba(0, 0, 0, 0.38);
    --se-transition: all 0.3s ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--se-text);
    background: var(--se-bg-dark);
    overflow-x: hidden;
}

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

a {
    color: var(--se-primary);
    text-decoration: none;
    transition: var(--se-transition);
}

a:hover {
    color: var(--se-primary-dark);
}

/* Header */
.se-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--se-bg-light);
    border-bottom: 1px solid var(--se-border);
}

.se-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px;
    max-width: 1400px;
    margin: 0 auto;
}

.se-head__left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.se-logo {
    display: block;
}

.se-burger {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--se-border);
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.se-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--se-primary);
    transition: var(--se-transition);
}

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

.se-nav a {
    font-size: 16px;
    font-weight: 600;
    color: var(--se-text);
    position: relative;
}

.se-nav a.active {
    color: var(--se-primary);
}

.se-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--se-primary);
    transition: var(--se-transition);
}

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

.se-head__actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Language Switcher */
.lang-switch{display:flex;align-items:center;gap:6px}
.lang-switch__item{display:inline-flex;align-items:center;gap:5px;font-size:13px;font-weight:700;line-height:1;text-decoration:none;color:inherit;opacity:.6;padding:4px 7px;border-radius:6px;transition:opacity .15s,background .15s}
.lang-switch__item:hover{opacity:1}
.lang-switch__item.is-active{opacity:1;background:rgba(255,255,255,.12)}
.lang-flag{display:block;border-radius:2px;box-shadow:0 0 0 1px rgba(0,0,0,.2)}
@media (max-width:600px){.lang-switch__item span{display:none}}

/* Buttons */
.se-btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    border-radius: var(--se-radius);
    transition: var(--se-transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.se-btn--primary {
    background: linear-gradient(135deg, var(--se-primary), var(--se-primary-dark));
    color: var(--se-secondary);
    border-color: var(--se-primary);
}

.se-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.se-btn--ghost {
    background: transparent;
    color: var(--se-primary);
    border-color: var(--se-primary);
}

.se-btn--ghost:hover {
    background: var(--se-primary);
    color: var(--se-secondary);
}

.se-btn--hero {
    padding: 16px 48px;
    font-size: 18px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border: 2px solid transparent;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.se-btn--hero:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.6);
    transform: translateY(-3px);
}

/* Mobile Menu */
.se-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.se-mobile-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: min(320px, 88vw);
    height: 100%;
    background: var(--se-accent);
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.se-mobile-panel__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.se-mobile-panel__close {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--se-border);
    border-radius: 8px;
    color: var(--se-primary);
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.se-mobile-panel__nav {
    list-style: none;
    flex-grow: 1;
}

.se-mobile-panel__nav li {
    margin-bottom: 16px;
}

.se-mobile-panel__nav a {
    display: block;
    padding: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--se-text);
    border-radius: 8px;
    transition: var(--se-transition);
}

.se-mobile-panel__nav a:hover {
    background: var(--se-surface);
}

.se-mobile-panel__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

body.se-menu-open .se-mobile-overlay {
    display: block;
    opacity: 1;
}

body.se-menu-open .se-mobile-panel {
    transform: translateX(0);
}

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

.se-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.se-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.se-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.se-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
}

.se-hero__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--se-text);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.se-hero__text {
    font-size: 24px;
    font-weight: 600;
    color: var(--se-primary);
    margin-bottom: 32px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.se-hero__lang {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}
.se-hero__lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
    transition: background .2s, color .2s;
}
.se-hero__lang-btn:hover {
    background: rgba(0,0,0,0.55);
    color: #fff;
}
.se-hero__lang-btn.is-active {
    background: rgba(255,255,255,0.18);
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

/* Main Content */
.se-main {
    min-height: 100vh;
}

.se-section {
    padding: 80px 20px;
    background: var(--se-bg-dark);
}

.se-section--light {
    background: var(--se-bg-light);
}

.se-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.se-h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--se-text);
    text-align: center;
}

.se-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--se-text-gray);
    margin-bottom: 40px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Table */
.se-table-wrap {
    overflow-x: auto;
    margin-bottom: 40px;
}

.se-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--se-surface);
    border-radius: var(--se-radius);
    overflow: hidden;
}

.se-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--se-border);
}

.se-table tr:last-child td {
    border-bottom: none;
}

.se-table td:first-child {
    font-weight: 600;
    width: 30%;
    color: var(--se-primary);
}

.se-table td:last-child {
    color: var(--se-text-gray);
}

/* Steps */
.se-steps {
    list-style: none;
    counter-reset: step-counter;
    max-width: 700px;
    margin: 0 auto;
}

.se-steps li {
    counter-increment: step-counter;
    position: relative;
    padding: 16px 16px 16px 60px;
    margin-bottom: 16px;
    background: var(--se-surface);
    border-radius: var(--se-radius);
    border-left: 4px solid var(--se-primary);
}

.se-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: var(--se-primary);
    color: var(--se-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Success Note */
.se-success-note {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 32px;
    background: linear-gradient(135deg, rgba(0, 200, 100, 0.1), rgba(0, 150, 80, 0.1));
    border: 2px solid #00c864;
    border-radius: var(--se-radius);
}

.se-success-note__icon {
    width: 48px;
    height: 48px;
    background: #00c864;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
}

.se-success-note__content {
    flex: 1;
    color: var(--se-text-gray);
    line-height: 1.8;
    font-size: 16px;
}

.se-success-note__content strong {
    display: block;
    color: #00c864;
    font-size: 20px;
    margin-bottom: 8px;
}

/* Features */
.se-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.se-feature-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    background: var(--se-surface);
    padding: 32px;
    border-radius: var(--se-radius);
    border: 1px solid var(--se-border);
    transition: var(--se-transition);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.se-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--se-shadow);
    border-color: var(--se-primary);
}

.se-feature-card__icon {
    margin-bottom: 24px;
}

.se-feature-card__icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.se-feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--se-primary);
}

.se-feature-card p {
    color: var(--se-text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.se-feature-card .se-btn {
    margin-top: auto;
}

/* Games Grid */
.se-games-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.se-game-item {
    flex: 1 1 calc(20% - 19.2px);
    min-width: 220px;
    max-width: 280px;
    background: var(--se-surface);
    border-radius: var(--se-radius);
    overflow: hidden;
    transition: var(--se-transition);
    border: 2px solid var(--se-border);
    display: flex;
    flex-direction: column;
}

.se-game-item:hover {
    transform: translateY(-8px);
    border-color: var(--se-primary);
    box-shadow: var(--se-shadow);
}

.se-game-item__thumb {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.se-game-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.se-game-item h3 {
    padding: 12px 16px 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--se-text);
}

.se-game-item__provider {
    display: block;
    padding: 0 16px 12px;
    font-size: 12px;
    color: var(--se-primary);
    font-weight: 600;
}

.se-game-item__stats {
    display: flex;
    gap: 8px;
    padding: 0 16px 12px;
}

.se-game-stat {
    flex: 1;
    background: rgba(255, 215, 0, 0.1);
    padding: 8px;
    border-radius: 6px;
    text-align: center;
}

.se-game-stat__label {
    display: block;
    font-size: 10px;
    color: var(--se-text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.se-game-stat__value {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--se-primary);
}

.se-game-item__desc {
    padding: 0 16px 16px;
    font-size: 13px;
    color: var(--se-text-gray);
    line-height: 1.5;
}

/* Access Cards */
.se-access-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
}

.se-access-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background: var(--se-surface);
    padding: 40px;
    border-radius: var(--se-radius);
    border: 2px solid var(--se-border);
    text-align: center;
}

.se-access-card__icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.se-access-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--se-primary);
}

.se-access-card p {
    color: var(--se-text-gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.se-access-steps {
    text-align: left;
    margin-bottom: 24px;
    counter-reset: access-counter;
}

.se-access-steps li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    color: var(--se-text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.se-access-steps li::before {
    counter-increment: access-counter;
    content: counter(access-counter);
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: var(--se-primary);
    color: var(--se-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Payment Methods */
.se-payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
}

.se-payment-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background: var(--se-surface);
    padding: 40px;
    border-radius: var(--se-radius);
    border: 2px solid var(--se-border);
}

.se-payment-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--se-primary);
}

.se-payment-card p {
    color: var(--se-text-gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.se-payment-list {
    list-style: none;
    margin-bottom: 24px;
}

.se-payment-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--se-border);
    color: var(--se-text-gray);
    font-size: 15px;
}

.se-payment-list li:last-child {
    border-bottom: none;
}

.se-payment-list strong {
    color: var(--se-text);
    font-weight: 700;
}

.se-payment-note {
    padding: 16px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--se-primary);
    color: var(--se-text-gray);
    font-size: 14px;
}

.se-payment-note strong {
    color: var(--se-primary);
}

/* Bonus Steps */
.se-bonus-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.se-bonus-step {
    flex: 1 1 calc(25% - 18px);
    min-width: 220px;
    background: var(--se-surface);
    padding: 32px 24px;
    border-radius: var(--se-radius);
    border: 2px solid var(--se-border);
    text-align: center;
    position: relative;
}

.se-bonus-step__number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--se-primary), #f7931e);
    color: var(--se-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.se-bonus-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--se-primary);
}

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

/* CTA Centered */
.se-cta-centered {
    text-align: center;
    margin-top: 48px;
}

/* Bonuses */
.se-bonuses {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.se-bonus-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    background: linear-gradient(135deg, var(--se-surface), var(--se-accent));
    padding: 32px;
    border-radius: var(--se-radius);
    border: 2px solid var(--se-primary);
    transition: var(--se-transition);
}

.se-bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.se-bonus-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--se-primary);
}

.se-bonus-card p {
    color: var(--se-text-gray);
    line-height: 1.8;
}

/* Reviews Slider */
.se-reviews-slider {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.se-reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

.se-review-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 300px;
    background: var(--se-surface);
    padding: 24px;
    border-radius: var(--se-radius);
    border: 1px solid var(--se-border);
}

.se-review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--se-border);
}

.se-review-card__header h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--se-primary);
}

.se-review-card__stars {
    color: var(--se-primary);
    font-size: 18px;
}

.se-review-card p {
    color: var(--se-text-gray);
    line-height: 1.7;
    font-style: italic;
}

.se-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
}

.se-slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--se-border);
    background: var(--se-surface);
    color: var(--se-primary);
    font-size: 20px;
    cursor: pointer;
    transition: var(--se-transition);
}

.se-slider-btn:hover {
    background: var(--se-primary);
    color: var(--se-secondary);
}

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

.se-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--se-border);
    cursor: pointer;
    transition: var(--se-transition);
}

.se-slider-dot.active {
    background: var(--se-primary);
    width: 24px;
    border-radius: 5px;
}

/* FAQ */
.se-faq {
    max-width: 900px;
    margin: 40px auto 0;
}

.se-faq-item {
    margin-bottom: 16px;
    background: var(--se-surface);
    border-radius: var(--se-radius);
    border: 1px solid var(--se-border);
    overflow: hidden;
    transition: var(--se-transition);
}

.se-faq-item.active {
    border-color: var(--se-primary);
}

.se-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: var(--se-text);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--se-transition);
}

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

.se-faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--se-primary);
    transition: transform 0.3s ease;
}

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

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

.se-faq-item.active .se-faq-answer {
    max-height: 500px;
}

.se-faq-answer p {
    padding: 0 24px 24px;
    color: var(--se-text-gray);
    line-height: 1.8;
}

/* Footer */
.se-footer {
    background: var(--se-accent);
    padding: 60px 20px 30px;
    border-top: 1px solid var(--se-border);
}

.se-footer__top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.se-footer__col {
    flex: 1 1 250px;
}

.se-footer__logo {
    display: block;
    margin-bottom: 16px;
}

.se-footer__text {
    color: var(--se-text-gray);
    line-height: 1.7;
}

.se-footer__col h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--se-primary);
}

.se-footer__links {
    list-style: none;
}

.se-footer__links li {
    margin-bottom: 12px;
}

.se-footer__links a {
    color: var(--se-text-gray);
    font-size: 16px;
    transition: var(--se-transition);
}

.se-footer__links a:hover {
    color: var(--se-primary);
}

.se-footer__bottom {
    padding-top: 30px;
    border-top: 1px solid var(--se-border);
    text-align: center;
}

.se-footer__disclaimer {
    font-size: 14px;
    color: var(--se-text-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

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

/* Page Hero */
.se-page-hero {
    padding: 80px 20px;
    background: var(--se-secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.se-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/Hero1-Desktop.png') center/cover no-repeat;
    z-index: 0;
}

.se-page-hero > .se-wrap {
    position: relative;
    z-index: 1;
}

.se-page-hero__title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--se-text);
}

.se-page-hero__text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--se-text-gray);
    max-width: 900px;
    margin: 0 auto 32px;
}

.se-page-hero .se-btn {
    display: inline-block;
}

/* Bonus Intro */
.se-bonus-intro {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 60px;
}

.se-bonus-intro__image {
    flex: 0 0 400px;
}

.se-bonus-intro__image img {
    width: 100%;
    height: auto;
    border-radius: var(--se-radius);
    box-shadow: var(--se-shadow);
}

.se-bonus-intro__content {
    flex: 1;
}

.se-bonus-intro__content .se-h2 {
    text-align: left;
    margin-bottom: 20px;
}

.se-bonus-intro__content .se-intro {
    text-align: left;
    margin-bottom: 32px;
}

.se-bonus-intro__highlights {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.se-bonus-highlight {
    flex: 1 1 calc(25% - 12px);
    min-width: 100px;
    background: var(--se-surface);
    padding: 20px 16px;
    border-radius: var(--se-radius);
    border: 2px solid var(--se-primary);
    text-align: center;
}

.se-bonus-highlight__value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--se-primary);
    margin-bottom: 8px;
}

.se-bonus-highlight__label {
    display: block;
    font-size: 14px;
    color: var(--se-text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Bonus Stages */
.se-bonus-stages {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.se-stage-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    background: var(--se-surface);
    padding: 32px;
    border-radius: var(--se-radius);
    border: 2px solid var(--se-primary);
    position: relative;
}

.se-stage-card__badge {
    position: absolute;
    top: -12px;
    left: 32px;
    background: var(--se-primary);
    color: var(--se-secondary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.se-stage-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--se-text);
}

.se-stage-card__offer {
    font-size: 20px;
    font-weight: 700;
    color: var(--se-primary);
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

.se-stage-card__details {
    list-style: none;
}

.se-stage-card__details li {
    padding: 8px 0;
    border-bottom: 1px solid var(--se-border);
    color: var(--se-text-gray);
    font-size: 14px;
}

.se-stage-card__details li:last-child {
    border-bottom: none;
}

.se-stage-card__details strong {
    color: var(--se-text);
}

/* CTA Box */
.se-cta-box {
    margin-top: 60px;
    padding: 48px;
    background: var(--se-accent);
    border-radius: var(--se-radius);
    text-align: center;
    border: 2px solid var(--se-primary);
}

.se-cta-box h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--se-primary);
}

/* Highroller Box */
.se-highroller-box {
    margin-top: 40px;
    background: linear-gradient(135deg, var(--se-surface), var(--se-accent));
    border: 2px solid var(--se-primary);
    border-radius: var(--se-radius);
    overflow: hidden;
}

.se-highroller-box__main {
    padding: 40px;
    border-bottom: 2px solid var(--se-primary);
}

.se-highroller-box__main h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--se-text);
}

.se-highroller-box__offer {
    font-size: 24px;
    font-weight: 700;
    color: var(--se-primary);
    margin-bottom: 24px;
}

.se-highroller-box__main ul {
    list-style: none;
}

.se-highroller-box__main li {
    padding: 12px 0;
    color: var(--se-text-gray);
    font-size: 16px;
}

.se-highroller-box__total {
    padding: 40px;
    background: rgba(255, 215, 0, 0.05);
}

.se-highroller-box__total h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--se-primary);
}

.se-highroller-box__total p {
    color: var(--se-text-gray);
    margin-bottom: 20px;
}

.se-highroller-box__numbers {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.se-highroller-box__numbers span {
    padding: 16px;
    background: var(--se-surface);
    border-radius: 8px;
    border: 1px solid var(--se-border);
    font-size: 18px;
    font-weight: 700;
    color: var(--se-primary);
    text-align: center;
}

/* Weekly Promos */
.se-weekly-promos {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.se-promo-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 280px;
    background: var(--se-surface);
    padding: 32px;
    border-radius: var(--se-radius);
    border: 1px solid var(--se-border);
    transition: var(--se-transition);
}

.se-promo-card:hover {
    transform: translateY(-4px);
    border-color: var(--se-primary);
    box-shadow: var(--se-shadow);
}

.se-promo-card__day {
    display: inline-block;
    padding: 6px 16px;
    background: var(--se-primary);
    color: var(--se-secondary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.se-promo-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--se-primary);
}

.se-promo-card p {
    color: var(--se-text-gray);
    line-height: 1.7;
}

/* Terms Grid */
.se-terms-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.se-terms-card {
    flex: 1 1 calc(25% - 18px);
    min-width: 200px;
    background: var(--se-surface);
    padding: 24px;
    border-radius: var(--se-radius);
    border: 1px solid var(--se-border);
    text-align: center;
}

.se-terms-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--se-primary);
}

.se-terms-card p {
    font-size: 16px;
    color: var(--se-text-gray);
}

/* Game Categories */
.se-game-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.se-game-cat-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 280px;
    background: var(--se-surface);
    padding: 0;
    border-radius: var(--se-radius);
    border: 1px solid var(--se-border);
    transition: var(--se-transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.se-game-cat-card:hover {
    transform: translateY(-4px);
    border-color: var(--se-primary);
    box-shadow: var(--se-shadow);
}

.se-game-cat-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--se-secondary);
}

.se-game-cat-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--se-transition);
}

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

.se-game-cat-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 20px 24px 12px;
    color: var(--se-primary);
}

.se-game-cat-card p {
    color: var(--se-text-gray);
    line-height: 1.7;
    padding: 0 24px;
    margin-bottom: 20px;
    flex: 1;
}

.se-game-cat-card .se-btn {
    margin: 0 24px 24px;
}

/* Popular Games */
.se-popular-games {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.se-popular-game {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 280px;
    background: var(--se-surface);
    padding: 24px;
    border-radius: var(--se-radius);
    border: 2px solid var(--se-border);
    transition: var(--se-transition);
}

.se-popular-game:hover {
    border-color: var(--se-primary);
    transform: translateY(-4px);
    box-shadow: var(--se-shadow);
}

.se-popular-game h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--se-text);
}

.se-popular-game__provider {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--se-primary);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

/* Providers Grid */
.se-providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
    justify-content: center;
}

.se-provider-badge {
    padding: 24px;
    background: #ffffff;
    border: 1px solid var(--se-border);
    border-radius: var(--se-radius);
    transition: var(--se-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.se-provider-badge img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

.se-provider-badge:hover {
    border-color: var(--se-primary);
    transform: translateY(-2px);
    box-shadow: var(--se-shadow);
}

/* Large Steps */
.se-steps--large li {
    font-size: 16px;
    line-height: 1.8;
}

/* Contact Methods */
.se-contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.se-contact-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 300px;
    background: var(--se-surface);
    padding: 40px;
    border-radius: var(--se-radius);
    border: 2px solid var(--se-border);
    text-align: center;
}

.se-contact-card__icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.se-contact-card__image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
}

.se-contact-card__image img {
    width: 100%;
    height: auto;
    border-radius: var(--se-radius);
}

.se-contact-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--se-primary);
}

.se-contact-card__time {
    font-size: 14px;
    color: var(--se-primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.se-contact-card p {
    color: var(--se-text-gray);
    line-height: 1.7;
    text-align: left;
}

.se-email-box {
    margin-top: 20px;
    padding: 16px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    font-size: 18px;
    color: var(--se-primary);
}

/* Support Grid */
.se-support-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.se-support-card {
    flex: 1 1 calc(25% - 18px);
    min-width: 200px;
    background: var(--se-surface);
    padding: 32px 24px;
    border-radius: var(--se-radius);
    border: 1px solid var(--se-border);
    text-align: center;
}

.se-support-card h3 {
    font-size: 32px;
    margin-bottom: 12px;
}

.se-support-card p {
    color: var(--se-text-gray);
    font-size: 14px;
}

/* Quick Help */
.se-quick-help {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.se-help-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 280px;
    background: var(--se-surface);
    padding: 32px;
    border-radius: var(--se-radius);
    border: 1px solid var(--se-border);
    transition: var(--se-transition);
}

.se-help-card:hover {
    border-color: var(--se-primary);
    transform: translateY(-4px);
    box-shadow: var(--se-shadow);
}

.se-help-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--se-primary);
}

.se-help-card p {
    color: var(--se-text-gray);
    line-height: 1.7;
}

/* Responsible Gaming */
.se-limit-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.se-limit-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    background: var(--se-surface);
    padding: 32px;
    border-radius: var(--se-radius);
    border: 2px solid var(--se-border);
    text-align: center;
}

.se-limit-card__icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.se-limit-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--se-primary);
}

.se-limit-card p {
    color: var(--se-text-gray);
    line-height: 1.7;
    text-align: left;
}

.se-break-options {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.se-break-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 300px;
    background: var(--se-surface);
    padding: 40px;
    border-radius: var(--se-radius);
    border: 2px solid var(--se-border);
}

.se-break-card--warning {
    border-color: #ff4444;
}

.se-break-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--se-text);
}

.se-break-card p {
    color: var(--se-text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.se-break-card__options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.se-break-card__options span {
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--se-border);
    border-radius: 8px;
    color: var(--se-primary);
    font-size: 14px;
    font-weight: 600;
}

.se-warning-box {
    display: flex;
    gap: 24px;
    padding: 40px;
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid #ff4444;
    border-radius: var(--se-radius);
    margin-top: 40px;
}

.se-warning-box__icon {
    font-size: 48px;
    flex-shrink: 0;
}

.se-warning-box__content p {
    color: var(--se-text-gray);
    line-height: 1.8;
    margin-bottom: 12px;
}

.se-warning-box__content p:last-child {
    margin-bottom: 0;
}

.se-check-list {
    max-width: 800px;
    margin: 40px auto;
}

.se-check-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    margin-bottom: 16px;
    background: var(--se-surface);
    border-radius: var(--se-radius);
    border-left: 4px solid var(--se-primary);
}

.se-check-item__icon {
    font-size: 32px;
    flex-shrink: 0;
}

.se-check-item p {
    color: var(--se-text-gray);
    line-height: 1.7;
    font-size: 16px;
}

.se-help-cta {
    max-width: 700px;
    margin: 60px auto 0;
    padding: 40px;
    background: linear-gradient(135deg, var(--se-surface), var(--se-accent));
    border: 2px solid var(--se-primary);
    border-radius: var(--se-radius);
    text-align: center;
}

.se-help-cta h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--se-primary);
}

.se-help-cta p {
    color: var(--se-text-gray);
    font-size: 16px;
    line-height: 1.7;
}

.se-org-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.se-org-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 280px;
    background: var(--se-surface);
    padding: 32px;
    border-radius: var(--se-radius);
    border: 1px solid var(--se-border);
}

.se-org-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--se-primary);
}

.se-org-card p {
    color: var(--se-text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.se-org-link {
    display: inline-block;
    color: var(--se-primary);
    font-weight: 600;
    transition: var(--se-transition);
}

.se-org-link:hover {
    color: var(--se-primary-dark);
    transform: translateX(4px);
}

/* Legal Pages */
.se-legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.se-legal-section {
    margin-bottom: 48px;
}

.se-legal-section:last-child {
    margin-bottom: 0;
}

.se-legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--se-primary);
}

.se-legal-section p {
    color: var(--se-text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.se-legal-section ul {
    list-style: none;
    margin: 16px 0;
}

.se-legal-section li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--se-text-gray);
    line-height: 1.7;
}

.se-legal-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--se-primary);
    font-weight: 700;
}

/* Footer Aggregator Logos */
.se-footer__testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 28px 0;
    margin-bottom: 24px;
    border-top: 1px solid var(--se-border);
    border-bottom: 1px solid var(--se-border);
}

.se-footer__testimonials a {
    display: inline-flex;
    align-items: center;
    opacity: 0.7;
    transition: var(--se-transition);
}

.se-footer__testimonials a:hover {
    opacity: 1;
}

.se-footer__testimonials img {
    height: 28px;
    width: auto;
    display: block;
}

/* Bonus Widget Cards */
.se-bonus-widget-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.se-bonus-widget-grid .se-stage-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

.se-bonus-card-img {
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
}

.se-bonus-card-img img {
    width: 100%;
    height: auto;
    display: block;
}

.se-bonus-stage-label {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 14px;
    background: var(--se-primary);
    color: var(--se-secondary);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.se-bonus-widget-grid .se-stage-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--se-primary);
}

.se-bonus-desc {
    color: var(--se-text-gray);
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 16px;
}

.se-bonus-stats {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    border: 1px solid var(--se-border);
    border-radius: var(--se-radius);
    overflow: hidden;
}

.se-bonus-stats li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    font-size: 13px;
    border-bottom: 1px solid var(--se-border);
}

.se-bonus-stats li:last-child {
    border-bottom: none;
}

.se-bonus-stats li:nth-child(odd) {
    background: rgba(255, 255, 255, 0.02);
}

.se-bonus-stats li span:first-child {
    color: var(--se-text-gray);
    font-weight: 500;
}

.se-bonus-stats li span:last-child {
    font-weight: 700;
    text-align: right;
    color: var(--se-text);
}

.se-bonus-terms {
    font-size: 12px;
    color: var(--se-text-gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

.se-btn--full {
    display: block;
    width: 100%;
    margin-top: auto;
}

/* Responsive */
@media (max-width: 980px) {
    .se-nav {
        display: none;
    }
    
    .se-burger {
        display: flex;
    }
    
    .se-bonus-intro {
        flex-direction: column;
        gap: 32px;
    }
    
    .se-bonus-intro__image {
        flex: 0 0 auto;
        max-width: 100%;
    }
    
    .se-bonus-intro__content .se-h2,
    .se-bonus-intro__content .se-intro {
        text-align: center;
    }
    
    .se-bonus-intro__highlights {
        justify-content: center;
    }
    
    .se-review-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .se-hero {
        min-height: 500px;
    }
    
    .se-hero__title {
        font-size: 32px;
    }
    
    .se-hero__text {
        font-size: 18px;
    }
    
    .se-h2 {
        font-size: 32px;
    }
    
    .se-section {
        padding: 60px 20px;
    }
    
    .se-page-hero {
        padding: 60px 20px;
    }
    
    .se-page-hero::before {
        background-image: url('../assets/images/Hero1-Mobile.png');
    }
    
    .se-page-hero__title {
        font-size: 32px;
    }
    
    .se-feature-card,
    .se-bonus-card {
        flex: 1 1 100%;
    }
    
    .se-stage-card {
        flex: 1 1 100%;
    }

    .se-bonus-widget-grid .se-stage-card {
        flex: 1 1 100%;
    }

    .se-promo-card,
    .se-terms-card,
    .se-game-cat-card,
    .se-popular-game,
    .se-contact-card,
    .se-support-card,
    .se-help-card,
    .se-limit-card,
    .se-break-card,
    .se-org-card,
    .se-access-card,
    .se-payment-card {
        flex: 1 1 100%;
    }
    
    .se-game-item {
        flex: 1 1 calc(33.333% - 16px);
        min-width: 220px;
        max-width: 100%;
    }
    
    .se-bonus-step {
        flex: 1 1 calc(50% - 12px);
    }
    
    .se-game-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .se-bonus-intro__image {
        flex: 0 0 auto;
    }
    
    .se-bonus-highlight {
        flex: 1 1 calc(50% - 8px);
    }
    
    .se-review-card {
        flex: 0 0 100%;
    }
    
    .se-table td {
        display: block;
        width: 100%;
    }
    
    .se-table td:first-child {
        border-bottom: none;
        padding-bottom: 8px;
    }
    
    .se-table td:last-child {
        padding-top: 0;
    }
    
    .se-cta-box {
        padding: 32px 20px;
    }
    
    .se-cta-box h3 {
        font-size: 24px;
    }
    
    .se-highroller-box__main,
    .se-highroller-box__total {
        padding: 24px;
    }
    
    .se-warning-box {
        flex-direction: column;
        padding: 24px;
    }
    
    .se-success-note {
        flex-direction: column;
        padding: 24px;
    }
    
    .se-legal-section h2 {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .se-head__actions .se-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .se-hero__title {
        font-size: 24px;
    }
    
    .se-hero__text {
        font-size: 16px;
    }
    
    .se-btn--hero {
        padding: 14px 32px;
        font-size: 16px;
    }
}


/* Language dropdown */
.lang-dd{position:relative;display:inline-block}
.lang-dd__current{display:inline-flex;align-items:center;gap:6px;cursor:pointer;list-style:none;padding:6px 10px;border:1px solid rgba(128,128,128,.35);border-radius:8px;font-size:13px;font-weight:700;line-height:1;user-select:none;color:inherit}
.lang-dd__current::-webkit-details-marker{display:none}
.lang-dd__current::marker{content:""}
.lang-dd__current:hover{border-color:rgba(128,128,128,.6)}
.lang-dd__code{letter-spacing:.02em}
.lang-dd__chev{opacity:.7;transition:transform .2s ease}
.lang-dd[open] .lang-dd__chev{transform:rotate(180deg)}
.lang-dd__menu{position:absolute;top:calc(100% + 8px);right:0;z-index:120;margin:0;padding:6px;list-style:none;min-width:180px;background:#17181c;border:1px solid rgba(255,255,255,.12);border-radius:12px;box-shadow:0 16px 36px rgba(0,0,0,.45);display:flex;flex-direction:column;gap:2px;animation:langfade .15s ease}
@keyframes langfade{from{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:none}}
.lang-dd__item{display:flex;align-items:center;gap:10px;padding:9px 10px;border-radius:8px;text-decoration:none;color:#f2f2f2;font-size:14px;font-weight:600;opacity:.9}
.lang-dd__item:hover{background:rgba(255,255,255,.09);opacity:1}
.lang-dd__item.is-active{opacity:1;background:rgba(255,255,255,.06);cursor:default}
.lang-flag{display:block;border-radius:2px;box-shadow:0 0 0 1px rgba(0,0,0,.25)}
@media (max-width:600px){.lang-dd__menu{right:auto;left:0}}

/* ============================================================
   switzerland3 — Hero left-align, language pills & visual polish
   ============================================================ */

/* Hero: readable left-side layout with directional overlay */
.se-hero { min-height: 660px; justify-content: center; }
.se-hero__bg img { object-position: center right; }

.se-hero__content {
    text-align: left;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 56px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.se-hero__content::before {
    content: '';
    display: block;
    width: 64px;
    height: 4px;
    border-radius: 4px;
    margin-bottom: 22px;
    background: linear-gradient(90deg, var(--se-primary), transparent);
}
.se-hero__title {
    font-size: 46px;
    max-width: 720px;
    letter-spacing: -0.5px;
}
.se-hero__text {
    font-size: 21px;
    max-width: 640px;
    color: #f6e2c4;
}
.se-hero__text strong, .se-hero__text b { color: var(--se-primary); }
.se-hero__lang { margin-top: 28px; justify-content: flex-start; }

/* Language pills — restyled */
.se-hero__lang-btn {
    padding: 8px 15px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: .3px;
    color: var(--se-text);
    background: rgba(6,25,18,0.5);
    border: 1px solid var(--se-border);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.se-hero__lang-btn:hover {
    background: rgba(6,25,18,0.72);
    color: #fff;
    border-color: rgba(227,155,76,0.55);
    transform: translateY(-1px);
}
.se-hero__lang-btn.is-active {
    background: linear-gradient(135deg, var(--se-primary), var(--se-primary-dark));
    color: #241500;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(227,155,76,0.35);
}
.se-hero__lang-btn .lang-flag { border-radius: 3px; }

/* Buttons — richer primary + hero CTA */
.se-btn--primary, .se-btn--hero {
    background: linear-gradient(135deg, var(--se-primary) 0%, var(--se-primary-dark) 100%);
    color: #241500;
    border: none;
    box-shadow: 0 6px 18px rgba(227,155,76,0.28);
}
.se-btn--primary:hover, .se-btn--hero:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(227,155,76,0.4);
    color: #241500;
}
.se-btn--hero { font-size: 17px; padding: 15px 34px; }

/* Section headings — accent underline */
.se-h2 { position: relative; padding-bottom: 16px; }
.se-h2::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 56px; height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--se-primary), transparent);
}

/* Cards — consistent hover lift + accent border */
.se-stage-card, .se-feature-card, .se-game-item, .se-payment-card {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.se-stage-card:hover, .se-feature-card:hover, .se-game-item:hover, .se-payment-card:hover {
    transform: translateY(-4px);
    border-color: rgba(227,155,76,0.45);
    box-shadow: 0 14px 30px rgba(0,0,0,0.45);
}

/* Game cards — provider chip + subtle gradient top */
.se-game-item {
    background: linear-gradient(180deg, var(--se-surface) 0%, var(--se-bg-light) 100%);
    border: 1px solid var(--se-border);
    border-radius: var(--se-radius);
    overflow: hidden;
}
.se-game-item__thumb { position: relative; }
.se-game-item__thumb::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(6,25,18,0.55) 100%);
    pointer-events: none;
}
.se-game-item__provider {
    display: inline-block;
    font-size: 11px;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: var(--se-primary);
    background: rgba(227,155,76,0.12);
    border: 1px solid var(--se-border);
    padding: 3px 9px;
    border-radius: 999px;
}

/* Bonus stat rows — clearer zebra + accent value */
.se-bonus-stats li span:last-child { color: var(--se-primary); font-weight: 700; }

/* Mobile: keep hero left, comfortable padding */
@media (max-width: 768px) {
    .se-hero { min-height: 560px; }
    .se-hero__content { padding: 40px 18px; }
    .se-hero__title { font-size: 32px; }
    .se-hero__text { font-size: 18px; }
}

/* ============================================================
   switzerland3 — Left-align ALL page text (per request)
   ============================================================ */
.se-h2,
.se-intro,
.se-feature-card,
.se-access-card,
.se-game-item,
.se-payment-card,
.se-stage-card {
    text-align: left !important;
}
.se-intro {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 860px;
}
.se-feature-card__icon img,
.se-access-card__icon { margin-left: 0; }

/* ============================================================
   switzerland3 — Games grid: equal columns & aligned rows
   ============================================================ */
.se-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.se-game-item {
    flex: none;            /* neutralise old 5-col flex basis */
    min-width: 0;
    max-width: none;
    width: auto;
    height: 100%;
}
/* Reserve a consistent title height so provider + stats line up across cards */
.se-game-item h3 {
    line-height: 1.3;
    min-height: 62px;
    display: flex;
    align-items: flex-start;
}
/* Restore left inset lost when the provider became a chip */
.se-game-item__provider {
    margin: 0 16px 14px;
}
/* Title + chip are fixed-height, so stat boxes line up on every card */
.se-game-item__desc { margin-top: 4px; }

@media (max-width: 900px) {
    .se-games-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .se-games-grid { grid-template-columns: 1fr; }
    .se-game-item h3 { min-height: 0; }
}

/* ============================================================
   switzerland3 — Mobile header: keep a single CTA button
   ============================================================ */
@media (max-width: 768px) {
    .se-head__actions { gap: 8px; }
    .se-head__actions .se-btn--ghost { display: none; }  /* login stays in the burger menu */
}

/* switzerland3 — Mobile: smaller header logo */
@media (max-width: 768px) {
    .se-logo img { width: 50px; height: auto; }
}

/* ============================================================
   switzerland3 — Feature SVG icons & payment logo strip
   ============================================================ */
.se-feature-card__icon svg { display: block; }

.se-pay-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 4px 0 32px;
}
.se-pay-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 9px;
    padding: 8px 14px;
    min-height: 46px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.28);
}
.se-pay-logo svg { display: block; }
@media (max-width: 560px) {
    .se-pay-logo { padding: 6px 10px; min-height: 40px; }
    .se-pay-logo svg { height: 26px; width: auto; }
}

/* ============================================================
   switzerland3 — Mobile-play section: SVG phone left + text right
   ============================================================ */
.se-mobile-feature {
    display: flex;
    align-items: center;
    gap: 56px;
}
.se-mobile-feature__art {
    flex: 0 0 240px;
    display: flex;
    justify-content: center;
}
.se-mobile-feature__art svg {
    width: 230px;
    height: auto;
    filter: drop-shadow(0 16px 34px rgba(0,0,0,0.5));
}
.se-mobile-feature__text { flex: 1 1 auto; }
.se-mobile-feature__text .se-h2 { margin-top: 0; }
.se-mobile-feature__text .se-intro:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
    .se-mobile-feature { flex-direction: column; align-items: flex-start; gap: 28px; }
    .se-mobile-feature__art { flex: none; align-self: center; }
    .se-mobile-feature__art svg { width: 180px; }
}

/* switzerland3 — per-section centered CTA button */
.se-sec-cta { text-align: center; margin-top: 40px; }
.se-sec-cta .se-btn { display: inline-flex; }
