/* ========================================
   CASINO BONUS WEBSITE - CSS STYLES
   Яскравий дизайн з градієнтами та анімаціями
   ======================================== */

/* === ОСНОВНІ СТИЛІ === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Основна колірна схема */
    --primary-color: #ff6b00;
    --secondary-color: #00d4ff;
    --accent-color: #ffde00;
    --purple-color: #a855f7;
    --green-color: #10b981;
    --red-color: #ef4444;
    --pink-color: #ec4899;
    
    /* Градієнти */
    --gradient-primary: linear-gradient(135deg, #ff6b00 0%, #ff0099 100%);
    --gradient-secondary: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
    --gradient-purple: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
    --gradient-green: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 50%, #dc2626 100%);
    
    /* Темні кольори */
    --dark-bg: #0f172a;
    --dark-card: #1e293b;
    --dark-hover: #334155;
    
    /* Текст */
    --text-light: #ffffff;
    --text-gray: #94a3b8;
    --text-dark: #1e293b;
    
    /* Тіні */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(255, 107, 0, 0.5);
    
    /* Шрифти */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-secondary);
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* === HEADER & NAVIGATION === */
.header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    border-bottom: 2px solid rgba(255, 107, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.logo i {
    color: var(--accent-color);
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.logo strong {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    opacity: 0.9;
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    right: -250px;
    animation: float 6s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    animation: float 8s ease-in-out infinite reverse;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--font-primary);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.hero-subtitle strong {
    color: var(--accent-color);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-badge i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* === STATS SECTION === */
.stats-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--dark-card);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.stat-card i {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-primary);
    color: var(--accent-color);
    margin-bottom: 10px;
}

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

/* === SECTION STYLES === */
.section {
    padding: 100px 0;
}

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

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: var(--font-primary);
    margin-bottom: 15px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* === BONUS TYPES SECTION === */
.bonus-types {
    background: rgba(255, 255, 255, 0.02);
}

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

.bonus-type-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.bonus-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.bonus-type-card:hover::before {
    transform: scaleX(1);
}

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

.bonus-type-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 0, 153, 0.1) 100%);
}

.best-choice-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.bonus-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.bonus-icon-green {
    background: var(--gradient-green);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.bonus-icon-gold {
    background: var(--gradient-gold);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

.bonus-icon-blue {
    background: var(--gradient-secondary);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
}

.bonus-icon-purple {
    background: var(--gradient-purple);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
}

.bonus-icon-red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

.bonus-icon-orange {
    background: var(--gradient-primary);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

.bonus-icon-teal {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.4);
}

.bonus-icon-pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
}

.bonus-type-title {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: 15px;
    color: var(--text-light);
}

.bonus-type-description {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.highlight-text {
    color: var(--accent-color);
    font-weight: 700;
}

.bonus-features {
    list-style: none;
    margin-bottom: 25px;
}

.bonus-features li {
    padding: 10px 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.bonus-features i {
    color: var(--green-color);
    font-size: 0.9rem;
}

.bonus-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bonus-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.5);
}

/* === TOP CASINOS SECTION === */
.filter-tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 12px 28px;
    background: var(--dark-card);
    border: 2px solid transparent;
    color: var(--text-light);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-tab:hover {
    border-color: var(--primary-color);
}

.filter-tab.active {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-glow);
}

.casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.casino-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

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

.casino-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 0, 153, 0.1) 100%);
}

.casino-rank {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.casino-rank.best-choice {
    width: auto;
    height: auto;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
}

.casino-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.casino-logo {
    font-size: 4rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.casino-name {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: 8px;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-color);
}

.casino-rating span {
    margin-left: 8px;
    font-weight: 700;
    font-size: 1.1rem;
}

.casino-bonus-highlight {
    background: var(--gradient-primary);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 20px;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-primary);
    margin-bottom: 5px;
}

.bonus-label {
    font-size: 1rem;
    opacity: 0.9;
}

.casino-features {
    list-style: none;
    margin-bottom: 20px;
}

.casino-features li {
    padding: 10px 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.casino-features i {
    color: var(--green-color);
}

.casino-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.detail-item i {
    color: var(--primary-color);
}

.casino-cta-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: white;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.casino-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
}

.load-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

.btn-load-more {
    padding: 14px 35px;
    background: var(--dark-card);
    border: 2px solid var(--primary-color);
    color: var(--text-light);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-load-more:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

/* === HOW TO GET SECTION === */
.steps-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 80px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(180deg, var(--primary-color) 0%, transparent 100%);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.step-content {
    flex: 1;
    background: var(--dark-card);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.step-title {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: 15px;
    color: var(--text-light);
}

.step-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.step-tips {
    list-style: none;
    margin-top: 15px;
}

.step-tips li {
    padding: 8px 0;
    color: var(--text-gray);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.step-tips i {
    color: var(--accent-color);
    margin-top: 5px;
}

/* === COMPARISON TABLE === */
.table-responsive {
    overflow-x: auto;
    margin-bottom: 30px;
}

.comparison-table-grid {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark-card);
    border-radius: 15px;
    overflow: hidden;
}

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

.comparison-table-grid th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}

.comparison-table-grid td {
    padding: 20px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table-grid tbody tr {
    transition: all 0.3s ease;
}

.comparison-table-grid tbody tr:hover {
    background: rgba(255, 107, 0, 0.1);
}

.table-row-highlight {
    background: rgba(255, 107, 0, 0.05);
}

.table-row-best {
    background: rgba(255, 107, 0, 0.1);
    border-left: 4px solid var(--primary-color);
}

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

.cell-casino {
    display: flex;
    align-items: center;
    gap: 10px;
}

.casino-icon {
    font-size: 1.8rem;
}

.best-badge {
    background: var(--gradient-primary);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
}

.bonus-cell {
    font-weight: 700;
    color: var(--accent-color);
}

.small-text {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.highlight-cell {
    color: var(--green-color);
    font-weight: 600;
}

.license-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
}

.license-malta {
    background: var(--gradient-green);
}

.license-gibraltar {
    background: var(--gradient-secondary);
}

.rating-cell {
    font-weight: 700;
    color: var(--accent-color);
}

.table-legend {
    background: var(--dark-card);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.table-legend h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.legend-list {
    list-style: none;
}

.legend-list li {
    padding: 10px 0;
    color: var(--text-gray);
    line-height: 1.7;
}

/* === WAGERING INFO === */
.wagering-info {
    background: rgba(255, 255, 255, 0.02);
}

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

.wagering-explanation {
    background: var(--dark-card);
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-color);
}

.wagering-explanation h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.wagering-calculator-card {
    background: var(--gradient-primary);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-xl);
}

.wagering-calculator-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calculator-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-input {
    width: 100%;
    padding: 14px 20px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.form-input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.15);
}

.btn-calculate {
    width: 100%;
    padding: 16px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-calculate:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.calculator-result {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-size: 1.2rem;
    text-align: center;
}

.calculator-result strong {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.wagering-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.tip-card {
    background: var(--dark-card);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.tip-card i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.tip-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.tip-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.wagering-types {
    background: var(--dark-card);
    padding: 35px;
    border-radius: 15px;
}

.wagering-types h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--text-light);
}

.wagering-table {
    width: 100%;
    border-collapse: collapse;
}

.wagering-table thead {
    background: rgba(255, 107, 0, 0.1);
}

.wagering-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
}

.wagering-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
}

.badge-good {
    background: var(--gradient-green);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.badge-medium {
    background: var(--gradient-gold);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

/* === FAQ SECTION === */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-card);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 0, 0.05);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

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

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-answer ol, .faq-answer ul {
    margin-left: 20px;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-answer li {
    margin-bottom: 10px;
}

/* === TERMS GUIDE === */
.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.term-card {
    background: var(--dark-card);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.term-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent-color);
}

.term-definition {
    color: var(--text-gray);
    line-height: 1.7;
}

/* === TIPS SECTION === */
.tips-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.tips-column h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tips-column i {
    color: var(--primary-color);
}

.tips-list {
    list-style: none;
}

.tips-list li {
    padding: 12px 0;
    padding-left: 30px;
    color: var(--text-gray);
    position: relative;
    line-height: 1.7;
}

.tips-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-color);
    font-weight: 900;
    font-size: 1.2rem;
}

.warning-box {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 2px solid var(--red-color);
    padding: 35px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
}

.warning-box i {
    color: var(--red-color);
    font-size: 2.5rem;
}

.warning-box h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.warning-box p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* === CTA SECTION === */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-hero);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-primary);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-cta {
    padding: 20px 50px;
    font-size: 1.3rem;
    background: white;
    color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

/* === FOOTER === */
.footer {
    background: var(--dark-bg);
    padding: 60px 0 30px;
    border-top: 2px solid rgba(255, 107, 0, 0.2);
}

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

.footer-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: var(--dark-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-light);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer {
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid var(--primary-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    color: var(--text-gray);
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

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

.footer-copyright {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* === BACK TO TOP === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

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

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

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .casinos-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        width: 100%;
        padding: 30px;
        transition: left 0.3s ease;
        gap: 10px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .bonus-types-grid,
    .casinos-grid,
    .terms-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
    }
    
    .step-item::after {
        display: none;
    }
    
    .comparison-table-grid {
        font-size: 0.85rem;
    }
    
    .comparison-table-grid th,
    .comparison-table-grid td {
        padding: 12px 8px;
    }
    
    .tips-columns {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .casino-bonus-highlight .bonus-amount {
        font-size: 1.5rem;
    }
}