/* =============================================
   Coolzino Casino Review - Premium Style Sheet
   Color Scheme: Purple/Orange Theme
   Enhanced with gradients, shadows, and effects
   ============================================= */

/* CSS Variables */
:root {
    /* Backgrounds */
    --bg-dark: #2D2540;
    --bg-main: #3C3254;
    --bg-card: #483D61;
    --bg-hover: #5E517A;
    --bg-light: #685B85;

    /* Accents */
    --accent-orange: #FF5C00;
    --accent-orange-hover: #FF7A2E;
    --accent-gold: #FFAF36;
    --accent-green: #069815;
    --accent-red: #FF4444;

    /* Text */
    --text-white: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-dim: rgba(255, 255, 255, 0.5);

    /* Borders */
    --border-color: rgba(255, 255, 255, 0.1);

    /* Gradients */
    --gradient-main: linear-gradient(135deg, #3C3254 0%, #2D2540 100%);
    --gradient-card: linear-gradient(145deg, #524468 0%, #3C3254 100%);
    --gradient-hero: linear-gradient(180deg, rgba(45, 37, 64, 0.9) 0%, rgba(60, 50, 84, 0.95) 100%);
    --gradient-orange: linear-gradient(135deg, #FF7A2E 0%, #FF5C00 100%);
    --gradient-gold: linear-gradient(135deg, #FFCF70 0%, #FFAF36 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.35);
    --shadow-glow-orange: 0 0 30px rgba(255, 92, 0, 0.4);
    --shadow-glow-gold: 0 0 20px rgba(255, 175, 54, 0.3);

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    --content-padding: 0 20px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-white);
    background-color: var(--bg-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-white);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-orange);
    border-radius: 3px;
}

h2 .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--gradient-orange);
    border-radius: 12px;
    box-shadow: var(--shadow-glow-orange);
    flex-shrink: 0;
}

h2 .icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

h3 {
    font-size: 1.5rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

h3 .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 175, 54, 0.15);
    border-radius: 8px;
    flex-shrink: 0;
}

h3 .icon svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-gold);
}

h4 {
    font-size: 1.25rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 18px;
    color: var(--text-muted);
}

strong, b {
    color: var(--text-white);
    font-weight: 600;
}

a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--accent-orange-hover);
    text-decoration: underline;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--content-padding);
}

/* Header */
.header {
    background: linear-gradient(180deg, rgba(45, 37, 64, 0.98) 0%, rgba(45, 37, 64, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    transition: transform var(--transition-normal);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: var(--text-muted);
    font-weight: 500;
    transition: all var(--transition-normal);
    position: relative;
}

.nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width var(--transition-normal);
}

.nav a:not(.btn):hover::after {
    width: 100%;
}

.nav a:hover {
    color: var(--text-white);
    text-decoration: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-orange);
    color: var(--text-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FF8C40 0%, #FF6A1A 100%);
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-orange);
}

.btn-secondary {
    background: var(--gradient-card);
    color: var(--text-white);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-hover);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.15rem;
    border-radius: 12px;
}

/* Decorative Section Dividers */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), var(--accent-orange), var(--border-color), transparent);
    margin: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                linear-gradient(90deg, rgba(45, 37, 64, 0.97) 0%, rgba(45, 37, 64, 0.9) 40%, rgba(45, 37, 64, 0.5) 70%, rgba(45, 37, 64, 0.3) 100%),
                url('../img/banner-1.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 92, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 175, 54, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 70%;
    position: relative;
    z-index: 1;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.hero-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-banners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 45px;
}

.hero-banners a {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    position: relative;
}

.hero-banners a::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.hero-banners a:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.hero-banners a:hover::after {
    opacity: 1;
}

.hero-banners img {
    width: 100%;
    height: auto;
    display: block;
}

/* Sections */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-alt {
    background: var(--gradient-main);
}

.section-dark {
    background-color: var(--bg-dark);
}

/* Decorative corner elements */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at top right, rgba(255, 92, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Content Styles */
.content {
    max-width: 100%;
}

.content p {
    margin-bottom: 18px;
}

.content ul, .content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.content li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.content li strong {
    color: var(--text-white);
}

/* Short Sentences Styling */
.short-sentence {
    color: var(--text-white);
    font-weight: 500;
}

/* Highlight Box */
.highlight-box {
    background: var(--gradient-card);
    border-left: 4px solid var(--accent-orange);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 16px 16px 0;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-orange);
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

/* Info Card */
.info-card {
    background: var(--gradient-card);
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-orange);
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 16px;
    background: var(--gradient-card);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

thead {
    background: linear-gradient(135deg, var(--bg-hover) 0%, var(--bg-card) 100%);
}

th {
    padding: 18px 24px;
    text-align: left;
    font-weight: 600;
    color: var(--text-white);
    border-bottom: 2px solid var(--accent-orange);
    position: relative;
}

th:first-child {
    border-radius: 16px 0 0 0;
}

th:last-child {
    border-radius: 0 16px 0 0;
}

td {
    padding: 16px 24px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

tr:last-child td {
    border-bottom: none;
}

tr:last-child td:first-child {
    border-radius: 0 0 0 16px;
}

tr:last-child td:last-child {
    border-radius: 0 0 16px 0;
}

tbody tr {
    transition: all var(--transition-fast);
}

tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

tbody tr:hover td {
    color: var(--text-white);
}

/* Striped rows */
tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

/* Pros/Cons Section - Enhanced */
.pros-cons-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.pros-card, .cons-card {
    background: var(--gradient-card);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.pros-card::before, .cons-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.pros-card::before {
    background: linear-gradient(90deg, var(--accent-green), #2ECC71);
}

.cons-card::before {
    background: linear-gradient(90deg, var(--accent-red), #FF6B6B);
}

.pros-card-header, .cons-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.pros-card-icon, .cons-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.pros-card-icon {
    background: rgba(6, 152, 21, 0.15);
    color: var(--accent-green);
    box-shadow: 0 0 20px rgba(6, 152, 21, 0.2);
}

.cons-card-icon {
    background: rgba(255, 68, 68, 0.15);
    color: var(--accent-red);
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.2);
}

.pros-card-title, .cons-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.pros-card-title {
    color: var(--accent-green);
}

.cons-card-title {
    color: var(--accent-red);
}

.pros-list, .cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li, .cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.pros-list li:last-child, .cons-list li:last-child {
    border-bottom: none;
}

.pros-list li:hover, .cons-list li:hover {
    color: var(--text-white);
    padding-left: 5px;
}

.pros-list li::before, .cons-list li::before {
    flex-shrink: 0;
    font-size: 1.1rem;
    margin-top: 2px;
}

.pros-list li::before {
    content: '✓';
    color: var(--accent-green);
    font-weight: bold;
}

.cons-list li::before {
    content: '✗';
    color: var(--accent-red);
    font-weight: bold;
}

/* Legacy Pros/Cons Table */
.pros-cons-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.pros-column, .cons-column {
    background: var(--gradient-card);
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow-md);
}

.pros-column {
    border-top: 4px solid var(--accent-green);
}

.cons-column {
    border-top: 4px solid var(--accent-red);
}

.pros-column h4, .cons-column h4 {
    margin-top: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pros-column h4::before {
    content: "+";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(6, 152, 21, 0.15);
    color: var(--accent-green);
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
}

.cons-column h4::before {
    content: "-";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 68, 68, 0.15);
    color: var(--accent-red);
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
}

.pros-column ul, .cons-column ul {
    list-style: none;
    padding: 0;
}

.pros-column li, .cons-column li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.pros-column li:last-child, .cons-column li:last-child {
    border-bottom: none;
}

.pros-column li:hover, .cons-column li:hover {
    padding-left: 8px;
    color: var(--text-white);
}

/* Game Cards Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.game-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--gradient-card);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--shadow-glow-orange);
    border-color: var(--accent-orange);
}

.game-card a {
    display: block;
}

.game-card img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.game-card:hover img {
    transform: scale(1.05);
}

.game-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-normal);
}

.game-card:hover .game-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.game-card-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    text-align: center;
}

/* Play button on hover */
.game-card::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    opacity: 0;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-glow-orange);
}

.game-card:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.95;
}

/* Provider Logos */
.providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    padding: 35px;
    background: var(--gradient-card);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.provider-logo {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: all var(--transition-normal);
    filter: brightness(0) invert(1);
}

.provider-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Payment Methods */
.payments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    padding: 35px;
    background: var(--gradient-card);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.payment-icon {
    height: 35px;
    width: auto;
    transition: all var(--transition-normal);
}

.payment-icon:hover {
    transform: scale(1.15);
}

/* FAQ Section - Accordion */
.faq-list {
    margin: 40px 0;
}

.faq-item {
    background: var(--gradient-card);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(255, 92, 0, 0.3);
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-md), 0 0 20px rgba(255, 92, 0, 0.1);
}

.faq-question {
    padding: 22px 60px 22px 25px;
    font-weight: 600;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all var(--transition-normal);
    position: relative;
    user-select: none;
}

.faq-question::before {
    content: '?';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 92, 0, 0.15);
    color: var(--accent-orange);
    border-radius: 8px;
    font-weight: bold;
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.faq-item.active .faq-question::before {
    background: var(--accent-orange);
    color: white;
}

.faq-question::after {
    content: '';
    position: absolute;
    right: 25px;
    top: 50%;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--accent-orange);
    border-bottom: 2px solid var(--accent-orange);
    transform: translateY(-70%) rotate(45deg);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-question::after {
    transform: translateY(-30%) rotate(-135deg);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px;
}

.faq-answer p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Rating Box */
.rating-box {
    background: var(--gradient-card);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    margin: 50px 0;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.rating-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 0 0 4px 4px;
}

.rating-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 175, 54, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.rating-score {
    font-size: 5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: none;
    position: relative;
}

.rating-label {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Stars Rating Display */
.stars-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.star {
    font-size: 2rem;
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(255, 175, 54, 0.5);
}

.star.empty {
    opacity: 0.3;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-dark) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 92, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section h2 {
    display: block;
    justify-content: center;
    text-align: center;
    border-bottom: none;
    margin-top: 0;
}

.cta-section h2::after {
    display: none;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 35px;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1F1933 100%);
    padding: 70px 0 30px;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 25px;
    transition: transform var(--transition-normal);
}

.footer-brand img:hover {
    transform: scale(1.05);
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.8;
}

.footer-links h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    margin-top: 0;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-dim);
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '›';
    color: var(--accent-orange);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-normal);
}

.footer-links a:hover {
    color: var(--accent-orange);
    text-decoration: none;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding: 30px;
    background: var(--gradient-card);
    border-radius: 16px;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.footer-payments img {
    height: 28px;
    width: auto;
    opacity: 0.6;
    transition: all var(--transition-normal);
}

.footer-payments img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.footer-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding: 30px;
    background: var(--gradient-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.footer-providers img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    transition: all var(--transition-normal);
}

.footer-providers img:hover {
    opacity: 0.9;
    transform: scale(1.1);
}

.footer-bottom {
    padding-top: 35px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: var(--text-dim);
    max-width: 800px;
    line-height: 1.7;
}

.age-badge {
    background: var(--gradient-orange);
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 1.1rem;
    box-shadow: var(--shadow-glow-orange);
    transition: all var(--transition-normal);
}

.age-badge:hover {
    transform: scale(1.05);
}

/* Checklist Style */
.checklist {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.checklist li {
    padding: 14px 0 14px 45px;
    position: relative;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.checklist li:last-child {
    border-bottom: none;
}

.checklist li:hover {
    color: var(--text-white);
    padding-left: 50px;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: rgba(6, 152, 21, 0.15);
    color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Numbered List Style */
.numbered-list {
    counter-reset: item;
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.numbered-list li {
    counter-increment: item;
    padding: 16px 0 16px 55px;
    position: relative;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.numbered-list li:last-child {
    border-bottom: none;
}

.numbered-list li:hover {
    color: var(--text-white);
    padding-left: 60px;
}

.numbered-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: var(--gradient-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
}

/* Categories List */
.categories-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 30px 0;
    list-style: none;
    padding: 0;
}

.categories-list li {
    background: var(--gradient-card);
    padding: 16px 22px;
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.categories-list li::before {
    content: '🎮';
    font-size: 1.1rem;
}

.categories-list li:nth-child(2)::before { content: '💎'; }
.categories-list li:nth-child(3)::before { content: '🃏'; }
.categories-list li:nth-child(4)::before { content: '🎰'; }
.categories-list li:nth-child(5)::before { content: '🎲'; }
.categories-list li:nth-child(6)::before { content: '🃏'; }
.categories-list li:nth-child(7)::before { content: '🎥'; }
.categories-list li:nth-child(8)::before { content: '🚀'; }
.categories-list li:nth-child(9)::before { content: '🏆'; }

.categories-list li:hover {
    background: var(--bg-hover);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-orange);
}

/* Horizontal Rule */
hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), var(--accent-orange), var(--border-color), transparent);
    margin: 50px 0;
}

/* Badge Styles */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-success {
    background: rgba(6, 152, 21, 0.15);
    color: var(--accent-green);
}

.badge-warning {
    background: rgba(255, 175, 54, 0.15);
    color: var(--accent-gold);
}

.badge-danger {
    background: rgba(255, 68, 68, 0.15);
    color: var(--accent-red);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.feature-card {
    background: var(--gradient-card);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-orange);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    h2 .icon {
        width: 40px;
        height: 40px;
    }

    h3 {
        font-size: 1.3rem;
    }

    .header {
        padding: 10px 0;
    }

    .header .container {
        flex-wrap: nowrap;
        gap: 15px;
    }

    .nav {
        gap: 15px;
        flex-wrap: nowrap;
    }

    .nav a:not(.btn) {
        display: none;
    }

    .nav .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero {
        background-position: center center;
        min-height: auto;
        padding: 60px 0 70px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-banners {
        grid-template-columns: 1fr;
    }

    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .pros-cons-wrapper,
    .pros-cons-table {
        grid-template-columns: 1fr;
    }

    .categories-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    table {
        font-size: 0.85rem;
    }

    th, td {
        padding: 14px 18px;
    }

    .rating-score {
        font-size: 4rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 50px 0;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 16px 35px;
    }

    .rating-score {
        font-size: 3.5rem;
    }

    .rating-box {
        padding: 35px 25px;
    }

    .categories-list {
        grid-template-columns: 1fr;
    }

    .providers-grid,
    .payments-grid {
        padding: 25px;
        gap: 20px;
    }

    .faq-question {
        padding: 18px 50px 18px 20px;
        font-size: 0.95rem;
    }
}

/* Print Styles */
@media print {
    .header, .footer, .btn, .game-card, .hero-banners {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .section, .section-alt {
        background: white;
    }

    h1, h2, h3, h4, p, li, td {
        color: black;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: var(--shadow-glow-orange);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 92, 0, 0.6);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-glow {
    animation: glow 2s infinite;
}
