/* ========================================
   FREE SLOTS PAGE - ULTRA PREMIUM DARK DESIGN
   Version: 11.0 - DARK BLUE BACKGROUND + WHITE TEXT
   Theme: Deep Navy Blue Background + White Text + Red Accents
   Design: Premium Dark Mode Gaming Experience
   ======================================== */

:root {
    --primary-navy: #0b004b;
    --navy-dark: #08022a;
    --navy-medium: #1a0d5c;
    --navy-light: #231380;
    --accent-red: #da1f15;
    --red-hover: #ff4d43;
    --white: #ffffff;
    --text-bright: #f0f0f0;
    --text-muted: rgba(255, 255, 255, 0.7);
    --border-glow: rgba(218, 31, 21, 0.3);
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 8px 32px rgba(218, 31, 21, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   BASE - DARK BLUE BACKGROUND
   ======================================== */

body {
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--primary-navy) 50%, var(--navy-medium) 100%) !important;
    background-attachment: fixed;
    color: var(--white) !important;
}

.games-section-content {
    background: transparent;
    position: relative;
    min-height: 100vh;
}

.games-section-content::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(218, 31, 21, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(35, 19, 128, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ========================================
   INTRO SECTION - Premium Dark Card
   ======================================== */

.free-slots-intro {
    margin: 60px auto 80px;
    padding: 50px 60px;
    max-width: 1200px;
    background: linear-gradient(135deg, rgba(26, 13, 92, 0.6) 0%, rgba(11, 0, 75, 0.8) 100%);
    border-radius: 16px;
    border: 2px solid var(--border-glow);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.free-slots-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red) 0%, var(--red-hover) 50%, var(--accent-red) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: 0% 0; }
}

.free-slots-intro::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(218, 31, 21, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.free-slots-intro:hover {
    box-shadow: 0 12px 48px rgba(218, 31, 21, 0.5);
    border-color: var(--accent-red);
}

.free-slots-intro .lead-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white) !important;
    margin-bottom: 20px;
    line-height: 1.5;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
}

/* ========================================
   CONTENT CONTAINERS - Dark Theme
   ======================================== */

.software-description,
.play-game-content,
.game-detail-content,
.content-block {
    background: transparent;
    position: relative;
    padding: 60px 20px;
    line-height: 1.8;
    color: var(--white) !important;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================
   TYPOGRAPHY - WHITE TEXT
   ======================================== */

.software-description h1,
.play-game-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white) !important;
    margin: 60px 0 32px;
    padding-bottom: 24px;
    border-bottom: 3px solid transparent;
    background: linear-gradient(90deg, var(--accent-red) 0%, transparent 100%);
    background-size: 100% 3px;
    background-repeat: no-repeat;
    background-position: bottom;
    letter-spacing: -1px;
    line-height: 1.2;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8), 0 0 30px rgba(218, 31, 21, 0.4);
}

.software-description h2,
.play-game-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white) !important;
    margin: 50px 0 24px;
    padding: 20px 0 20px 28px;
    background: linear-gradient(90deg, rgba(218, 31, 21, 0.2) 0%, transparent 100%);
    border-left: 5px solid var(--accent-red);
    border-radius: 0 8px 8px 0;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.software-description h3,
.play-game-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white) !important;
    margin: 40px 0 20px;
    padding-left: 16px;
    border-left: 3px solid var(--accent-red);
    letter-spacing: -0.3px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

.software-description h4,
.play-game-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-bright) !important;
    margin: 32px 0 16px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.software-description h5,
.play-game-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted) !important;
    margin: 24px 0 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* ========================================
   PARAGRAPHS - WHITE TEXT
   ======================================== */

.software-description p,
.play-game-content p,
.game-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-bright) !important;
    margin: 20px 0;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.software-description > p:first-of-type,
.play-game-content > p:first-of-type {
    font-size: 19px;
    line-height: 1.8;
    color: var(--white) !important;
    font-weight: 500;
}

/* ========================================
   LISTS - WHITE TEXT
   ======================================== */

.software-description ul,
.play-game-content ul {
    margin: 28px 0;
    padding: 0;
    list-style: none;
}

.software-description ul li,
.play-game-content ul li {
    position: relative;
    padding-left: 36px;
    margin: 16px 0;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-bright) !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.software-description ul li::before,
.play-game-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-red), var(--red-hover));
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(218, 31, 21, 0.6);
}

.software-description ol,
.play-game-content ol {
    margin: 28px 0;
    padding: 0 0 0 40px;
    list-style: none;
    counter-reset: item;
}

.software-description ol li,
.play-game-content ol li {
    position: relative;
    padding-left: 16px;
    margin: 16px 0;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-bright) !important;
    counter-increment: item;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.software-description ol li::before,
.play-game-content ol li::before {
    content: counter(item);
    position: absolute;
    left: -40px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent-red), var(--red-hover));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 16px rgba(218, 31, 21, 0.6);
}

/* ========================================
   LINKS - RED WITH GLOW
   ======================================== */

.software-description a,
.play-game-content a {
    color: var(--accent-red) !important;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: var(--transition);
    text-shadow: 0 0 10px rgba(218, 31, 21, 0.4);
}

.software-description a:hover,
.play-game-content a:hover {
    color: var(--red-hover) !important;
    text-shadow: 0 0 20px rgba(218, 31, 21, 0.8);
}

/* ========================================
   TEXT FORMATTING
   ======================================== */

.software-description strong,
.play-game-content strong {
    font-weight: 700;
    color: var(--white) !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.software-description em,
.play-game-content em {
    font-style: italic;
    color: var(--text-muted) !important;
}

.software-description code,
.play-game-content code {
    font-family: 'Consolas', 'Monaco', monospace;
    background: rgba(0, 0, 0, 0.4);
    color: var(--accent-red) !important;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 15px;
    border: 1px solid var(--border-glow);
    font-weight: 500;
}

/* ========================================
   TABLES - DARK PREMIUM
   ======================================== */

.software-description table,
.play-game-content table,
#single-game-table {
    width: 100%;
    margin: 40px 0;
    border-collapse: separate;
    border-spacing: 0;
    background: linear-gradient(135deg, rgba(26, 13, 92, 0.6) 0%, rgba(11, 0, 75, 0.8) 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.software-description table th,
.play-game-content table th {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--red-hover) 100%);
    color: var(--white) !important;
    font-weight: 700;
    font-size: 13px;
    padding: 18px 24px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.software-description table td,
.play-game-content table td,
#single-game-table td {
    padding: 18px 24px;
    color: var(--text-bright) !important;
    font-size: 16px;
    border-bottom: 1px solid rgba(218, 31, 21, 0.2);
    transition: var(--transition);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.software-description table tr:last-child td,
.play-game-content table tr:last-child td,
#single-game-table tr:last-child td {
    border-bottom: none;
}

.software-description table tbody tr:hover td,
.play-game-content table tbody tr:hover td,
#single-game-table tbody tr:hover td {
    background: rgba(218, 31, 21, 0.2);
}

#single-game-table tr td:first-child {
    font-weight: 700;
    color: var(--accent-red) !important;
}

/* ========================================
   BLOCKQUOTES - DARK STYLE
   ======================================== */

.software-description blockquote,
.play-game-content blockquote {
    margin: 40px 0;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(218, 31, 21, 0.15) 0%, rgba(26, 13, 92, 0.4) 100%);
    border-left: 5px solid var(--accent-red);
    border-radius: 0 12px 12px 0;
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-bright) !important;
    box-shadow: var(--shadow-dark);
    position: relative;
}

.software-description blockquote::before,
.play-game-content blockquote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 16px;
    font-size: 48px;
    color: var(--accent-red);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

/* ========================================
   HORIZONTAL RULES
   ======================================== */

.software-description hr,
.play-game-content hr {
    margin: 60px 0;
    height: 2px;
    border: none;
    background: linear-gradient(90deg, transparent 0%, var(--accent-red) 50%, transparent 100%);
    box-shadow: 0 0 20px rgba(218, 31, 21, 0.6);
}

/* ========================================
   GAME CARDS - ULTRA PREMIUM
   ======================================== */

.game-content {
    margin-bottom: 32px;
    transition: var(--transition);
}

.game-content .content {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    border: 2px solid var(--border-glow);
    background: linear-gradient(135deg, rgba(26, 13, 92, 0.6) 0%, rgba(11, 0, 75, 0.8) 100%);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.game-content .content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(218, 31, 21, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.game-content .content:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(218, 31, 21, 0.6);
    border-color: var(--accent-red);
}

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

.game-content .content-image {
    width: 100%;
    display: block;
    aspect-ratio: 1;
    object-fit: cover;
    transition: var(--transition);
}

.game-content .content:hover .content-image {
    transform: scale(1.08);
}

.game-content .content-details {
    padding: 20px;
    background: rgba(11, 0, 75, 0.6);
}

.gameh5Span {
    color: var(--white) !important;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    display: block;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

.gamePlayNowButton {
    display: inline-block;
    width: 100%;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--red-hover) 100%);
    color: var(--white) !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 6px 24px rgba(218, 31, 21, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.gamePlayNowButton:hover {
    background: linear-gradient(135deg, var(--red-hover) 0%, var(--accent-red) 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(218, 31, 21, 0.8);
}

.gamePlayNowButton:active {
    transform: translateY(0) scale(0.98);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .free-slots-intro {
        padding: 40px 28px;
        margin: 40px 16px 60px;
    }

    .software-description,
    .play-game-content {
        padding: 40px 20px;
    }

    .software-description h1,
    .play-game-content h1 {
        font-size: 32px;
    }

    .software-description h2,
    .play-game-content h2 {
        font-size: 26px;
    }
}

/* ========================================
   SELECTION STYLING
   ======================================== */

::selection {
    background: var(--accent-red);
    color: var(--white);
}

::-moz-selection {
    background: var(--accent-red);
    color: var(--white);
}

/* ALL TEXT WHITE - FORCE */
.software-description *,
.play-game-content *,
.game-detail-content *,
.free-slots-intro * {
    color: inherit !important;
}
