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

:root {
    --primary-gradient: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FDC830 100%);
    --secondary-gradient: linear-gradient(135deg, #00B4DB 0%, #0083B0 100%);
    --dark-bg: #1a1a2e;
    --darker-bg: #0f0f1e;
    --card-bg: #25274d;
    --text-light: #ffffff;
    --text-gray: #b8b8b8;
    --accent-color: #FF6B35;
    --success-color: #4CAF50;
    --spacing-unit: 8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 3);
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: var(--card-bg);
    padding: calc(var(--spacing-unit) * 6);
    border-radius: calc(var(--spacing-unit) * 3);
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-gate-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto calc(var(--spacing-unit) * 3);
    display: block;
    object-fit: contain;
}

.age-gate h1 {
    font-size: 28px;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.age-gate-text {
    font-size: 18px;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--text-gray);
}

.age-gate-subtext {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.age-gate-buttons {
    display: flex;
    gap: calc(var(--spacing-unit) * 2);
    flex-direction: column;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--card-bg);
    padding: calc(var(--spacing-unit) * 3);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: calc(var(--spacing-unit) * 3);
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: var(--text-gray);
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: calc(var(--spacing-unit) * 2);
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);
    border-radius: calc(var(--spacing-unit) * 2);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
    
}

.game-card-btn {
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    margin: 20px auto;
    width: 100%;
    max-width: 200px;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);
    border-radius: calc(var(--spacing-unit) * 2);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: var(--dark-bg);
}

.btn-hero {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 6);
    border-radius: calc(var(--spacing-unit) * 3);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
}

.header {
    background: var(--darker-bg);
    padding: calc(var(--spacing-unit) * 3) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 3);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 2);
    text-decoration: none;
    color: white;
}

.logo-icon {
    width: 45px;
    height: 45px;
    display: block;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--spacing-unit));
    position: relative;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
    position: absolute;
}

.mobile-toggle span:nth-child(1) {
    top: 10px;
}

.mobile-toggle span:nth-child(2) {
    top: 18px;
}

.mobile-toggle span:nth-child(3) {
    top: 26px;
}

.mobile-toggle.active span:nth-child(1) {
    top: 18px;
    transform: rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    top: 18px;
    transform: rotate(-45deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: calc(var(--spacing-unit) * 4);
}

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 16px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: white;
}

.hero {
    padding: calc(var(--spacing-unit) * 12) 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-unit) * 8);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: calc(var(--spacing-unit) * 3);
    padding-right: calc(var(--spacing-unit) * 3);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: calc(var(--spacing-unit)) calc(var(--spacing-unit) * 3);
    border-radius: calc(var(--spacing-unit) * 3);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit) * 3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: calc(var(--spacing-unit) * 3);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: calc(var(--spacing-unit) * 4);
    line-height: 1.8;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slot-preview {
    background: var(--card-bg);
    padding: calc(var(--spacing-unit) * 4);
    border-radius: calc(var(--spacing-unit) * 3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.slot-frame {
    display: flex;
    gap: calc(var(--spacing-unit) * 2);
}

.slot-symbol {
    width: 100px;
    height: 100px;
    background: var(--darker-bg);
    border-radius: calc(var(--spacing-unit) * 2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    animation: spin 3s ease-in-out infinite;
}

.slot-symbol:nth-child(2) {
    animation-delay: 0.3s;
}

.slot-symbol:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes spin {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.features {
    padding: calc(var(--spacing-unit) * 12) 0;
    background: var(--dark-bg);
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 6);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: calc(var(--spacing-unit) * 6);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: calc(var(--spacing-unit) * 4);
}

.feature-card {
    background: var(--card-bg);
    padding: calc(var(--spacing-unit) * 4);
    border-radius: calc(var(--spacing-unit) * 3);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

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

.games-preview {
    padding: calc(var(--spacing-unit) * 12) 0;
    background: var(--darker-bg);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: calc(var(--spacing-unit) * 4);
    margin-bottom: calc(var(--spacing-unit) * 6);
}

.game-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border-radius: calc(var(--spacing-unit) * 3);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease, border 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.game-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.game-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px dashed rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
    border-color: rgba(255, 255, 255, 0.18);
}

.game-card:hover::before {
    opacity: 1;
}

.game-card .btn-secondary {
    backdrop-filter: blur(6px);
    border-color: rgba(255, 255, 255, 0.4);
}

.game-card .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.game-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
}

.game-image-1 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.game-image-1::before {
    content: '💎';
    font-size: 80px;
}

.game-image-2 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.game-image-2::before {
    content: '🎰';
    font-size: 80px;
}

.game-image-3 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.game-image-3::before {
    content: '🍒';
    font-size: 80px;
}

.game-image-4 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.game-image-4::before {
    content: '🏆';
    font-size: 80px;
}

.game-badge {
    position: absolute;
    top: calc(var(--spacing-unit) * 2);
    right: calc(var(--spacing-unit) * 2);
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-bg);
    padding: calc(var(--spacing-unit)) calc(var(--spacing-unit) * 2);
    border-radius: calc(var(--spacing-unit));
    font-size: 12px;
    font-weight: 700;
}

.game-card h3 {
    font-size: 22px;
    margin: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 2);
}

.game-card p {
    color: var(--text-gray);
    padding: 0 calc(var(--spacing-unit) * 3);
    margin-bottom: calc(var(--spacing-unit) * 3);
    line-height: 1.6;
}

.game-card .btn-secondary {
    margin: 0 calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 3);
    width: calc(100% - calc(var(--spacing-unit) * 6));
    text-align: center;
}

.games-grid.single-game {
    grid-template-columns: minmax(280px, 520px);
    justify-content: center;
}

.christmas-card {
    position: relative;
    padding-bottom: calc(var(--spacing-unit) * 3);
    background: linear-gradient(160deg, rgba(33, 36, 62, 0.95), rgba(20, 24, 45, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 45px rgba(5, 10, 25, 0.7);
    overflow: hidden;
}

.christmas-card::before,
.christmas-card::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: calc(var(--spacing-unit) * 2);
    pointer-events: none;
}

.christmas-card::before {
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.06);
}

.christmas-card::after {
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.35), transparent 35%),
        radial-gradient(circle at 80% 10%, rgba(255, 0, 76, 0.35), transparent 35%),
        radial-gradient(circle at 50% 80%, rgba(0, 198, 255, 0.25), transparent 45%);
    mix-blend-mode: screen;
    opacity: 0.55;
    animation: auroraGlow 12s ease-in-out infinite;
}

.christmas-card .game-image {
    position: relative;
    background: linear-gradient(145deg, #a11d2f 0%, #1b365d 60%, #1f6f78 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.christmas-card .game-image::after {
    content: "❄️";
    position: absolute;
    font-size: 64px;
    animation: floatSnow 6s ease-in-out infinite;
    opacity: 0.8;
}

.christmas-card .game-badge {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: #6b1a27;
    box-shadow: 0 10px 25px rgba(252, 182, 159, 0.35);
}

.christmas-card .game-card-icons {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: calc(var(--spacing-unit) * 2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0 calc(var(--spacing-unit) * 2);
}

.christmas-card .btn-secondary {
    border-color: rgba(255, 255, 255, 0.7);
    color: white;
}

.christmas-card .btn-secondary:hover {
    background: linear-gradient(135deg, #ff5858 0%, #f09819 100%);
}

@keyframes floatSnow {
    0% {
        transform: translate(-40px, -20px) rotate(-10deg);
        opacity: 0.3;
    }
    50% {
        transform: translate(30px, 10px) rotate(15deg);
        opacity: 0.8;
    }
    100% {
        transform: translate(-40px, -20px) rotate(-10deg);
        opacity: 0.3;
    }
}

@keyframes auroraGlow {
    0% {
        transform: translate3d(-5%, -5%, 0) scale(1);
    }
    50% {
        transform: translate3d(5%, 5%, 0) scale(1.05);
    }
    100% {
        transform: translate3d(-5%, -5%, 0) scale(1);
    }
}

.game-card-icons {
    display: flex;
    gap: calc(var(--spacing-unit) * 2);
    justify-content: center;
    font-size: 42px;
    padding: calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 2);
}

.game-card-meta {
    list-style: none;
    padding: 0 calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 2);
    margin: 0;
    color: var(--text-gray);
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 1.5);
}

.game-card-meta strong {
    color: var(--text-light);
    margin-right: calc(var(--spacing-unit));
}

.game-detail-hero {
    padding: calc(var(--spacing-unit) * 10) 0;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent), var(--dark-bg);
}

.game-detail-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.game-detail-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: calc(var(--spacing-unit) * 2);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.game-detail-pill {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: calc(var(--spacing-unit)) calc(var(--spacing-unit) * 2);
    border-radius: calc(var(--spacing-unit) * 3);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.game-detail-lead {
    font-size: 20px;
    color: var(--text-gray);
    margin: calc(var(--spacing-unit) * 3) 0;
}

.game-meta-list {
    list-style: none;
    padding: 0;
    margin: calc(var(--spacing-unit) * 4) 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
    text-align: left;
}

.game-meta-list li {
    background: rgba(255, 255, 255, 0.03);
    border-radius: calc(var(--spacing-unit) * 2);
    padding: calc(var(--spacing-unit) * 2);
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 1.2);
}

.game-meta-list span {
    color: var(--text-gray);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-cta-buttons {
    gap: calc(var(--spacing-unit) * 2);
    text-align: start;
}

.game-play-section {
    padding: calc(var(--spacing-unit) * 8) 0;
    background: var(--dark-bg);
}

.game-frame {
    background: var(--card-bg);
    border-radius: calc(var(--spacing-unit) * 3);
    padding: calc(var(--spacing-unit) * 2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.game-frame iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: calc(var(--spacing-unit) * 2);
    background: #000;
}

.game-frame-note {
    text-align: center;
    margin-top: calc(var(--spacing-unit) * 3);
    color: var(--text-gray);
    font-size: 14px;
}

.how-to-play-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
    margin-top: calc(var(--spacing-unit) * 5);
}

.how-card {
    background: var(--card-bg);
    border-radius: calc(var(--spacing-unit) * 3);
    padding: calc(var(--spacing-unit) * 4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.how-card h3 {
    margin-bottom: calc(var(--spacing-unit) * 2);
    font-size: 20px;
}

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

.game-highlight-section {
    padding: calc(var(--spacing-unit) * 10) 0;
    background: var(--darker-bg);
}

.game-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
}

.highlight-card {
    background: var(--card-bg);
    padding: calc(var(--spacing-unit) * 4);
    border-radius: calc(var(--spacing-unit) * 3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight-card h3 {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

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

.game-faq-section {
    padding: calc(var(--spacing-unit) * 10) 0;
    background: var(--dark-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
}

.faq-card {
    background: var(--card-bg);
    padding: calc(var(--spacing-unit) * 4);
    border-radius: calc(var(--spacing-unit) * 3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-card h3 {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

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

.cta-center {
    text-align: center;
}

.info-section {
    padding: calc(var(--spacing-unit) * 12) 0;
    background: var(--dark-bg);
}

.info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-unit) * 8);
    align-items: start;
}

.info-text p {
    color: var(--text-gray);
    margin-bottom: calc(var(--spacing-unit) * 3);
    line-height: 1.8;
    font-size: 16px;
}

.info-text strong {
    color: var(--text-light);
}

.info-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-unit) * 3);
}

.info-box {
    background: var(--card-bg);
    padding: calc(var(--spacing-unit) * 3);
    border-radius: calc(var(--spacing-unit) * 2);
    text-align: center;
}

.info-box h3 {
    font-size: 18px;
    margin-bottom: calc(var(--spacing-unit));
    color: var(--success-color);
}

.info-box p {
    color: var(--text-gray);
    font-size: 14px;
}

.cta-section {
    padding: calc(var(--spacing-unit) * 12) 0;
    background: var(--darker-bg);
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.cta-section p {
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.disclaimer-text {
    margin-top: calc(var(--spacing-unit) * 3);
    font-size: 14px !important;
    color: var(--text-gray) !important;
}

.footer {
    background: var(--darker-bg);
    padding: calc(var(--spacing-unit) * 8) 0 calc(var(--spacing-unit) * 4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: calc(var(--spacing-unit) * 6);
    margin-bottom: calc(var(--spacing-unit) * 6);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: calc(var(--spacing-unit) * 3);
    color: white;
}

.footer-col p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

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

.footer-col ul li {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.footer-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 2);
    color: white;
    font-weight: 700;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    display: block;
    object-fit: contain;
}

.footer-rg {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(var(--spacing-unit) * 4);
    flex-wrap: wrap;
    padding: calc(var(--spacing-unit) * 6) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.rg-logo-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(var(--spacing-unit) * 3);
    flex-wrap: wrap;
}

.rg-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 3);
    border-radius: calc(var(--spacing-unit) * 2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.rg-logo-link img {
    width: 140px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.rg-logo-link:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.rg-badge {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 2);
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 3);
    background: var(--card-bg);
    border-radius: calc(var(--spacing-unit) * 2);
    text-decoration: none;
    color: white;
    transition: transform 0.2s, box-shadow 0.2s;
    font-weight: 600;
}

.rg-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.age-badge {
    background: var(--primary-gradient);
}

.badge-circle {
    width: 50px;
    height: 50px;
    background: white;
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
}

.badge-icon {
    font-size: 32px;
}

.footer-bottom {
    text-align: center;
}

.footer-disclaimer {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: calc(var(--spacing-unit) * 3);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer strong {
    color: white;
    display: block;
    margin-bottom: calc(var(--spacing-unit));
}

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

@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: calc(var(--spacing-unit) * 6);
        padding-top: calc(var(--spacing-unit) * 8);
        padding-bottom: calc(var(--spacing-unit) * 8);
    }

    .hero-badge {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .info-content {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 4);
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--darker-bg);
        flex-direction: column;
        padding: 0;
        gap: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
        padding: calc(var(--spacing-unit) * 3);
        gap: calc(var(--spacing-unit) * 2);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: calc(var(--spacing-unit) * 2);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-buttons button {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 3);
    }

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

    .games-grid.single-game {
        grid-template-columns: 1fr;
    }

    .game-meta-list {
        grid-template-columns: 1fr 1fr;
    }

    .game-frame iframe {
        aspect-ratio: 4 / 3;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 4);
    }

    .page-header h1 {
        font-size: 36px;
    }

    .page-header p {
        font-size: 16px;
    }

    .slot-reels {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .slot-reel {
        width: 100px;
        height: 120px;
        font-size: 48px;
    }

    .age-gate-content {
        max-width: 90%;
        padding: calc(var(--spacing-unit) * 4);
    }

    .age-gate h1 {
        font-size: 24px;
    }

    .contact-info {
        padding: calc(var(--spacing-unit) * 3);
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: calc(var(--spacing-unit));
    }

    .rg-resources {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .game-meta-list {
        grid-template-columns: 1fr;
    }

    .game-card-icons {
        font-size: 30px;
    }

    .game-cta-buttons {
        flex-direction: column;
    }

    .slot-symbol {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .info-visual {
        grid-template-columns: 1fr;
    }

    .footer-rg {
        flex-direction: column;
        gap: calc(var(--spacing-unit) * 2);
    }

    .rg-badge {
        width: 100%;
        justify-content: center;
    }

    .rg-logo-link {
        width: 100%;
    }

    .feature-icon {
        font-size: 40px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .game-card h3 {
        font-size: 20px;
    }

    .btn-hero {
        padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);
        font-size: 16px;
    }

    .btn-primary {
        padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3);
        font-size: 14px;
    }

    .btn-secondary {
        padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3);
        font-size: 14px;
    }

    .slot-reels {
        padding: calc(var(--spacing-unit) * 2);
        gap: calc(var(--spacing-unit));
    }

    .slot-reel {
        width: 80px;
        height: 100px;
        font-size: 40px;
    }

    .slot-machine-container {
        padding: calc(var(--spacing-unit) * 3);
    }

    .credits-display {
        font-size: 18px;
    }

    .spin-button {
        font-size: 18px;
        padding: calc(var(--spacing-unit) * 2);
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 14px;
        padding: 0 calc(var(--spacing-unit) * 2);
    }

    .content-section h2 {
        font-size: 28px;
    }

    .content-section h3 {
        font-size: 20px;
    }

    .content-section p,
    .content-section ul,
    .content-section ol {
        font-size: 14px;
    }

    .age-gate-content {
        padding: calc(var(--spacing-unit) * 3);
    }

    .age-gate-logo {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .age-gate h1 {
        font-size: 22px;
    }

    .age-gate-text {
        font-size: 16px;
    }

    .footer-disclaimer {
        font-size: 12px;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .slot-reel {
        width: 70px;
        height: 90px;
        font-size: 36px;
    }

    .game-badge {
        font-size: 10px;
        padding: calc(var(--spacing-unit) * 0.5) calc(var(--spacing-unit));
    }

    .badge-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .badge-icon {
        font-size: 24px;
    }

    .rg-badge {
        padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 2);
        font-size: 14px;
    }
}

.slot-machine-container {
    background: var(--card-bg);
    border-radius: calc(var(--spacing-unit) * 3);
    padding: calc(var(--spacing-unit) * 4);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.slot-machine-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.slot-machine-header h2 {
    font-size: 28px;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.credits-display {
    background: var(--darker-bg);
    padding: calc(var(--spacing-unit) * 2);
    border-radius: calc(var(--spacing-unit) * 2);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: calc(var(--spacing-unit) * 2);
    margin: calc(var(--spacing-unit) * 4) 0;
    padding: calc(var(--spacing-unit) * 3);
    background: var(--darker-bg);
    border-radius: calc(var(--spacing-unit) * 2);
}

.slot-reel {
    width: 120px;
    height: 140px;
    background: var(--dark-bg);
    border-radius: calc(var(--spacing-unit) * 2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.slot-reel.spinning {
    animation: reel-spin 0.5s ease-in-out;
}

@keyframes reel-spin {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

.slot-controls {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 3);
}

.spin-button {
    width: 100%;
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: calc(var(--spacing-unit) * 3);
    border-radius: calc(var(--spacing-unit) * 2);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.spin-button:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.spin-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.result-message {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    min-height: 30px;
    color: var(--success-color);
}

.game-disclaimer {
    text-align: center;
    color: var(--text-gray);
    font-size: 12px;
    margin-top: calc(var(--spacing-unit) * 3);
    padding-top: calc(var(--spacing-unit) * 3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-header {
    padding: calc(var(--spacing-unit) * 8) 0 calc(var(--spacing-unit) * 6);
    background: var(--darker-bg);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: calc(var(--spacing-unit) * 2);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: var(--text-gray);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    padding: calc(var(--spacing-unit) * 8) 0;
    background: var(--dark-bg);
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: calc(var(--spacing-unit) * 3);
    margin-top: calc(var(--spacing-unit) * 6);
}

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

.content-section h3 {
    font-size: 24px;
    margin-bottom: calc(var(--spacing-unit) * 2);
    margin-top: calc(var(--spacing-unit) * 4);
}

.content-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: calc(var(--spacing-unit) * 3);
    font-size: 16px;
}

.content-section ul,
.content-section ol {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: calc(var(--spacing-unit) * 3);
    padding-left: calc(var(--spacing-unit) * 5);
}

.content-section li {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.content-section strong {
    color: white;
}

.content-section a {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-info {
    background: var(--card-bg);
    padding: calc(var(--spacing-unit) * 4);
    border-radius: calc(var(--spacing-unit) * 3);
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 2);
    margin-bottom: calc(var(--spacing-unit) * 3);
    font-size: 18px;
}

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

.contact-icon {
    font-size: 24px;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.rg-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 4);
    margin: calc(var(--spacing-unit) * 6) 0;
}

.rg-resource-card {
    background: var(--card-bg);
    padding: calc(var(--spacing-unit) * 4);
    border-radius: calc(var(--spacing-unit) * 3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.rg-resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.rg-resource-card h3 {
    font-size: 22px;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.rg-resource-card p {
    color: var(--text-gray);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.rg-resource-card a {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.rg-resource-card a:hover {
    text-decoration: underline;
}