/*
Theme Name: Fortunatos Slots v 1.0
Theme URI: https://fortunatos.io
Author: Fortunatos
Author URI: https://fortunatos.io
Description: Dark premium diamond slot casino theme
Version: 2.0.0
Text Domain: fortunatos-slots
*/

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Montserrat', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #E5E7EB;
    background: #0B0D12;
    min-height: 100vh;
    position: relative;
}

/* Diamond Pattern Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(103, 232, 249, 0.02) 0%, transparent 50%),
        linear-gradient(135deg, #0B0D12 0%, #111827 50%, #0F172A 100%);
    background-size: 100% 100%;
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="diamond-pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><polygon points="20,5 35,20 20,35 5,20" fill="none" stroke="rgba(56,189,248,0.05)" stroke-width="0.5"/><polygon points="20,10 30,20 20,30 10,20" fill="rgba(103,232,249,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23diamond-pattern)"/></svg>');
    background-size: 120px 120px;
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

.ds-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* ============================================
   HEADER - DARK PREMIUM STYLE
   ============================================ */
.ds-header {
    background: rgba(11, 13, 18, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(56, 189, 248, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.ds-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.ds-logo {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #38BDF8 0%, #67E8F9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(56, 189, 248, 0.5);
    letter-spacing: -0.5px;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: fit-content;
}

.ds-nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    flex: 1;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.ds-nav-menu a {
    color: #E5E7EB;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.85rem;
    position: relative;
    white-space: nowrap;
    padding: 0.25rem 0;
}

.ds-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #38BDF8, #67E8F9);
    transition: width 0.3s ease;
}

.ds-nav-menu a:hover {
    color: #67E8F9;
}

.ds-nav-menu a:hover::after {
    width: 100%;
}

.ds-header-cta {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: fit-content;
}

.ds-header-play-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: whitesmoke;
    color: #0B0D12;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.ds-header-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(56, 189, 248, 0.5);
    background: #fff;
}

.ds-mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #67E8F9;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============================================
   HERO SECTION - DARK DIAMOND THEME
   ============================================ */
.ds-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #0B0D12 0%, #111827 50%, #0F172A 100%);
    position: relative;
    overflow: hidden;
}

.ds-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(56, 189, 248, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(103, 232, 249, 0.08) 0%, transparent 60%);
    z-index: 1;
}

.ds-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ds-hero-left {
    text-align: left;
}

.ds-hero h1 {
    font-size: 3.5rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 0 40px rgba(56, 189, 248, 0.3);
}

.ds-hero h1 span {
    background: linear-gradient(135deg, #38BDF8 0%, #67E8F9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ds-hero p {
    font-size: 1.3rem;
    color: #9CA3AF;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.2s both;
}

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

.ds-hero-image {
    position: relative;
    animation: fadeInUp 1s ease-out 0.4s both;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Casino Slot Machine - Dark Theme */
.ds-casino-slot-machine {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.85), rgba(15, 23, 42, 0.85));
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(56, 189, 248, 0.2);
    border: 2px solid rgba(56, 189, 248, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 450px;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ds-casino-slot-machine::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(56, 189, 248, 0.1), transparent);
    animation: shine 4s infinite;
}

.ds-slot-screen {
    background: linear-gradient(145deg, rgba(11, 13, 18, 0.8), rgba(17, 24, 39, 0.8));
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(56, 189, 248, 0.5);
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 120px;
    box-shadow: inset 0 0 20px rgba(56, 189, 248, 0.2);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.ds-slot-reel {
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.95), rgba(17, 24, 39, 0.95));
    border-radius: 10px;
    width: 60px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 2px solid rgba(56, 189, 248, 0.5);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 15px rgba(56, 189, 248, 0.3);
    transition: transform 0.1s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
}

.ds-slot-reel.spinning {
    animation: slotSpinFast 0.1s linear infinite;
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.6);
}

.ds-slot-reel.win {
    animation: slotWin 0.5s ease-in-out 3;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.8);
}

.ds-slot-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: auto;
}

.ds-spin-button {
    background: linear-gradient(135deg, #38BDF8, #67E8F9);
    color: #0B0D12;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.4rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.5), 0 0 30px rgba(56, 189, 248, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    min-width: 200px;
    width: auto;
}

.ds-spin-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(56, 189, 248, 0.7), 0 0 40px rgba(56, 189, 248, 0.4);
}

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

.ds-spin-button:active:not(:disabled) {
    transform: translateY(0);
}

.ds-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.ds-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 180px;
}

.ds-btn-primary {
    background: whitesmoke;
    color: #0B0D12;
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.4), 0 0 30px rgba(56, 189, 248, 0.2);
    font-weight: bold;
}

.ds-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(56, 189, 248, 0.6), 0 0 40px rgba(56, 189, 248, 0.3);
    background: #fff;
}

.ds-btn-secondary {
    background: transparent;
    color: #67E8F9;
    border: 2px solid rgba(56, 189, 248, 0.5);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}

.ds-btn-secondary:hover {
    background: rgba(56, 189, 248, 0.1);
    border-color: #67E8F9;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.4);
}

/* ============================================
   SLOTS SECTION - NEW DIAMOND SLOT BLOCK
   ============================================ */
.ds-slots {
    padding: 100px 0;
    background: linear-gradient(180deg, #0B0D12 0%, #111827 100%);
    position: relative;
    overflow: hidden;
}

.ds-slots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(56, 189, 248, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(103, 232, 249, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.ds-slots .ds-container {
    position: relative;
    z-index: 2;
}

.ds-slots .ds-section-title {
    text-align: center;
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(56, 189, 248, 0.3);
}

.ds-slots .ds-section-title span {
    background: linear-gradient(135deg, #38BDF8 0%, #67E8F9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ds-slots .ds-section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #9CA3AF;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ds-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ds-slot-card {
    background: linear-gradient(145deg, #111827, #0F172A);
    border-radius: 20px;
    padding: 0;
    border: 2px solid rgba(56, 189, 248, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.ds-slot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.ds-slot-card:hover::before {
    left: 100%;
}

.ds-slot-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(56, 189, 248, 0.6);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 40px rgba(56, 189, 248, 0.3);
}

.ds-slot-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
    display: block;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 0;
}

.ds-slot-card:hover .ds-slot-card-image {
    transform: scale(1.1);
}

.ds-slot-card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.ds-slot-card h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.ds-slot-card .ds-btn-play {
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, #38BDF8, #67E8F9);
    color: #0B0D12;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.4);
    position: relative;
    overflow: hidden;
}

.ds-slot-card .ds-btn-play::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ds-slot-card .ds-btn-play:hover::before {
    width: 300px;
    height: 300px;
}

.ds-slot-card .ds-btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(56, 189, 248, 0.6), 0 0 30px rgba(56, 189, 248, 0.3);
}

.ds-slot-card .ds-btn-play:active {
    transform: translateY(0);
}

/* Slots Carousel for Mobile */
@media (max-width: 768px) {
    .ds-slots-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
    }

    .ds-slot-card {
        scroll-snap-align: start;
        min-width: 250px;
    }
}

/* ============================================
   CASINOS SECTION - DARK THEME
   ============================================ */
.ds-casinos-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #111827 0%, #0B0D12 100%);
    position: relative;
}

.ds-section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 3rem;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(56, 189, 248, 0.3);
}

.ds-casinos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.ds-casino-card {
    background: linear-gradient(145deg, #111827, #0F172A);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(56, 189, 248, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ds-casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.1), transparent);
    transition: left 0.5s ease;
}

.ds-casino-card:hover::before {
    left: 100%;
}

.ds-casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(56, 189, 248, 0.2);
    border-color: rgba(56, 189, 248, 0.4);
}

.ds-casino-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.ds-casino-logo {
    width: 80px;
    height: 80px;
    background: rgba(17, 24, 39, 0.8);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(56, 189, 248, 0.3);
}

.ds-casino-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.ds-casino-elite-logo::before {
    content: '👑';
    color: #67E8F9;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(103, 232, 249, 0.5);
}

.ds-casino-info h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.ds-rating {
    color: #FBBF24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.ds-casino-right {
    flex: 2;
}

.ds-bonus-info {
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.ds-bonus-amount {
    font-size: 1.3rem;
    font-weight: bold;
    color: #67E8F9;
    margin-bottom: 0.5rem;
}

.ds-bonus-text {
    color: #9CA3AF;
    font-size: 0.9rem;
}

.ds-casino-features {
    list-style: none;
    margin-bottom: 1rem;
}

.ds-casino-features li {
    color: #D1D5DB;
    margin-bottom: 0.3rem;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.9rem;
}

.ds-casino-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #38BDF8;
    font-weight: bold;
}

.ds-casino-button {
    text-align: center;
    margin-top: 1rem;
}

.ds-casino-button .ds-btn {
    width: 80%;
    max-width: 200px;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
    background: whitesmoke;
    color: #0B0D12;
    font-weight: bold;
}

.ds-casino-button .ds-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.5);
}

/* ============================================
   FEATURES SECTION - DARK THEME
   ============================================ */
.ds-features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0B0D12 0%, #111827 100%);
}

.ds-features-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ds-features-row-1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.ds-features-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.ds-feature-card-wide {
    min-height: 200px;
}

.ds-feature-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, #111827, #0F172A);
    border-radius: 15px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.ds-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(56, 189, 248, 0.2);
    border-color: rgba(56, 189, 248, 0.4);
}

.ds-feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ds-security-icon {
    background: linear-gradient(45deg, #38BDF8, #67E8F9);
    color: #0B0D12;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.ds-security-icon::before {
    content: '🔒';
    font-size: 2.5rem;
}

.ds-big-wins-icon {
    background: linear-gradient(45deg, #FBBF24, #F59E0B);
    color: #0B0D12;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.ds-big-wins-icon::before {
    content: '💰';
    font-size: 2.5rem;
}

.ds-mobile-icon {
    background: linear-gradient(45deg, #38BDF8, #67E8F9);
    color: #0B0D12;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.ds-mobile-icon::before {
    content: '📱';
    font-size: 2.5rem;
}

.ds-bonuses-icon {
    background: linear-gradient(45deg, #38BDF8, #67E8F9);
    color: #0B0D12;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.ds-bonuses-icon::before {
    content: '🎁';
    font-size: 2.5rem;
}

.ds-fast-payouts-icon {
    background: linear-gradient(45deg, #8B5CF6, #7C3AED);
    color: #fff;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.ds-fast-payouts-icon::before {
    content: '⚡';
    font-size: 2.5rem;
}

.ds-game-variety-icon {
    background: linear-gradient(45deg, #10B981, #059669);
    color: #fff;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.ds-game-variety-icon::before {
    content: '🎮';
    font-size: 2.5rem;
}

.ds-feature-card h3 {
    color: #FFFFFF;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.ds-feature-card p {
    color: #9CA3AF;
    line-height: 1.6;
}

/* ============================================
   HOW TO PLAY - DARK THEME
   ============================================ */
.ds-how-to-play {
    padding: 100px 0;
    background: linear-gradient(180deg, #111827 0%, #0B0D12 100%);
}

.ds-steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ds-step {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, #111827, #0F172A);
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.ds-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #38BDF8, #67E8F9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #0B0D12;
    margin: 0 auto 1rem;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.ds-step h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.ds-step p {
    color: #9CA3AF;
    line-height: 1.6;
}

/* ============================================
   GAME INFO SECTION - DARK THEME (ENHANCED)
   ============================================ */
.ds-game-info-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0B0D12 0%, #111827 50%, #0F172A 100%);
    position: relative;
    overflow: hidden;
}

.ds-game-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(56, 189, 248, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(103, 232, 249, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.ds-game-info-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="diamond-info" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><polygon points="25,5 45,25 25,45 5,25" fill="none" stroke="rgba(56,189,248,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23diamond-info)"/></svg>');
    background-size: 150px 150px;
    opacity: 0.4;
    z-index: 1;
}

.ds-game-info-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ds-game-info-block {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.95), rgba(15, 23, 42, 0.95));
    border-radius: 20px;
    padding: 3.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(56, 189, 248, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-left: 4px solid transparent;
    border-image: linear-gradient(180deg, #38BDF8, #67E8F9) 1;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.ds-game-info-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #38BDF8, #67E8F9, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ds-game-info-block:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(56, 189, 248, 0.3),
        0 0 40px rgba(56, 189, 248, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ds-game-info-block:hover::before {
    opacity: 1;
}

.ds-game-info-title {
    color: #FFFFFF;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    position: relative;
    text-shadow: 0 0 30px rgba(56, 189, 248, 0.3);
    letter-spacing: -0.5px;
}

.ds-game-info-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #38BDF8, #67E8F9, transparent);
    border-radius: 2px;
}

.ds-game-info-subtitle {
    color: #67E8F9;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-bottom: 0.8rem;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 20px rgba(103, 232, 249, 0.3);
}

.ds-game-info-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #38BDF8, #67E8F9, transparent);
    border-radius: 1px;
}

.ds-game-info-text {
    color: #E5E7EB;
    line-height: 1.9;
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
    text-align: justify;
}

.ds-game-info-text strong {
    color: #67E8F9;
    font-weight: 600;
}

.ds-difficulty-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    background: rgba(11, 13, 18, 0.6);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    max-width: 100%;
    table-layout: auto;
}

.ds-difficulty-table th {
    background: linear-gradient(135deg, #38BDF8 0%, #67E8F9 100%);
    color: #0B0D12;
    padding: 1.2rem 1.5rem;
    font-weight: 700;
    text-align: left;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.ds-difficulty-table th:first-child {
    border-top-left-radius: 12px;
}

.ds-difficulty-table th:last-child {
    border-top-right-radius: 12px;
}

.ds-difficulty-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(56, 189, 248, 0.15);
    color: #E5E7EB;
    transition: background 0.3s ease;
    font-size: 1rem;
}

.ds-difficulty-table tbody tr {
    transition: all 0.3s ease;
}

.ds-difficulty-table tbody tr:hover {
    background: rgba(56, 189, 248, 0.08);
}

.ds-difficulty-table tbody tr:hover td {
    color: #FFFFFF;
}

.ds-difficulty-table tbody tr:last-child td {
    border-bottom: none;
}

.ds-difficulty-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

.ds-difficulty-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

.ds-pros-cons-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin: 2.5rem 0;
}

.ds-pros-block, .ds-cons-block {
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.ds-pros-block::before, .ds-cons-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0.5;
}

.ds-pros-block {
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.15) 0%, 
        rgba(5, 150, 105, 0.12) 50%,
        rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-left: 4px solid #10B981;
}

.ds-pros-block::before {
    color: #10B981;
}

.ds-cons-block {
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.15) 0%, 
        rgba(220, 38, 38, 0.12) 50%,
        rgba(239, 68, 68, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-left: 4px solid #EF4444;
}

.ds-cons-block::before {
    color: #EF4444;
}

.ds-pros-block:hover, .ds-cons-block:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 18px 50px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(16, 185, 129, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ds-cons-block:hover {
    box-shadow: 
        0 18px 50px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(239, 68, 68, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ds-pros-cons-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 0 20px currentColor;
}

.ds-pros-block .ds-pros-cons-title {
    color: #10B981;
}

.ds-pros-block .ds-pros-cons-title::before {
    content: '✓';
    font-size: 1.8rem;
    background: rgba(16, 185, 129, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.ds-cons-block .ds-pros-cons-title {
    color: #EF4444;
}

.ds-cons-block .ds-pros-cons-title::before {
    content: '✗';
    font-size: 1.8rem;
    background: rgba(239, 68, 68, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

.ds-pros-cons-list {
    list-style: none;
    padding: 0;
}

.ds-pros-cons-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #E5E7EB;
    line-height: 1.7;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.ds-pros-cons-list li:hover {
    color: #FFFFFF;
    padding-left: 2.2rem;
}

.ds-pros-cons-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
    font-size: 1.3rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ds-pros-cons-list li:hover::before {
    background: rgba(16, 185, 129, 0.3);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.ds-cons-block .ds-pros-cons-list li::before {
    content: '✗';
    color: #EF4444;
    background: rgba(239, 68, 68, 0.15);
}

.ds-cons-block .ds-pros-cons-list li:hover::before {
    background: rgba(239, 68, 68, 0.3);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

.ds-casino-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    margin: 2.5rem 0;
}

.ds-casino-item {
    background: linear-gradient(135deg, #38BDF8 0%, #67E8F9 100%);
    color: #0B0D12;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 
        0 6px 25px rgba(56, 189, 248, 0.4),
        0 0 20px rgba(56, 189, 248, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ds-casino-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.ds-casino-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 10px 35px rgba(56, 189, 248, 0.6),
        0 0 30px rgba(56, 189, 248, 0.4);
}

.ds-casino-item:hover::before {
    left: 100%;
}

/* ============================================
   TEXT BLOCK SECTION - DARK THEME
   ============================================ */
.ds-text-block-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #111827 0%, #0B0D12 100%);
}

.ds-text-block {
    background: linear-gradient(145deg, #111827, #0F172A);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    max-width: 900px;
    margin: 0 auto;
}

.ds-text-content p {
    color: #D1D5DB;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.ds-text-content p:last-child {
    margin-bottom: 0;
}

/* ============================================
   FAQ SECTION - DARK THEME
   ============================================ */
.ds-faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0B0D12 0%, #111827 100%);
}

.ds-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.ds-faq-item {
    background: linear-gradient(145deg, #111827, #0F172A);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.ds-faq-question {
    padding: 1.5rem;
    background: transparent;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.ds-faq-question:hover {
    background: rgba(56, 189, 248, 0.05);
}

.ds-faq-question h3 {
    color: #FFFFFF;
    font-size: 1.1rem;
}

.ds-faq-toggle {
    font-size: 1.5rem;
    color: #67E8F9;
    transition: transform 0.3s ease;
}

.ds-faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ds-faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

.ds-faq-answer p {
    color: #D1D5DB;
    line-height: 1.6;
}

/* ============================================
   FOOTER - DARK THEME
   ============================================ */
.ds-footer {
    background: linear-gradient(180deg, #0B0D12 0%, #111827 100%);
    padding: 3rem 0 1rem;
    text-align: center;
    border-top: 1px solid rgba(56, 189, 248, 0.2);
}

.ds-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.ds-footer-section h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.ds-footer-section p,
.ds-footer-section a {
    color: #9CA3AF;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.ds-footer-section a:hover {
    color: #67E8F9;
}

.ds-footer-bottom {
    border-top: 1px solid rgba(56, 189, 248, 0.2);
    padding-top: 1rem;
    color: #9CA3AF;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

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

@keyframes slotSpinFast {
    0% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-15px) rotateY(180deg); }
    100% { transform: translateY(0) rotateY(360deg); }
}

@keyframes slotWin {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
    }
    50% { 
        transform: scale(1.15);
        box-shadow: 0 0 30px rgba(251, 191, 36, 0.8);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(56, 189, 248, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
    }
}

.ds-btn-primary:hover {
    animation: pulse 0.6s ease-in-out;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.ds-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #38BDF8, #67E8F9);
    border: none;
    border-radius: 50%;
    color: #0B0D12;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(56, 189, 248, 0.4);
    font-weight: bold;
}

.ds-scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.ds-scroll-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(56, 189, 248, 0.6);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
/* Medium screens - optimize menu spacing */
@media (max-width: 1200px) and (min-width: 769px) {
    .ds-nav-menu {
        gap: 0.9rem;
    }
    
    .ds-nav-menu a {
        font-size: 0.8rem;
    }
    
    .ds-logo {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .ds-container {
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .ds-header {
        width: 100%;
        max-width: 100vw;
        left: 0;
        right: 0;
        box-sizing: border-box;
    }
    
    .ds-header-content {
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        position: relative;
    }
    
    .ds-logo {
        font-size: 1.3rem;
        flex-shrink: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .ds-nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100vw;
        max-width: 100vw;
        background: rgba(11, 13, 18, 0.98);
        flex-direction: column;
        padding: 1rem 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
        border-top: 1px solid rgba(56, 189, 248, 0.2);
        gap: 0.5rem;
        justify-content: flex-start;
        align-items: flex-start;
        box-sizing: border-box;
        z-index: 999;
        overflow-y: auto;
        max-height: calc(100vh - 70px);
    }

    .ds-nav-menu.active {
        display: flex;
    }
    
    .ds-nav-menu a {
        width: 100%;
        padding: 0.75rem 0;
        font-size: 1rem;
        box-sizing: border-box;
        word-wrap: break-word;
    }

    .ds-mobile-menu-btn {
        display: block;
        flex-shrink: 0;
    }

    .ds-header-cta {
        display: flex;
        flex-shrink: 0;
    }

    .ds-header-play-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .ds-hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .ds-hero-left {
        text-align: center;
        order: 2;
    }

    .ds-hero h1 {
        font-size: 2.5rem;
    }

    .ds-hero p {
        font-size: 1.1rem;
    }

    .ds-cta-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .ds-hero {
        padding: 120px 0 60px;
    }
    
    .ds-hero-content {
        gap: 2.5rem;
    }
    
    .ds-hero-left {
        order: 2;
    }
    
    .ds-hero-right {
        width: 100%;
        order: 1;
        margin-bottom: 1.5rem;
    }
    
    .ds-hero-image {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .ds-casino-slot-machine {
        padding: 1.5rem 1rem;
        min-height: 280px;
        max-height: 350px;
        aspect-ratio: 4 / 3;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-radius: 18px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .ds-casino-slot-machine::before {
        animation-duration: 3s;
    }

    .ds-spin-button {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
        min-width: 140px;
        width: 100%;
        max-width: 220px;
        letter-spacing: 1.5px;
    }
    
    .ds-slot-buttons {
        width: 100%;
        padding: 0;
        margin-top: 0;
    }

    .ds-btn {
        width: 100%;
        max-width: 300px;
    }

    .ds-casinos-grid {
        grid-template-columns: 1fr;
    }

    .ds-casino-card {
        flex-direction: column;
        text-align: center;
    }

    .ds-casino-left {
        margin-bottom: 1rem;
    }

    .ds-casino-features li {
        padding-left: 1.5rem;
        text-align: left;
    }

    .ds-casino-features li::before {
        left: 0.2rem;
    }

    .ds-features-row-1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .ds-features-row-2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ds-feature-card {
        padding: 1.5rem;
    }

    .ds-feature-card-wide {
        min-height: auto;
    }

    .ds-steps-container {
        grid-template-columns: 1fr;
    }

    .ds-text-block {
        padding: 2rem;
    }

    .ds-text-content p {
        font-size: 1rem;
    }

    .ds-slots-grid {
        grid-template-columns: 1fr;
    }

    .ds-slots .ds-section-title {
        font-size: 2rem;
    }

    /* Game Info Section - Mobile */
    .ds-game-info-section {
        padding: 60px 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .ds-game-info-container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .ds-game-info-block {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .ds-game-info-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .ds-game-info-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .ds-game-info-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
        text-align: left;
    }

    /* Table wrapper for mobile scrolling */
    .ds-game-info-block {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .ds-difficulty-table {
        font-size: 0.85rem;
        margin: 1.5rem 0;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        table-layout: auto;
    }

    .ds-difficulty-table th,
    .ds-difficulty-table td {
        padding: 0.7rem 0.8rem;
        font-size: 0.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .ds-difficulty-table th {
        font-size: 0.7rem;
        padding: 0.8rem 0.8rem;
    }
    
    .ds-difficulty-table th:first-child,
    .ds-difficulty-table td:first-child {
        min-width: 120px;
        max-width: 50%;
    }
    
    .ds-difficulty-table th:last-child,
    .ds-difficulty-table td:last-child {
        min-width: 150px;
    }
    

    .ds-pros-cons-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }

    .ds-pros-block, .ds-cons-block {
        padding: 1.8rem 1.5rem;
    }

    .ds-pros-cons-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .ds-pros-cons-list li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
        padding-left: 1.8rem;
    }

    .ds-casino-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ds-casino-item {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   SLOT PAGE STYLES - Deco Diamonds Slot
   ============================================ */
.ds-slot-page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0B0D12 0%, #111827 50%, #0F172A 100%);
    position: relative;
    overflow: hidden;
}

.ds-slot-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(56, 189, 248, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(103, 232, 249, 0.08) 0%, transparent 60%);
    z-index: 1;
}

.ds-slot-page-header {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ds-slot-page-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ds-slot-page-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(56, 189, 248, 0.2);
    border: 2px solid rgba(56, 189, 248, 0.3);
}

.ds-slot-page-info {
    text-align: left;
}

.ds-slot-page-title {
    font-size: 3.5rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 40px rgba(56, 189, 248, 0.3);
}

.ds-slot-page-title span {
    background: linear-gradient(135deg, #38BDF8 0%, #67E8F9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ds-slot-page-subtitle {
    font-size: 1.3rem;
    color: #9CA3AF;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.ds-slot-page-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.ds-slot-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ds-slot-stat-label {
    font-size: 0.9rem;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ds-slot-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #67E8F9;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}

.ds-slot-page-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ds-slot-page-description {
    padding: 80px 0;
    background: linear-gradient(180deg, #111827 0%, #0B0D12 100%);
}

.ds-slot-description-content {
    max-width: 900px;
    margin: 0 auto;
}

.ds-slot-description-text {
    margin-top: 2rem;
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.6), rgba(15, 23, 42, 0.6));
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.ds-slot-description-text p {
    font-size: 1.15rem;
    color: #E5E7EB;
    line-height: 1.9;
    margin-bottom: 1.8rem;
}

.ds-slot-description-text p:last-child {
    margin-bottom: 0;
}

.ds-slot-page-game {
    padding: 80px 0;
    background: linear-gradient(180deg, #0B0D12 0%, #111827 100%);
}

.ds-slot-game-container {
    max-width: 1000px;
    margin: 0 auto;
}

.ds-slot-game-frame {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.95), rgba(15, 23, 42, 0.95));
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(56, 189, 248, 0.2);
    border: 2px solid rgba(56, 189, 248, 0.3);
    position: relative;
    overflow: hidden;
}

.ds-slot-game-frame::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(56, 189, 248, 0.05), transparent);
    animation: shine 4s infinite;
}

.ds-slot-game-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(56, 189, 248, 0.2);
    position: relative;
    z-index: 1;
    gap: 2rem;
    flex-wrap: wrap;
}

.ds-slot-game-title-section {
    flex: 1;
    min-width: 300px;
}

.ds-slot-game-header h2 {
    font-size: 2rem;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.ds-slot-game-info {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ds-slot-game-info-item {
    font-size: 0.9rem;
    color: #9CA3AF;
    padding: 0.5rem 1rem;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.ds-slot-game-info-item strong {
    color: #67E8F9;
    font-weight: 700;
}

.ds-slot-game-balance {
    font-size: 1.2rem;
    color: #67E8F9;
    text-align: right;
    padding: 0.75rem 1.5rem;
    background: rgba(56, 189, 248, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.ds-slot-game-balance strong {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.3rem;
}

.ds-slot-game-screen {
    background: linear-gradient(145deg, rgba(11, 13, 18, 0.95), rgba(17, 24, 39, 0.95));
    border-radius: 20px;
    padding: 4rem 2.5rem;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 2px solid rgba(56, 189, 248, 0.4);
    position: relative;
    z-index: 1;
    box-shadow: inset 0 0 30px rgba(56, 189, 248, 0.1);
}

.ds-slot-game-visual {
    text-align: center;
    margin-bottom: 2rem;
}

.ds-slot-game-reels {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.ds-slot-reel-display {
    width: 100px;
    height: 120px;
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.9));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    border: 2px solid rgba(56, 189, 248, 0.4);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

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

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

.ds-slot-game-message {
    margin-top: 2rem;
    text-align: center;
}

.ds-slot-game-message p {
    font-size: 1.3rem;
    color: #E5E7EB;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}

.ds-slot-game-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: 2.5rem;
}

.ds-slot-game-btn {
    min-width: 200px;
    text-align: center;
}

.ds-slot-page-features {
    padding: 80px 0;
    background: linear-gradient(180deg, #111827 0%, #0B0D12 100%);
}

.ds-slot-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.ds-slot-feature-card {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.8), rgba(15, 23, 42, 0.8));
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(56, 189, 248, 0.2);
    transition: all 0.3s ease;
}

.ds-slot-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.2);
}

.ds-slot-feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ds-slot-feature-card h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-weight: 700;
}

.ds-slot-feature-card p {
    color: #9CA3AF;
    line-height: 1.8;
}

.ds-slot-page-how-to-play {
    padding: 80px 0;
    background: linear-gradient(180deg, #0B0D12 0%, #111827 100%);
}

.ds-slot-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.ds-slot-step {
    text-align: center;
}

.ds-slot-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #38BDF8, #67E8F9);
    color: #0B0D12;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.4);
}

.ds-slot-step h3 {
    font-size: 1.3rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-weight: 700;
}

.ds-slot-step p {
    color: #9CA3AF;
    line-height: 1.8;
}

.ds-slot-page-faq {
    padding: 80px 0;
    background: linear-gradient(180deg, #0B0D12 0%, #111827 100%);
}

.ds-slot-page-faq .ds-faq-container {
    margin-top: 3rem;
}

.ds-slot-page-casinos {
    padding: 80px 0;
    background: linear-gradient(180deg, #111827 0%, #0B0D12 100%);
}

.ds-slot-page-casinos .ds-section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #9CA3AF;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ds-slot-casinos-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.ds-slot-casino-item {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.9), rgba(15, 23, 42, 0.9));
    border-radius: 15px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 2rem;
    align-items: center;
    border: 1px solid rgba(56, 189, 248, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.ds-slot-casino-item:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.6);
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.3);
    background: linear-gradient(145deg, rgba(17, 24, 39, 1), rgba(15, 23, 42, 1));
}

.ds-slot-casino-logo {
    width: 140px;
    height: 140px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 13, 18, 0.6);
    border: 2px solid rgba(56, 189, 248, 0.2);
    transition: all 0.3s ease;
}

.ds-slot-casino-item:hover .ds-slot-casino-logo {
    border-color: rgba(56, 189, 248, 0.5);
    transform: scale(1.05);
}

.ds-slot-casino-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ds-slot-casino-details h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.ds-slot-casino-rating {
    color: #FBBF24;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.ds-slot-casino-bonus {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ds-slot-casino-bonus strong {
    color: #67E8F9;
    font-size: 1.1rem;
}

.ds-slot-casino-bonus span {
    color: #9CA3AF;
    font-size: 0.9rem;
}

.ds-slot-casino-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ds-slot-casino-features li {
    color: #9CA3AF;
    font-size: 0.85rem;
    padding-left: 1.2rem;
    position: relative;
}

.ds-slot-casino-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #67E8F9;
    font-weight: bold;
}

.ds-slot-casino-action {
    display: flex;
    align-items: center;
}

/* Mobile Styles for Slot Page */
@media (max-width: 768px) {
    .ds-slot-page-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ds-slot-page-info {
        text-align: center;
    }
    
    .ds-slot-page-title {
        font-size: 2.5rem;
    }
    
    .ds-slot-page-subtitle {
        font-size: 1.1rem;
    }
    
    .ds-slot-page-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .ds-slot-page-cta {
        justify-content: center;
    }
    
    .ds-slot-description-text {
        padding: 2rem 1.5rem;
    }
    
    .ds-slot-description-text p {
        font-size: 1rem;
    }
    
    .ds-slot-features-grid {
        grid-template-columns: 1fr;
    }
    
    .ds-slot-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ds-slot-casino-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .ds-slot-casino-logo {
        margin: 0 auto;
        width: 120px;
        height: 120px;
    }
    
    .ds-slot-game-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .ds-slot-game-title-section {
        min-width: 100%;
    }
    
    .ds-slot-game-info {
        justify-content: center;
    }
    
    .ds-slot-game-balance {
        text-align: center;
        width: 100%;
    }
    
    .ds-slot-game-screen {
        padding: 2.5rem 1.5rem;
        min-height: 400px;
    }
    
    .ds-slot-game-reels {
        gap: 1rem;
    }
    
    .ds-slot-reel-display {
        width: 80px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .ds-slot-game-message p {
        font-size: 1.1rem;
    }
    
    .ds-slot-game-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ds-slot-game-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .ds-slot-page-faq {
        padding: 60px 0;
    }
    
    .ds-faq-question {
        padding: 1.2rem;
    }
    
    .ds-faq-question h3 {
        font-size: 1rem;
        padding-right: 1rem;
    }
    
    .ds-faq-answer.active {
        padding: 1.2rem;
    }
    
    .ds-faq-answer p {
        font-size: 0.95rem;
    }
}
