/* ============================================
   SBOBETNAGA8888 - Modern News Magazine Style
   ============================================ */

:root {
    /* Primary Colors */
    --primary-dark: #1a1f36;
    --primary-darker: #0f1221;
    --primary-gold: #ffd700;
    --primary-gold-dark: #b8860b;
    --primary-red: #dc3545;
    --primary-red-dark: #a71d2a;
    --primary-blue: #2563eb;
    --primary-green: #10b981;

    /* Text Colors */
    --text-white: #ffffff;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    --text-dark: #1e293b;

    /* Background Colors */
    --bg-dark: #0f1221;
    --bg-card: #1e2642;
    --bg-card-hover: #252d4a;
    --bg-overlay: rgba(15, 18, 33, 0.9);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
    --gradient-dark: linear-gradient(180deg, #1a1f36 0%, #0f1221 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26, 31, 54, 0.95) 0%, rgba(15, 18, 33, 0.98) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Spacing */
    --container-max: 1400px;
    --section-padding: 80px;
    --card-radius: 12px;
}

/* Light Mode Variables */
[data-theme="light"] {
    --primary-dark: #f8fafc;
    --primary-darker: #ffffff;
    --bg-dark: #f1f5f9;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafc;
    --text-white: #1e293b;
    --text-light: #334155;
    --text-muted: #64748b;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
    background: var(--primary-darker);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-contacts {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-contacts a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.top-bar-contacts a:hover {
    color: var(--primary-gold);
}

.top-bar-contacts i {
    color: var(--primary-gold);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle {
    background: transparent;
    color: var(--text-muted);
    font-size: 1.1rem;
    padding: 5px;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.theme-toggle:hover {
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--primary-dark);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.header.scrolled {
    background: rgba(26, 31, 54, 0.98);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-dark);
}

.logo-text span {
    color: var(--primary-gold);
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav a {
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
    border-radius: 8px;
    position: relative;
    transition: var(--transition-fast);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-fast);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 30px;
}

/* Navigation Dropdown */
.nav-item {
    position: relative;
}

.nav-item > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item > a i {
    font-size: 0.7rem;
    transition: var(--transition-fast);
}

.nav-item:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-card);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
    z-index: 1001;
    padding: 8px 0;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: 0;
    transition: var(--transition-fast);
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
    padding-left: 25px;
}

.dropdown-menu a i {
    margin-right: 8px;
    width: 16px;
    color: var(--primary-gold);
}

/* Nested Dropdown / Submenu */
.dropdown-menu .has-submenu {
    position: relative;
    display: block;
}

.dropdown-menu .has-submenu > a {
    display: block;
    padding-right: 30px !important;
    position: relative;
}

.dropdown-menu .has-submenu > a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.5rem;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
}

.dropdown-menu .submenu {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 200px;
    background: var(--primary-dark);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.dropdown-menu .has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-menu .submenu a {
    padding: 8px 15px;
    font-size: 0.85rem;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-login {
    background: var(--primary-red);
    color: var(--text-white);
}

.btn-login:hover {
    background: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.btn-register {
    background: var(--gradient-gold);
    color: var(--primary-dark);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a1628 0%, #1a1f36 50%, #0f1221 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ffd700" opacity="0.05"/></svg>');
    background-size: 50px 50px;
    animation: moveBackground 30s linear infinite;
    z-index: 1;
}

@keyframes moveBackground {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

/* Hero Container - Two Column Layout */
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid var(--primary-gold);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

/* Hero Image - Right Side */
.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 500px;
}

.hero-image img {
    width: 100%;
    max-width: 650px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

/* Hero Visual - Background Glow Effect */
.hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    height: 120%;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center right, rgba(255, 215, 0, 0.15) 0%, transparent 60%);
    animation: glow 4s ease-in-out infinite;
}

.hero-visual::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    animation: glow 5s ease-in-out infinite reverse;
}

@keyframes glow {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.05); opacity: 0.6; }
}

/* ============================================
   KEYWORDS CAROUSEL
   ============================================ */

.keywords-section {
    padding: 60px 0;
    background: var(--primary-darker);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--primary-gold);
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* 3D Carousel Container */
.carousel-container {
    position: relative;
    height: 250px;
    perspective: 1000px;
    margin: 40px auto;
    max-width: 100%;
    overflow: visible;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: carouselRotate 30s linear infinite;
}

@keyframes carouselRotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(-360deg); }
}

.carousel-track:hover {
    animation-play-state: paused;
}

.keyword-card {
    position: absolute;
    width: 200px;
    height: 120px;
    left: calc(50% - 100px);
    top: calc(50% - 60px);
    background: var(--bg-card);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--card-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    backface-visibility: hidden;
}

.keyword-card:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
    transform: scale(1.1) !important;
}

.keyword-card i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.keyword-card span {
    font-weight: 600;
    color: var(--text-white);
    text-align: center;
    font-size: 0.9rem;
}

/* Alternative Wave Carousel */
.wave-carousel {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.wave-carousel::-webkit-scrollbar {
    display: none;
}

.wave-keyword {
    flex: 0 0 auto;
    scroll-snap-align: center;
    padding: 20px 30px;
    background: var(--bg-card);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--card-radius);
    cursor: pointer;
    transition: var(--transition-normal);
    animation: wave 3s ease-in-out infinite;
}

.wave-keyword:nth-child(2n) { animation-delay: 0.2s; }
.wave-keyword:nth-child(3n) { animation-delay: 0.4s; }
.wave-keyword:nth-child(4n) { animation-delay: 0.6s; }

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

.wave-keyword:hover {
    border-color: var(--primary-gold);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-gold);
    transform: translateY(-10px) scale(1.05);
}

.wave-keyword i {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
    display: block;
    text-align: center;
}

.wave-keyword span {
    font-weight: 600;
    color: var(--text-white);
    white-space: nowrap;
}

/* ============================================
   POPUP MODAL
   ============================================ */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    background: var(--bg-card);
    border-radius: var(--card-radius);
    max-width: 800px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    z-index: 10;
    transition: var(--transition-fast);
}

.popup-close:hover {
    background: var(--primary-red-dark);
    transform: rotate(90deg);
}

.popup-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.popup-header h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.popup-header .meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.popup-body {
    padding: 30px;
    line-height: 1.8;
}

.popup-body h4 {
    color: var(--primary-gold);
    margin: 20px 0 10px;
}

.popup-body p {
    margin-bottom: 15px;
}

.popup-body ul {
    margin: 15px 0 15px 20px;
    list-style: disc;
}

.popup-body li {
    margin-bottom: 8px;
}

/* ============================================
   FEATURES / ADVANTAGES SECTION
   ============================================ */

.features-section {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: var(--card-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-dark);
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */

.categories-section {
    padding: var(--section-padding) 0;
    background: var(--primary-darker);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.category-card {
    position: relative;
    height: 280px;
    border-radius: var(--card-radius);
    overflow: hidden;
    background: var(--bg-card);
    transition: var(--transition-normal);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(15, 18, 33, 0.95) 0%, rgba(15, 18, 33, 0.3) 100%);
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-card:hover::before {
    background: linear-gradient(to top, rgba(15, 18, 33, 0.98) 0%, rgba(15, 18, 33, 0.5) 100%);
}

.category-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 2;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.category-content h3 {
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 8px;
}

.category-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.category-link:hover {
    gap: 12px;
}

/* ============================================
   LATEST NEWS SECTION
   ============================================ */

.news-section {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.news-card {
    background: var(--bg-card);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: var(--transition-normal);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    background: var(--primary-gold);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.news-body {
    padding: 20px;
}

.news-meta {
    display: flex;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.news-meta i {
    color: var(--primary-gold);
    margin-right: 5px;
}

.news-card h3 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: var(--transition-fast);
}

.news-card:hover h3 {
    color: var(--primary-gold);
}

.news-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.news-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 15px;
}

.news-card .read-more:hover {
    gap: 10px;
}

/* ============================================
   PROVIDERS SECTION
   ============================================ */

.providers-section {
    padding: 50px 0;
    background: var(--primary-darker);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.providers-title {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.providers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.provider-logo {
    opacity: 0.5;
    transition: var(--transition-fast);
    filter: grayscale(100%);
}

.provider-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.provider-logo i {
    font-size: 2.5rem;
    color: var(--text-muted);
}

.provider-logo:hover i {
    color: var(--primary-gold);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

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

.faq-item {
    background: var(--bg-card);
    border-radius: var(--card-radius);
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.faq-item:hover,
.faq-item.active {
    border-color: rgba(255, 215, 0, 0.3);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: transparent;
    width: 100%;
    text-align: left;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
}

.faq-question i {
    color: var(--primary-gold);
    transition: var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

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

/* ============================================
   SEO CONTENT SECTION
   ============================================ */

.seo-section {
    padding: 60px 0;
    background: var(--primary-darker);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 25px;
    text-align: center;
}

.seo-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 35px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.seo-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.seo-content ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.seo-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.seo-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.seo-content a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.seo-content a:hover {
    color: var(--text-white);
    text-decoration: underline;
}

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

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--primary-dark);
    padding: 60px 0 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

.footer-title {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary-gold);
    margin-top: 3px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

/* Disclaimer */
.disclaimer {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    margin-top: 20px;
    border-radius: var(--card-radius);
}

.disclaimer p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.6;
    text-align: center;
}

/* ============================================
   PAGE HEADERS
   ============================================ */

.page-header {
    background: var(--gradient-hero);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ffd700" opacity="0.05"/></svg>');
    background-size: 30px 30px;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-white);
    margin-bottom: 15px;
    position: relative;
}

.page-header h1 span {
    color: var(--primary-gold);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
}

.breadcrumb a {
    color: var(--primary-gold);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ============================================
   CONTENT PAGES
   ============================================ */

.content-section {
    padding: var(--section-padding) 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.main-content {
    background: var(--bg-card);
    border-radius: var(--card-radius);
    padding: 40px;
}

.main-content h2 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

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

.main-content h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin: 25px 0 12px;
}

.main-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.main-content ul,
.main-content ol {
    margin: 15px 0 20px 25px;
}

.main-content ul {
    list-style: disc;
}

.main-content ol {
    list-style: decimal;
}

.main-content li {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: var(--bg-card);
    border-radius: var(--card-radius);
    padding: 25px;
}

.sidebar-widget h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-gold);
}

.sidebar-cta {
    background: var(--gradient-gold);
    text-align: center;
}

.sidebar-cta h4 {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.sidebar-cta p {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.sidebar-cta .btn {
    background: var(--primary-dark);
    color: var(--primary-gold);
    width: 100%;
}

.sidebar-links li {
    margin-bottom: 10px;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    padding: 10px;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.sidebar-links a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
}

.sidebar-links i {
    color: var(--primary-gold);
}

/* ============================================
   BLOG / NEWS PAGE
   ============================================ */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--bg-card);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card .news-image {
    height: 220px;
}

.blog-card .news-body {
    padding: 25px;
}

.blog-card h3 {
    font-size: 1.2rem;
}

/* Blog Single */
.blog-single .main-content {
    padding: 50px;
}

.blog-single .article-header {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.blog-single .article-header h1 {
    font-size: 2rem;
    color: var(--text-white);
    line-height: 1.3;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-muted);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-meta i {
    color: var(--primary-gold);
}

.author-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: var(--card-radius);
    margin: 30px 0;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.author-info h5 {
    color: var(--text-white);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a,
.pagination span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 8px;
    color: var(--text-muted);
    font-weight: 600;
    transition: var(--transition-fast);
}

.pagination a:hover,
.pagination span.active {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

/* ============================================
   ABOUT US PAGE
   ============================================ */

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-image {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--primary-gold);
    border-radius: var(--card-radius);
    z-index: -1;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.about-text h2 span {
    color: var(--primary-gold);
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.license-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--primary-gold);
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.license-badge i {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.license-badge span {
    color: var(--text-white);
    font-weight: 600;
}

/* Stats */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 60px 0;
}

.stat-card {
    background: var(--bg-card);
    border-radius: var(--card-radius);
    padding: 30px;
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.stat-card:hover {
    border-color: var(--primary-gold);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.team-card {
    background: var(--bg-card);
    border-radius: var(--card-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
}

.team-card h4 {
    color: var(--text-white);
    margin-bottom: 5px;
}

.team-card p {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

/* ============================================
   GAMES PAGES (Sportsbook, Slot, Casino)
   ============================================ */

.games-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.games-intro p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.game-card {
    background: var(--bg-card);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.game-image {
    height: 180px;
    background: linear-gradient(135deg, var(--bg-card-hover) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-gold);
    opacity: 0.8;
}

.game-body {
    padding: 20px;
}

.game-body h3 {
    color: var(--text-white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.game-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.game-btn {
    display: block;
    text-align: center;
    padding: 12px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.game-btn:hover {
    box-shadow: var(--shadow-gold);
}

/* Providers List */
.providers-list {
    margin-top: 60px;
}

.providers-list h3 {
    text-align: center;
    color: var(--text-white);
    margin-bottom: 30px;
}

.provider-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.provider-card {
    background: var(--bg-card);
    padding: 20px 30px;
    border-radius: var(--card-radius);
    color: var(--text-muted);
    font-weight: 600;
    transition: var(--transition-fast);
}

.provider-card:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

/* ============================================
   ANIMATIONS (AOS-like)
   ============================================ */

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-down"] {
    transform: translateY(-40px);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

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

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-widget {
        flex: 1 1 300px;
    }
}

@media (max-width: 992px) {
    .header .container {
        flex-wrap: wrap;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 15px 20px;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-buttons {
        display: none;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        order: 1;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: 2;
        min-height: 350px;
    }

    .hero-image img {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px;
    }

    .top-bar .container {
        justify-content: center;
    }

    .top-bar-right {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 60px 0 40px;
    }

    .hero .container {
        gap: 30px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .hero p {
        font-size: 1rem;
        margin: 0 auto 25px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        min-height: 280px;
    }

    .hero-image img {
        max-width: 100%;
    }

    .hero-visual {
        width: 100%;
        opacity: 0.2;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

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

    .main-content {
        padding: 25px;
    }

    .blog-single .main-content {
        padding: 25px;
    }

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

@media (max-width: 576px) {
    .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .btn-large {
        padding: 14px 28px;
    }

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

    .stats-section {
        grid-template-columns: 1fr;
    }

    .carousel-container {
        height: 200px;
    }

    .keyword-card {
        width: 150px;
        height: 100px;
    }

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

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-gold { color: var(--primary-gold); }
.text-white { color: var(--text-white); }
.text-muted { color: var(--text-muted); }

.bg-dark { background: var(--bg-dark); }
.bg-darker { background: var(--primary-darker); }
.bg-card { background: var(--bg-card); }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.py-1 { padding-top: 10px; padding-bottom: 10px; }
.py-2 { padding-top: 20px; padding-bottom: 20px; }
.py-3 { padding-top: 30px; padding-bottom: 30px; }

.hidden { display: none !important; }
.visible { display: block !important; }

/* Schema.org hidden content */
.schema-data {
    display: none;
}
