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

:root {
    /* Primary Colors */
    --primary-purple: #8b5cf6;
    --primary-blue: #3b82f6;
    --primary-cyan: #06b6d4;
    --primary-pink: #ec4899;
    --primary-red: #ef4444;
    --primary-orange: #f97316;
    --primary-yellow: #fbbf24;
    --primary-green: #10b981;
    
    /* Dark Colors */
    --dark-bg: #0f172a;
    --dark-card: #1e293b;
    --dark-card-hover: #334155;
    --dark-text: #e2e8f0;
    
    /* Light Colors */
    --light-bg: #f8fafc;
    --light-text: #475569;
    
    /* Gradients */
    --gradient-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-blue: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --gradient-fire: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-ocean: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    --gradient-sunset: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    --gradient-royal: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    --gradient-neon: linear-gradient(135deg, #f857a6 0%, #ff5858 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.2);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--dark-bg);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

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

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

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-purple);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-royal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo i {
    font-size: 2rem;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rotate 3s linear infinite;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--dark-text);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-normal);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-fire);
    transition: var(--transition-normal);
}

.nav-menu a:hover {
    color: #fff;
}

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

.mobile-menu-btn {
    display: none;
    background: var(--gradient-purple);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2rem;
    font-weight: 400;
    animation: fadeInUp 1s ease;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 3rem;
    animation: fadeInUp 1.2s ease;
}

.feature-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid rgba(255,255,255,0.2);
    transition: var(--transition-normal);
}

.feature-badge:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.feature-badge span {
    font-weight: 600;
    color: white;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-fire);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
    animation: fadeInUp 1.4s ease;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

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

/* ========================================
   SECTION STYLES
   ======================================== */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-royal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title i {
    font-size: 2.5rem;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    text-align: center;
    font-size: 1.15rem;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* ========================================
   TOP CASINOS SECTION
   ======================================== */
.top-casinos {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1e1b4b 100%);
}

.casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.casino-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-purple);
}

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

.casino-card.rank-1::before {
    background: var(--gradient-fire);
}

.casino-card.rank-2::before {
    background: var(--gradient-blue);
}

.casino-card.rank-3::before {
    background: var(--gradient-sunset);
}

.casino-rank {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.rank-number {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.casino-rank i {
    font-size: 1.5rem;
    color: var(--primary-yellow);
}

.casino-header {
    margin-bottom: 1.5rem;
}

.casino-name {
    font-size: 1.75rem;
    color: white;
    margin-bottom: 0.5rem;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.casino-rating i {
    color: var(--primary-yellow);
    font-size: 1rem;
}

.casino-rating span {
    margin-left: 0.5rem;
    font-weight: 600;
    color: var(--primary-yellow);
}

.casino-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--light-text);
}

.info-item i {
    color: var(--primary-cyan);
    font-size: 1.1rem;
}

.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(139, 92, 246, 0.2);
    color: var(--primary-purple);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--primary-purple);
}

.casino-button {
    display: block;
    text-align: center;
    background: var(--gradient-fire);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.casino-button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   ABOUT SLOTS SECTION
   ======================================== */
.about-slots {
    background: var(--dark-bg);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.about-text h3 {
    font-size: 1.75rem;
    color: white;
    margin: 2.5rem 0 1.5rem;
    background: var(--gradient-royal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.about-text ul li {
    padding: 0.75rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--light-text);
    line-height: 1.8;
}

.about-text ul li i {
    position: absolute;
    left: 0;
    top: 1rem;
    color: var(--primary-green);
    font-size: 1.2rem;
}

.about-text strong {
    color: white;
    font-weight: 600;
}

/* ========================================
   SLOTS CATALOG SECTION
   ======================================== */
.slots-catalog {
    background: linear-gradient(180deg, #1e1b4b 0%, var(--dark-bg) 100%);
}

.slots-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: var(--dark-card);
    color: var(--dark-text);
    border: 2px solid var(--primary-purple);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    background: var(--gradient-purple);
    color: white;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gradient-fire);
    color: white;
    border-color: transparent;
}

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

.slot-card {
    background: var(--dark-card);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

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

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

.slot-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.slot-badge.hot {
    background: var(--gradient-fire);
    color: white;
}

.slot-badge.new {
    background: var(--gradient-blue);
    color: white;
}

.slot-badge.jackpot {
    background: var(--gradient-sunset);
    color: white;
    animation: pulse 2s infinite;
}

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

.slot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: var(--transition-normal);
}

.slot-card:hover .slot-overlay {
    opacity: 1;
}

.play-btn, .demo-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition-fast);
}

.play-btn {
    background: var(--gradient-fire);
    color: white;
}

.play-btn:hover {
    transform: scale(1.1);
}

.demo-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

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

.slot-info {
    padding: 1.5rem;
}

.slot-info h4 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.5rem;
}

.provider {
    color: var(--primary-cyan);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.slot-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.slot-stats span {
    font-size: 0.85rem;
    color: var(--light-text);
    font-weight: 600;
}

.rtp {
    color: var(--primary-green);
}

.volatility {
    color: var(--primary-orange);
}

.jackpot-amount {
    color: var(--primary-yellow);
}

/* ========================================
   HOW SLOTS WORK SECTION
   ======================================== */
.how-slots-work {
    background: var(--dark-bg);
}

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

.work-item {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border-top: 4px solid var(--primary-purple);
}

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

.work-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.work-icon i {
    font-size: 2rem;
    color: white;
}

.work-item h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.work-item p {
    color: var(--light-text);
    line-height: 1.8;
}

.work-item strong {
    color: white;
}

/* ========================================
   PROVIDERS SECTION
   ======================================== */
.providers {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1e1b4b 100%);
}

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

.provider-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.provider-card:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.provider-logo {
    background: var(--gradient-royal);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.provider-logo h3 {
    font-size: 1.75rem;
    color: white;
}

.provider-card p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.provider-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.provider-stats span {
    background: rgba(139, 92, 246, 0.2);
    color: var(--primary-purple);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.provider-stats i {
    color: var(--primary-cyan);
}

/* ========================================
   BONUSES SECTION
   ======================================== */
.bonuses {
    background: var(--dark-bg);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

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

.bonus-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.bonus-icon.welcome {
    background: var(--gradient-fire);
}

.bonus-icon.freespins {
    background: var(--gradient-blue);
}

.bonus-icon.nodeposit {
    background: var(--gradient-sunset);
}

.bonus-icon.reload {
    background: var(--gradient-purple);
}

.bonus-icon.cashback {
    background: var(--gradient-neon);
}

.bonus-icon.vip {
    background: var(--gradient-royal);
}

.bonus-icon i {
    font-size: 2.5rem;
    color: white;
}

.bonus-card h3 {
    font-size: 1.5rem;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.bonus-card p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.bonus-example {
    background: rgba(139, 92, 246, 0.2);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-purple);
}

.bonus-example strong {
    color: var(--primary-purple);
}

.bonus-features {
    list-style: none;
}

.bonus-features li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--light-text);
}

.bonus-features li i {
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--primary-green);
}

/* ========================================
   COMPARISON TABLE SECTION
   ======================================== */
.comparison, .slots-comparison, .payment-methods {
    background: linear-gradient(180deg, #1e1b4b 0%, var(--dark-bg) 100%);
}

.table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark-card);
}

.comparison-table thead {
    background: var(--gradient-purple);
}

.comparison-table th {
    padding: 1.25rem;
    text-align: left;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}

.comparison-table td {
    padding: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--light-text);
}

.comparison-table tbody tr {
    transition: var(--transition-fast);
}

.comparison-table tbody tr:hover {
    background: var(--dark-card-hover);
}

.highlight-row {
    background: rgba(139, 92, 246, 0.1);
}

.casino-name-cell {
    font-weight: 600;
    color: white;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
    font-weight: 700;
}

.badge.best {
    background: var(--gradient-fire);
    color: white;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating-stars i {
    color: var(--primary-yellow);
}

.rating-stars span {
    margin-left: 0.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
}

.type-name {
    font-weight: 700;
    color: white;
}

.payment-name {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: white;
}

.payment-name i {
    font-size: 1.5rem;
    color: var(--primary-cyan);
}

.table-note {
    background: rgba(59, 130, 246, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-blue);
}

.table-note i {
    color: var(--primary-blue);
    margin-right: 0.5rem;
}

.table-note p {
    color: var(--light-text);
    margin: 0;
}

.table-note strong {
    color: white;
}

/* ========================================
   STRATEGIES SECTION
   ======================================== */
.strategies, .tips {
    background: var(--dark-bg);
}

.strategies-grid, .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.strategy-card, .tip-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border-left: 5px solid var(--primary-purple);
}

.strategy-card:hover, .tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.strategy-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-fire);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
}

.strategy-card h3, .tip-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.strategy-card p, .tip-card p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.strategy-tip {
    background: rgba(251, 191, 36, 0.1);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-left: 4px solid var(--primary-yellow);
}

.strategy-tip i {
    color: var(--primary-yellow);
    font-size: 1.25rem;
}

.strategy-tip span {
    color: var(--primary-yellow);
    font-weight: 600;
}

.tip-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tip-icon i {
    font-size: 2rem;
    color: white;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    background: linear-gradient(180deg, #1e1b4b 0%, var(--dark-bg) 100%);
}

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

.faq-item {
    background: var(--dark-card);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
    background: var(--dark-card);
}

.faq-question:hover {
    background: var(--dark-card-hover);
}

.faq-question h3 {
    font-size: 1.25rem;
    color: white;
    margin: 0;
    padding-right: 2rem;
}

.faq-question i {
    color: var(--primary-purple);
    font-size: 1.25rem;
    transition: var(--transition-normal);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(139, 92, 246, 0.05);
}

.faq-item.active .faq-answer {
    max-height: 3000px;
}

.faq-answer p, .faq-answer ul {
    padding: 0 1.75rem 1.75rem;
    color: var(--light-text);
    line-height: 1.9;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ul {
    list-style: none;
    margin-bottom: 1rem;
}

.faq-answer ul li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.faq-answer ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-weight: 700;
}

.faq-answer strong {
    color: white;
    font-weight: 600;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--primary-purple);
}

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

.footer-section h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    background: var(--gradient-royal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-section p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--light-text);
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--primary-purple);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    transition: var(--transition-normal);
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--light-text);
}

.footer-bottom p {
    margin-bottom: 0.75rem;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .casinos-grid {
        grid-template-columns: 1fr;
    }
    
    .slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .work-grid,
    .providers-grid,
    .bonuses-grid,
    .strategies-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        flex-direction: column;
    }
    
    .slots-grid {
        grid-template-columns: 1fr;
    }
    
    .slots-filter {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }