/* CSS Variables */
:root {
    --se-primary: #D93025;          /* red */
    --se-primary-dark: #B71C1C;     /* dark red */
    --se-secondary: #1a1a1a;        /* dark for text on red buttons */
    --se-accent: #111111;
    --se-text: #ffffff;
    --se-text-gray: #9ca3af;        /* neutral gray */
    --se-bg-dark: #0d0d0d;          /* near black */
    --se-bg-light: #1a1a1a;         /* dark charcoal */
    --se-surface: #242424;          /* cards */
    --se-border: rgba(255, 255, 255, 0.12);
    --se-radius: 12px;
    --se-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    --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(217, 48, 37, 0.35);
}

.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, #D93025, #B71C1C);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 8px 20px rgba(217, 48, 37, 0.4);
}

.se-btn--hero:hover {
    background: linear-gradient(135deg, #B71C1C, #8B0000);
    box-shadow: 0 12px 28px rgba(217, 48, 37, 0.55);
    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;
}

.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, 255, 255, 0.05);
    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 {
    margin-bottom: 20px;
}
.se-access-card__icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.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, 255, 255, 0.05);
    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), var(--se-primary-dark));
    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(217, 48, 37, 0.2);
}

.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(217, 48, 37, 0.2);
}

.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, 255, 255, 0.05);
    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, 255, 255, 0.04);
}

.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, 255, 255, 0.05);
    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, 255, 255, 0.05);
    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, 255, 255, 0.05);
    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;
    }
}

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

/* ─── Hero Banner Override (CLAUDE.md pattern) ─── */
.se-hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    display: block;
}
.se-hero__bg-link {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
}
.se-hero__bg-link picture { display: block; width: 100%; height: 100%; }
.se-hero__bg-link img { width: 100%; height: 100%; object-fit: cover; display: block; }
.se-hero__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 40px 0;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(90deg,rgba(0,0,0,.65) 0%,rgba(0,0,0,.25) 55%,rgba(0,0,0,0) 100%);
}
.se-hero__overlay > * { pointer-events: auto; }
.se-hero__overlay .se-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.se-hero__title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,.6);
    max-width: 620px;
}
.se-hero__text {
    font-size: 22px;
    font-weight: 600;
    color: var(--se-primary);
    margin-bottom: 32px;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
@media(max-width:768px){
    .se-hero { min-height: 420px; }
    .se-hero__title { font-size: 26px; max-width: 100%; }
    .se-hero__text  { font-size: 17px; }
    .se-hero__overlay { padding: 24px 0; }
}

/* ─── Bonus Widget Cards (sec-bonus-*) ─── */
.se-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;
    transition: var(--se-transition);
}
.sec-bonus-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(217,48,37,.2); }
.sec-bonus-card__image { width:100%; aspect-ratio:1/1; overflow:hidden; background:var(--se-accent); }
.sec-bonus-card__image img { width:100%; height:100%; object-fit:cover; display:block; }
.sec-bonus-card__content { padding: 24px; display:flex; flex-direction:column; flex:1; }
.sec-bonus-card__stage {
    display:inline-block;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
    color:var(--se-secondary);
    background:var(--se-primary);
    padding:4px 12px;
    border-radius:12px;
    margin-bottom:12px;
    align-self:flex-start;
}
.sec-bonus-card__title {
    font-size:22px;
    font-weight:700;
    color:var(--se-text);
    margin-bottom:10px;
    line-height:1.3;
}
.sec-bonus-card__desc {
    font-size:14px;
    color:var(--se-text-gray);
    line-height:1.7;
    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,.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; }
.sec-bonus-card__terms {
    font-size:11px;
    color:var(--se-text-gray);
    margin-bottom:16px;
    line-height:1.5;
}
.sec-bonus-card__content .se-btn { margin-top:auto; display:block; text-align:center; }
@media(max-width:768px){ .sec-bonus-card { flex: 1 1 100%; } }

/* ─── Footer Testimonials ─── */
.se-footer-reviews {
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    justify-content:center;
    align-items:center;
    padding:28px 0;
    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:#fff;
    border-radius:8px;
    transition:var(--se-transition);
    flex:0 0 auto;
}
.se-footer-reviews a:hover { transform:translateY(-2px); box-shadow:0 4px 12px rgba(255,255,255,.1); }
.se-footer-reviews img { height:28px; width:auto; display:block; }

/* ─── Info blocks ─── */
.se-info-grid { display:flex; flex-wrap:wrap; gap:24px; margin-top:40px; }
.se-info-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);
}
.se-info-card h3 { font-size:20px; font-weight:700; color:var(--se-primary); margin-bottom:14px; }
.se-info-card p  { color:var(--se-text-gray); line-height:1.8; font-size:15px; }
.se-info-card ul { list-style:none; margin-top:12px; }
.se-info-card li { position:relative; padding-left:20px; margin-bottom:8px; color:var(--se-text-gray); font-size:14px; line-height:1.6; }
.se-info-card li::before { content:'→'; position:absolute; left:0; color:var(--se-primary); font-weight:700; }
@media(max-width:768px){ .se-info-card { flex:1 1 100%; } }

/* ─── Intro check list ─── */
.se-check-list {
    list-style: none;
    margin: 20px auto;
    padding: 20px 24px;
    max-width: 860px;
    background: var(--se-surface);
    border: 1px solid var(--se-border);
    border-radius: var(--se-radius);
}
.se-check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: var(--se-text-gray);
    font-size: 15px;
    line-height: 1.7;
}
.se-check-list li:last-child { margin-bottom: 0; }
.se-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--se-primary);
    font-weight: 700;
}

/* ─── Games grid ─── */
.se-games-section { margin-top: 40px; }
.se-games-section__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--se-text);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.se-games-section__title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: var(--se-primary);
    border-radius: 2px;
}
.se-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}
.se-game-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--se-border);
    background: var(--se-surface);
    cursor: pointer;
    transition: var(--se-transition);
    aspect-ratio: 3/4;
}
.se-game-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(217,48,37,.25); border-color: var(--se-primary); }
.se-game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.se-game-card:hover img { transform: scale(1.06); }
.se-game-card__name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 8px 8px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
    line-height: 1.3;
}
.se-game-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--se-primary);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.se-games-cta {
    margin-top: 20px;
    text-align: center;
}

/* ─── Featured games on index ─── */
.se-featured-games { margin-top: 40px; }

@media (max-width: 767px) {
    .se-games-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .se-game-card__name { font-size: 10px; }
}
@media (max-width: 479px) {
    .se-games-grid { grid-template-columns: repeat(2, 1fr); }
}
