/* CSS Variables */
:root {
    --se-primary: #FFD700;
    --se-primary-dark: #E5C100;
    --se-secondary: #1a1a2e;
    --se-accent: #16213e;
    --se-text: #ffffff;
    --se-text-gray: #a0a0a0;
    --se-bg-dark: #0f0f1e;
    --se-bg-light: #1a1a2e;
    --se-surface: #252540;
    --se-border: rgba(255, 215, 0, 0.2);
    --se-radius: 12px;
    --se-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --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;
}

/* 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);
}

/* 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;
    display: flex;
    justify-content: center;
}

.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 {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
    counter-reset: access-counter;
    padding-left: 0;
}

.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;
}

/* 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-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;
    }
}

/* Hero Banner DE (desktop/mobile toggle) */
.se-hero__bg--mobile { display: none; }
.se-hero__bg--desktop { display: block; }

@media (max-width: 768px) {
    .se-hero__bg--desktop { display: none; }
    .se-hero__bg--mobile { display: block; }
}

/* Footer Testimonials */
.se-footer-reviews {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--se-border);
    border-bottom: 1px solid var(--se-border);
    margin-bottom: 32px;
}

.se-footer-reviews a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: var(--se-transition);
}

.se-footer-reviews a:hover {
    background: rgba(255,255,255,0.12);
}

.se-footer-reviews img {
    height: 28px;
    width: auto;
    opacity: 0.7;
    transition: var(--se-transition);
}

.se-footer-reviews a:hover img {
    opacity: 1;
}

/* Bonus Widget (sec-) */
.sec-bonus-grid { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 40px; }
.sec-bonus-card { flex: 1 1 calc(50% - 12px); min-width: 280px; background: var(--se-surface); border-radius: var(--se-radius); border: 2px solid var(--se-primary); overflow: hidden; display: flex; flex-direction: column; }
.sec-bonus-card__image { width: 100%; aspect-ratio: 16/9; overflow: hidden; background: var(--se-accent); }
.sec-bonus-card__image img { width: 100%; height: 100%; object-fit: cover; }
.sec-bonus-card__content { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.sec-bonus-card__stage { font-size: 12px; font-weight: 700; color: var(--se-primary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.sec-bonus-card__title { font-size: 20px; font-weight: 700; color: var(--se-text); margin-bottom: 12px; }
.sec-bonus-card__desc { font-size: 14px; color: var(--se-text-gray); line-height: 1.6; margin-bottom: 16px; }
.sec-bonus-stats { list-style: none; margin: 0 0 16px; padding: 0; border: 1px solid var(--se-border); border-radius: var(--se-radius); overflow: hidden; }
.sec-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); }
.sec-bonus-stats li:last-child { border-bottom: none; }
.sec-bonus-stats li:nth-child(odd) { background: rgba(255,255,255,0.02); }
.sec-bonus-stats li span:first-child { color: var(--se-text-gray); font-weight: 500; }
.sec-bonus-stats li span:last-child { font-weight: 700; text-align: right; color: var(--se-text); }
.sec-bonus-card__terms { font-size: 11px; color: var(--se-text-gray); margin-bottom: 16px; line-height: 1.5; }
.sec-btn { display: inline-block; padding: 12px 24px; font-size: 14px; font-weight: 700; border-radius: var(--se-radius); text-align: center; transition: var(--se-transition); cursor: pointer; border: 2px solid transparent; text-decoration: none; }
.sec-btn--primary { background: linear-gradient(135deg, var(--se-primary), var(--se-primary-dark)); color: var(--se-secondary); }
.sec-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,215,0,0.4); }
.sec-btn--full { display: block; width: 100%; margin-top: auto; }

@media (max-width: 768px) {
    .sec-bonus-card { flex: 1 1 100%; }
}

@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;
    }
}

/* Page Hero (inner pages) */
.se-page-hero { background: linear-gradient(135deg, var(--se-bg-light) 0%, var(--se-accent) 100%); padding: 80px 0 60px; border-bottom: 1px solid var(--se-border); }
.se-page-hero__title { font-size: 36px; font-weight: 800; color: var(--se-text); margin-bottom: 16px; line-height: 1.2; }
.se-page-hero__sub { font-size: 18px; color: var(--se-text-gray); }
@media (max-width: 768px) {
    .se-page-hero { padding: 60px 0 40px; }
    .se-page-hero__title { font-size: 26px; }
    .se-page-hero__sub { font-size: 15px; }
}

/* Access Cards (Login/Register) */
.se-access-cards { display: flex; gap: 24px; flex-wrap: wrap; }
.se-access-card { flex: 1 1 calc(50% - 12px); min-width: 280px; background: var(--se-surface); border: 1px solid var(--se-border); border-radius: var(--se-radius-lg); padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.se-access-card__icon { font-size: 40px; }
.se-access-card h3 { font-size: 22px; font-weight: 700; color: var(--se-primary); }
@media (max-width: 768px) { .se-access-card { flex: 1 1 100%; } }

/* Payment Methods */
.se-payment-methods { display: flex; gap: 24px; flex-wrap: wrap; }
.se-payment-card { flex: 1 1 calc(50% - 12px); min-width: 280px; background: var(--se-surface); border: 1px solid var(--se-border); border-radius: var(--se-radius-lg); padding: 28px; }
.se-payment-card h3 { font-size: 18px; font-weight: 700; color: var(--se-text); margin-bottom: 12px; }
.se-payment-list { list-style: none; padding: 0; margin: 0 0 16px; color: var(--se-text-gray); font-size: 14px; }
.se-payment-list li { padding: 6px 0; border-bottom: 1px solid var(--se-border); }
.se-payment-list li:last-child { border-bottom: none; }
.se-payment-note { background: rgba(255,215,0,0.08); border: 1px solid rgba(255,215,0,0.3); border-radius: 8px; padding: 12px 16px; font-size: 13px; color: var(--se-text-gray); }
@media (max-width: 768px) { .se-payment-card { flex: 1 1 100%; } }

/* Bonus Steps */
.se-bonus-steps { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.se-bonus-step { flex: 1 1 calc(25% - 15px); min-width: 200px; background: var(--se-surface); border: 1px solid var(--se-border); border-radius: var(--se-radius-lg); padding: 24px; text-align: center; }
.se-bonus-step__number { width: 48px; height: 48px; border-radius: 50%; background: var(--se-primary); color: var(--se-secondary); font-size: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.se-bonus-step h3 { font-size: 16px; font-weight: 700; color: var(--se-text); margin-bottom: 10px; }
.se-bonus-step p { font-size: 13px; color: var(--se-text-gray); line-height: 1.6; }
@media (max-width: 980px) { .se-bonus-step { flex: 1 1 calc(50% - 10px); } }
@media (max-width: 600px) { .se-bonus-step { flex: 1 1 100%; } }

/* Freispiele Cards */
.se-fs-cards { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.se-fs-card { display: flex; gap: 24px; background: var(--se-surface); border: 1px solid var(--se-border); border-radius: var(--se-radius-lg); overflow: hidden; }
.se-fs-card__slot { flex: 0 0 160px; background: var(--se-accent); }
.se-fs-card__slot img { width: 100%; height: 100%; object-fit: cover; }
.se-fs-card__info { padding: 24px; flex: 1; }
.se-fs-card__info h3 { font-size: 18px; font-weight: 700; color: var(--se-primary); margin-bottom: 10px; }
.se-fs-card__info p { font-size: 14px; color: var(--se-text-gray); line-height: 1.6; margin-bottom: 16px; }
.se-fs-info-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.se-fs-info-list li { display: flex; gap: 6px; font-size: 13px; background: rgba(255,255,255,0.05); padding: 4px 10px; border-radius: 20px; }
.se-fs-info-list li span:first-child { color: var(--se-text-gray); }
.se-fs-info-list li span:last-child { color: var(--se-primary); font-weight: 700; }
@media (max-width: 600px) { .se-fs-card { flex-direction: column; } .se-fs-card__slot { flex: none; height: 120px; } }

/* Missions Grid */
.se-missions-grid { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
.se-mission-block { flex: 1 1 calc(50% - 12px); min-width: 280px; }
.se-mission-block h3 { font-size: 18px; font-weight: 700; color: var(--se-text); margin-bottom: 16px; }
@media (max-width: 768px) { .se-mission-block { flex: 1 1 100%; } }

/* Provider Cards */
.se-providers-grid { display: flex; gap: 24px; flex-wrap: wrap; }
.se-provider-card { flex: 1 1 calc(50% - 12px); min-width: 260px; background: var(--se-surface); border: 1px solid var(--se-border); border-radius: var(--se-radius-lg); padding: 28px; }
.se-provider-card h3 { font-size: 18px; font-weight: 700; color: var(--se-primary); margin-bottom: 10px; }
.se-provider-card p { font-size: 14px; color: var(--se-text-gray); line-height: 1.6; margin-bottom: 12px; }
.se-provider-titles { font-size: 12px; color: var(--se-primary); opacity: 0.8; font-style: italic; }
@media (max-width: 768px) { .se-provider-card { flex: 1 1 100%; } }

/* Live Casino Cards */
.se-live-grid { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 32px; }
.se-live-card { flex: 1 1 calc(25% - 15px); min-width: 180px; background: var(--se-surface); border: 1px solid var(--se-border); border-radius: var(--se-radius); padding: 24px; text-align: center; }
.se-live-card__icon { font-size: 32px; margin-bottom: 12px; }
.se-live-card h3 { font-size: 16px; font-weight: 700; color: var(--se-text); margin-bottom: 10px; }
.se-live-card p { font-size: 13px; color: var(--se-text-gray); line-height: 1.6; }
@media (max-width: 768px) { .se-live-card { flex: 1 1 calc(50% - 10px); } }
@media (max-width: 500px) { .se-live-card { flex: 1 1 100%; } }

/* Tools Grid (Responsible Gaming) */
.se-tools-grid { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
.se-tool-card { flex: 1 1 calc(50% - 12px); min-width: 260px; background: var(--se-surface); border: 1px solid var(--se-border); border-radius: var(--se-radius-lg); padding: 28px; }
.se-tool-card__icon { font-size: 36px; margin-bottom: 16px; }
.se-tool-card h3 { font-size: 18px; font-weight: 700; color: var(--se-primary); margin-bottom: 12px; }
.se-tool-card p { font-size: 14px; color: var(--se-text-gray); line-height: 1.6; margin-bottom: 16px; }
.se-tool-list { list-style: none; padding: 0; margin: 0; font-size: 13px; color: var(--se-text-gray); }
.se-tool-list li { padding: 5px 0; padding-left: 16px; position: relative; }
.se-tool-list li::before { content: '✓'; position: absolute; left: 0; color: var(--se-primary); font-weight: 700; }
@media (max-width: 768px) { .se-tool-card { flex: 1 1 100%; } }

/* Warning Signs */
.se-warning-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.se-warning-item { display: flex; align-items: flex-start; gap: 12px; background: rgba(255, 100, 100, 0.05); border: 1px solid rgba(255, 100, 100, 0.2); border-radius: 8px; padding: 14px 16px; }
.se-warning-item__icon { color: #ff6b6b; font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.se-warning-item p { margin: 0; font-size: 14px; color: var(--se-text-gray); line-height: 1.5; }

/* Help Cards */
.se-help-cards { display: flex; gap: 24px; flex-wrap: wrap; }
.se-help-card { flex: 1 1 calc(33% - 16px); min-width: 220px; background: var(--se-surface); border: 1px solid var(--se-border); border-radius: var(--se-radius-lg); padding: 24px; }
.se-help-card h3 { font-size: 16px; font-weight: 700; color: var(--se-primary); margin-bottom: 12px; }
.se-help-card p { font-size: 13px; color: var(--se-text-gray); line-height: 1.6; margin-bottom: 10px; }
.se-help-card__contact { background: rgba(255,215,0,0.08); border-left: 3px solid var(--se-primary); padding: 10px 14px; border-radius: 0 6px 6px 0; font-size: 14px; color: var(--se-text); margin-bottom: 10px; }
@media (max-width: 768px) { .se-help-card { flex: 1 1 100%; } }

/* Age Notice */
.se-age-notice { background: rgba(255,215,0,0.08); border: 2px solid var(--se-primary); border-radius: var(--se-radius); padding: 20px 24px; font-size: 16px; color: var(--se-text); text-align: center; margin-top: 24px; }

/* Steps list margin override — base styles in template */
.se-steps { margin-bottom: 24px; }

/* Feature list inside cards */
.se-feature-list { list-style: none; padding: 0; margin: 12px 0 0; font-size: 13px; color: var(--se-text-gray); }
.se-feature-list li { padding: 4px 0 4px 16px; position: relative; border-bottom: 1px solid var(--se-border); }
.se-feature-list li::before { content: '—'; position: absolute; left: 0; color: var(--se-primary); }
.se-feature-list li:last-child { border-bottom: none; }

/* Info Box */
.se-info-box { background: var(--se-surface); border: 1px solid var(--se-border); border-left: 4px solid var(--se-primary); border-radius: var(--se-radius); padding: 20px 24px; margin-top: 24px; font-size: 14px; color: var(--se-text-gray); line-height: 1.7; }
.se-info-box h3 { color: var(--se-text); margin-bottom: 12px; font-size: 16px; }
.se-info-box ul { padding-left: 20px; margin: 0; }
.se-info-box ul li { padding: 3px 0; }

/* Note */
.se-note { font-size: 13px; color: var(--se-text-gray); font-style: italic; margin-top: 16px; }

/* H3 helper */
.se-h3 { font-size: 22px; font-weight: 700; color: var(--se-text); margin: 32px 0 16px; }

/* Legal pages */
.se-legal { max-width: 800px; }
.se-legal__intro { font-size: 16px; color: var(--se-text-gray); line-height: 1.8; margin-bottom: 40px; padding: 20px 24px; background: var(--se-surface); border-radius: var(--se-radius); border-left: 4px solid var(--se-primary); }
.se-legal__block { margin-bottom: 24px; }
.se-legal__block h3 { font-size: 18px; font-weight: 700; color: var(--se-primary); margin-bottom: 8px; }
.se-legal__block p { font-size: 14px; color: var(--se-text-gray); line-height: 1.7; margin: 0; }
.se-legal__list { padding-left: 20px; color: var(--se-text-gray); font-size: 14px; line-height: 2; margin: 12px 0 24px; }
.se-legal p { font-size: 15px; color: var(--se-text-gray); line-height: 1.8; margin-bottom: 16px; }
.se-legal a { color: var(--se-primary); text-decoration: underline; }
.se-legal a:hover { opacity: 0.8; }
.se-legal__updated { font-size: 13px; color: var(--se-text-gray); opacity: 0.6; margin-top: 40px; }

.se-section-cta { text-align: center; margin-top: 40px; }
