/*
Theme Name: Baccarat Affiliate
Theme URI: https://baccarat-affiliate.com
Author: Your Name
Author URI: https://baccarat-affiliate.com
Description: Premium dark luxury theme for Baccarat affiliate website with elegant gold accents and modern design.
Version: 1.0.0
Text Domain: baccarat-affiliate
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

/* CSS Variables - Theme Colors */
:root {
    --primary-gold: #D4AF37;
    --secondary-navy: #0D1B2A;
    --accent-emerald: #1B998B;
    --text-light: #EAEAEA;
    --bg-dark: #121212;
    --bg-darker: #0A0F16;
    --bg-gradient: linear-gradient(135deg, #121212 0%, #0A0F16 100%);
    --shadow-large: 0 8px 32px rgba(0, 0, 0, 0.35);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.25);
    --radius-default: 12px;
    --radius-card: 16px;
    --transition-default: cubic-bezier(0.2, 0.8, 0.2, 1);
    --duration-fast: 220ms;
    --duration-medium: 320ms;
    --duration-slow: 500ms;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--bg-dark);
    background-image: var(--bg-gradient);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-light);
}

h1 {
    font-size: clamp(36px, 5vw, 56px);
}

h2 {
    font-size: clamp(28px, 4vw, 42px);
}

h3 {
    font-size: clamp(22px, 3vw, 28px);
}

p {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
}

/* Container & Grid System */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Section Spacing */
section {
    padding: 64px 0;
    position: relative;
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

@media (min-width: 768px) {
    section {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 96px 0;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    border-radius: var(--radius-default);
    border: none;
    cursor: pointer;
    transition: all var(--duration-medium) var(--transition-default);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #F4D03F 100%);
    color: var(--secondary-navy);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
    filter: brightness(1.1);
}

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

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--secondary-navy);
}

/* Data buttons - whitesmoke with bold font */
.btn-casino-play,
.btn-play-data {
    background-color: whitesmoke !important;
    color: #000 !important;
    font-weight: bold !important;
}

.btn-casino-play:hover,
.btn-play-data:hover {
    background-color: #f0f0f0 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Focus States for Accessibility */
*:focus-visible {
    outline: 2px solid #F2C94C;
    outline-offset: 2px;
}

/* Motion Safe Media Query */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   TOPBAR & HEADER
   ============================================ */

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--bg-dark);
    padding: 8px 0;
    font-size: 14px;
    text-align: center;
    color: var(--text-light);
    opacity: 0.8;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.topbar-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: transparent;
    backdrop-filter: blur(8px);
    transition: all var(--duration-medium) var(--transition-default);
    padding: 16px 0;
    height: auto;
    min-height: 80px; /* Ensure minimum header height for calculations */
}

/* Calculate exact header height */
.site-header .header-content {
    min-height: 48px; /* Minimum header height */
}

.site-header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 27, 42, 0.8);
    box-shadow: var(--shadow-medium);
    padding: 12px 0;
    z-index: 10000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: nowrap;
}

.header-logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary-gold);
}

.logo-monogram {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #F4D03F 100%);
    color: var(--secondary-navy);
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    border-radius: var(--radius-default);
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    overflow: hidden;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-menu li {
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    transition: color var(--duration-fast) var(--transition-default);
    position: relative;
    white-space: nowrap;
    display: inline-block;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width var(--duration-medium) var(--transition-default);
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

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

.header-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-header-cta {
    padding: 12px 24px;
    font-size: 14px;
}

.btn-header-secondary {
    padding: 12px 24px;
    font-size: 14px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: all var(--duration-fast) var(--transition-default);
}

@media (max-width: 1023px) {
    .hero-section {
        padding-top: 0;
    }
    
    .hero-section .container {
        padding-top: 0;
    }
    
    .header-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(13, 27, 42, 0.98);
        backdrop-filter: blur(12px);
        padding: 24px;
        transform: translateX(-100%);
        transition: transform var(--duration-medium) var(--transition-default);
        z-index: 999;
        box-shadow: var(--shadow-large);
    }
    
    .header-nav.active {
        transform: translateX(0);
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 16px;
    }
    
    .header-cta {
        gap: 8px;
    }
    
    .btn-header-secondary {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

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

.hero-section {
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    z-index: 1;
    overflow: hidden;
    margin-top: 0; /* Will be set dynamically by JavaScript */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--secondary-navy) 0%, #000 100%);
    z-index: -2;
}

.hero-section .container {
    padding-top: 0; /* No default padding - JavaScript will add minimal needed */
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
    margin-top: 0; /* Ensure no negative margin */
}

/* Ensure hero content is always below header */
.hero-text-column,
.hero-visual-column {
    position: relative;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
                        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    animation: particlesFloat 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes particlesFloat {
    0%, 100% { opacity: 0.2; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(-20px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-top: 0;
    margin-bottom: 24px;
    animation: slideUp 0.5s var(--transition-default);
    position: relative;
    z-index: 1;
}

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

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(234, 234, 234, 0.9);
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 16px 40px;
    font-size: 16px;
}

.hero-trust-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.trust-badge svg {
    flex-shrink: 0;
}

.hero-visual-column {
    position: relative;
    z-index: 1;
}

.hero-visual-wrapper {
    position: relative;
    height: 520px;
}

.hero-main-visual {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    border-radius: var(--radius-card);
    overflow: hidden;
    animation: scaleIn 0.6s var(--transition-default);
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-card);
    display: block;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-chips-stack,
.hero-table-corner,
.hero-dealer-silhouette {
    position: absolute;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
}

.hero-chips-stack {
    width: 200px;
    height: 120px;
    bottom: 20%;
    left: 10%;
    box-shadow: var(--shadow-medium);
}

.hero-table-corner {
    width: 100%;
    height: 60%;
    bottom: 0;
    background: linear-gradient(to top, rgba(27, 153, 139, 0.2) 0%, transparent 100%);
}

.hero-dealer-silhouette {
    width: 150px;
    height: 200px;
    right: 10%;
    top: 10%;
    opacity: 0.3;
}

.hero-micro-card {
    position: absolute;
    background: var(--bg-darker);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-default);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-medium);
    animation: floatCard 6s ease-in-out infinite;
}

.hero-micro-card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.hero-micro-card-2 {
    bottom: 10%;
    left: -10%;
    animation-delay: 3s;
}

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

.micro-card-icon {
    font-size: 24px;
}

.micro-card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.micro-card-text strong {
    font-size: 12px;
    color: var(--primary-gold);
    font-family: 'Montserrat', sans-serif;
}

.micro-card-text span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

@media (max-width: 1023px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-visual-wrapper {
        height: 400px;
    }
    
    .hero-micro-card-1,
    .hero-micro-card-2 {
        display: none;
    }
}

/* ============================================
   CASINOS SECTION
   ============================================ */

.casinos-section {
    background: var(--bg-darker);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-light);
}

.section-header {
    margin-bottom: 32px;
}

.section-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.filter-btn {
    padding: 8px 16px;
    background: var(--bg-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-default);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--duration-fast) var(--transition-default);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    color: var(--secondary-navy);
    border-color: var(--primary-gold);
}

.filter-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.casinos-table {
    background: var(--bg-dark);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-large);
    position: relative;
}

.casinos-table-body {
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.casino-row-last-container {
    position: relative;
    margin-top: 0;
    background: var(--bg-dark);
    border-radius: 0;
    box-shadow: var(--shadow-large);
    overflow: hidden;
}

.casino-row-last-container .casino-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.casinos-table-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr 1fr 2fr;
    gap: 16px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-gold);
    position: sticky;
    top: 112px;
    z-index: 9;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-card) var(--radius-card) 0 0;
}

body:not(:has(.site-header.scrolled)) .casinos-table-header {
    top: 112px;
}

.site-header.scrolled ~ * .casinos-table-header,
body:has(.site-header.scrolled) .casinos-table-header {
    top: 72px;
}

.casino-row {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--duration-medium) var(--transition-default);
}

.casino-row-main {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr 1fr 2fr;
    gap: 16px;
    padding: 24px 20px;
    align-items: center;
    min-height: 100px;
}

.casino-row:hover .casino-row-main {
    background: rgba(212, 175, 55, 0.05);
}

.casino-row:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}


.casino-row-secondary {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.casino-secondary-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.casino-description-text {
    margin-top: 4px;
}

.casino-description-text p {
    margin: 0;
    font-size: 14px;
    color: rgba(234, 234, 234, 0.8);
    line-height: 1.6;
}

.table-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: flex-start;
}

.table-col.casino-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.casino-name-top {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
    margin: 0;
    line-height: 1.3;
}

.table-col.casino-col .casino-logo-wrapper {
    margin: 0 auto;
    flex-shrink: 0;
    height: 80px;
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-col.bonus-col,
.table-col.payout-col,
.table-col.licence-col,
.table-col.live-col,
.table-col.rating-col,
.table-col.cta-col {
    align-items: center;
    justify-content: center;
    align-self: center;
    padding-top: 0;
    text-align: center;
}

.licence-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--primary-gold);
    text-align: center;
    font-size: 14px;
    width: 100%;
    display: block;
}

.min-deposit-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--accent-emerald);
    text-align: center;
    font-size: 15px;
    width: 100%;
    display: block;
}

.casino-logo-wrapper {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 80px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(4px);
    overflow: hidden;
    align-self: center;
}

.casino-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    filter: grayscale(100%);
    transition: filter var(--duration-medium) var(--transition-default);
    display: block;
}

.casino-row:hover .casino-logo {
    filter: grayscale(0%);
}

.casino-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.3;
}

.casino-license {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    max-width: 100%;
}

.license-label {
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: rgba(234, 234, 234, 0.7);
    white-space: nowrap;
}

.license-values {
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--primary-gold);
    word-break: break-word;
    line-height: 1.4;
}

.bonus-pill {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    line-height: 1.4;
    color: var(--primary-gold);
}

.payout-time {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--accent-emerald);
    text-align: center;
    font-size: 15px;
    width: 100%;
    display: block;
}

.live-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.live-badge.yes {
    background: rgba(27, 153, 139, 0.2);
    color: var(--accent-emerald);
    border: 1px solid var(--accent-emerald);
}

.provider-icons {
    display: flex;
    gap: 4px;
    margin-top: 4px;
}

.provider-icon {
    padding: 2px 6px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary-gold);
}

.rating-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
    align-items: baseline;
    justify-content: center;
    line-height: 1;
}

.star {
    color: rgba(255, 255, 255, 0.3);
    font-size: 18px;
    display: inline-block;
    vertical-align: baseline;
    line-height: 1;
}

.star.filled {
    color: var(--primary-gold);
}

.star.half-filled {
    color: var(--primary-gold);
    opacity: 0.5;
}

.rating-value {
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-align: center;
    display: block;
    width: 100%;
}

.cta-col {
    display: flex;
    gap: 8px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-casino-play,
.btn-casino-bonus {
    padding: 10px 20px;
    font-size: 14px;
    white-space: nowrap;
}

.casinos-disclaimer {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
    color: rgba(234, 234, 234, 0.6);
}

@media (max-width: 1023px) {
    .casinos-table-header,
    .casino-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .table-col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 12px;
    }
    
    .table-col:last-child {
        border-bottom: none;
    }
    
    .casino-row {
        background: var(--bg-dark);
        border-radius: var(--radius-card);
        margin-bottom: 16px;
        padding: 20px;
    }
}

/* ============================================
   HOW TO PLAY SECTION
   ============================================ */

.how-to-play-section {
    padding: 80px 0;
}

.education-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.education-card {
    background: var(--bg-darker);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: var(--radius-card);
    padding: 32px;
    text-align: center;
    transition: all 640ms var(--transition-default);
}

.education-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-gold);
}

.education-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.education-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Анимация для первой иконки (Rules) - пульсация и вращение */
.education-card:hover .education-icon-1 svg {
    animation: iconPulseRotate 1.2s ease-in-out;
}

@keyframes iconPulseRotate {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.15) rotate(5deg);
        opacity: 0.9;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Анимация для второй иконки (Bets & Odds) - масштабирование и свечение */
.education-card:hover .education-icon-2 svg {
    animation: iconScaleGlow 1.2s ease-in-out;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

@keyframes iconScaleGlow {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Анимация для третьей иконки (Beginner Tips) - подпрыгивание */
.education-card:hover .education-icon-3 svg {
    animation: iconBounce 1.2s ease-in-out;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-8px) scale(1.1);
    }
    50% {
        transform: translateY(0) scale(1);
    }
    75% {
        transform: translateY(-4px) scale(1.05);
    }
}

.education-title {
    margin-bottom: 12px;
    font-size: 22px;
}

.education-text {
    margin-bottom: 20px;
    color: rgba(234, 234, 234, 0.8);
}

.education-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: color var(--duration-fast) var(--transition-default);
}

.education-link:hover {
    color: #F4D03F;
}

@media (max-width: 767px) {
    .education-cards {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   DEMO & LIVE SECTION
   ============================================ */

.demo-live-section {
    background: var(--bg-darker);
    padding: 80px 0;
}

.demo-live-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.demo-container {
    position: relative;
}

.demo-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: var(--bg-dark);
    border-radius: var(--radius-card);
    overflow: hidden;
}

.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(13, 27, 42, 0.8);
    backdrop-filter: blur(4px);
    text-align: center;
    padding: 32px;
}

.demo-overlay h4 {
    margin-bottom: 12px;
    font-size: 24px;
}

.demo-overlay p {
    margin-bottom: 24px;
    color: rgba(234, 234, 234, 0.8);
}

.live-visual-wrapper {
    position: relative;
}

.live-dealer-photo {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(27, 153, 139, 0.1) 100%);
    border-radius: var(--radius-card);
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}

.live-dealer-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmer 1.5s infinite;
}

.live-dealer-photo:hover::before {
    animation: shimmer 1.5s;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.live-badges {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.provider-badge {
    padding: 6px 12px;
    background: rgba(13, 27, 42, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-default);
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary-gold);
}

.live-content h4 {
    margin-bottom: 12px;
}

.live-content p {
    margin-bottom: 24px;
    color: rgba(234, 234, 234, 0.8);
}

@media (max-width: 767px) {
    .demo-live-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ============================================
   BONUSES SECTION
   ============================================ */

.bonuses-section {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.bonuses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.bonuses-section .section-title {
    position: relative;
    margin-bottom: 60px;
}

.bonuses-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #F4D03F 100%);
    border-radius: 2px;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-card {
    background: var(--bg-darker);
    border-radius: var(--radius-card);
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    transition: all var(--duration-medium) var(--transition-default);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #F4D03F 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-medium) var(--transition-default);
}

.bonus-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25);
}

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

.bonus-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--duration-medium) var(--transition-default);
}

.bonus-card:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .bonus-card {
        padding: 32px;
    }
}

.bonus-header {
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.bonus-label {
    display: inline-block;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
}

.bonus-amount {
    font-size: 36px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 2;
}

.bonus-details {
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.bonus-details p {
    font-size: 15px;
    margin-bottom: 10px;
    color: rgba(234, 234, 234, 0.85);
    line-height: 1.6;
    display: flex;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.bonus-details p:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.bonus-details strong {
    color: var(--primary-gold);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.btn-bonus-claim {
    width: 100%;
    padding: 16px 24px;
    position: relative;
    z-index: 2;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.btn-bonus-claim:hover {
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

/* ============================================
   TRUST SECTION
   ============================================ */

.trust-section {
    background: var(--bg-darker);
    padding: 80px 0;
}

.trust-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.trust-pillar {
    text-align: center;
    padding: 32px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: var(--radius-card);
    background: var(--bg-dark);
}

.pillar-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.pillar-title {
    margin-bottom: 16px;
    font-size: 22px;
}

.pillar-text {
    color: rgba(234, 234, 234, 0.8);
    line-height: 1.6;
}

.trust-link-wrapper {
    text-align: center;
}

.trust-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: color var(--duration-fast) var(--transition-default);
}

.trust-link:hover {
    color: #F4D03F;
}

@media (max-width: 767px) {
    .trust-pillars {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ============================================
   STRATEGIES SECTION
   ============================================ */

.strategies-section {
    padding: 80px 0;
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.strategy-tile {
    position: relative;
    background: var(--bg-darker);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-card);
    padding: 32px;
    overflow: hidden;
    transition: all var(--duration-medium) var(--transition-default);
}

.strategy-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-gold);
}

.strategy-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0;
    transition: opacity var(--duration-slow) var(--transition-default);
}

.strategy-tile:hover .strategy-bg-grid {
    opacity: 1;
    animation: gridPulse 3s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

.strategy-title {
    margin-bottom: 12px;
    font-size: 20px;
    position: relative;
    z-index: 1;
}

.strategy-tile:hover .strategy-title {
    text-decoration: underline;
    text-decoration-color: var(--primary-gold);
    text-underline-offset: 4px;
}

.strategy-description {
    margin-bottom: 16px;
    color: rgba(234, 234, 234, 0.8);
    position: relative;
    z-index: 1;
}

.strategy-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1023px) {
    .strategies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

.providers-section {
    background: var(--bg-darker);
    padding: 64px 0;
}

.providers-row,
.variants-row {
    margin-bottom: 48px;
}

.providers-title,
.variants-title {
    text-align: center;
    margin-bottom: 32px;
    font-size: 24px;
}

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

.provider-logo {
    opacity: 0.6;
    transition: opacity var(--duration-medium) var(--transition-default);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.provider-logo:hover {
    opacity: 1;
}

.provider-img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    transition: filter var(--duration-medium) var(--transition-default);
}

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

.provider-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--text-light);
    text-align: center;
    transition: all var(--duration-medium) var(--transition-default);
    display: block;
}

.provider-logo:hover .provider-name {
    color: var(--primary-gold);
    transform: scale(1.05);
}

.variants-chips {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.variant-chip {
    padding: 10px 20px;
    background: var(--bg-dark);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: all var(--duration-fast) var(--transition-default);
}

.variant-chip:hover {
    background: var(--primary-gold);
    color: var(--secondary-navy);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--bg-darker);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: all var(--duration-medium) var(--transition-default);
}

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

.blog-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    overflow: hidden;
}

.blog-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--transition-default);
}

.blog-card:hover .blog-img {
    transform: scale(1.04);
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    color: rgba(234, 234, 234, 0.6);
}

.blog-tags {
    color: var(--primary-gold);
}

.blog-title {
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 1.4;
}

.blog-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
}

@media (max-width: 1023px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ============================================
   ARTICLE CONTENT SECTION
   ============================================ */

.article-content-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.article-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-light);
    line-height: 1.8;
}

.article-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 32px;
    text-align: center;
    line-height: 1.3;
}

.article-intro {
    font-size: clamp(17px, 2vw, 19px);
    line-height: 1.8;
    color: rgba(234, 234, 234, 0.95);
    margin-bottom: 24px;
    font-weight: 400;
}

.article-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    color: var(--primary-gold);
    margin-top: 48px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.article-h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 600;
    color: var(--text-light);
    margin-top: 32px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.article-content-wrapper p {
    font-size: clamp(16px, 2vw, 17px);
    line-height: 1.8;
    color: rgba(234, 234, 234, 0.9);
    margin-bottom: 20px;
}

.article-content-wrapper p strong {
    color: var(--primary-gold);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.article-list {
    list-style: none;
    padding-left: 0;
    margin: 24px 0;
}

.article-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: clamp(16px, 2vw, 17px);
    line-height: 1.8;
    color: rgba(234, 234, 234, 0.9);
}

.article-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 18px;
}

.article-list li strong {
    color: var(--primary-gold);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.article-table-wrapper {
    margin: 32px 0;
    overflow-x: auto;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-medium);
}

.article-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-darker);
    border-radius: var(--radius-card);
    overflow: hidden;
    font-size: 14px;
}

.article-table caption {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-gold);
    margin-bottom: 16px;
    text-align: left;
    padding: 0 4px;
}

.article-table thead {
    background: rgba(212, 175, 55, 0.15);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.article-table th {
    padding: 16px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-gold);
    border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.article-table th:last-child {
    border-right: none;
}

.article-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background var(--duration-fast) var(--transition-default);
}

.article-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

.article-table tbody tr:last-child {
    border-bottom: none;
}

.article-table td {
    padding: 14px 16px;
    color: rgba(234, 234, 234, 0.9);
    font-size: 14px;
    line-height: 1.6;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.article-table td:last-child {
    border-right: none;
}

.article-table td strong {
    color: var(--primary-gold);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.article-highlight-box {
    background: var(--bg-darker);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-left: 4px solid var(--primary-gold);
    border-radius: var(--radius-default);
    padding: 24px;
    margin: 32px 0;
    box-shadow: var(--shadow-medium);
}

.article-highlight-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 16px;
    line-height: 1.4;
}

.article-highlight-box .article-list {
    margin-top: 0;
}

.article-content-section-2 {
    background: var(--bg-darker);
}

@media (max-width: 767px) {
    .article-content-section {
        padding: 60px 0;
    }
    
    .article-content-wrapper {
        padding: 0 16px;
    }
    
    .article-table-wrapper {
        margin: 24px -16px;
        border-radius: 0;
    }
    
    .article-table {
        font-size: 12px;
    }
    
    .article-table th,
    .article-table td {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .article-table caption {
        padding: 0 16px;
        font-size: 14px;
    }
    
    .article-highlight-box {
        padding: 20px;
        margin: 24px 0;
    }
}

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

.faq-section {
    background: var(--bg-darker);
    padding: 80px 0;
}

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

.faq-item {
    background: var(--bg-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-default);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    transition: all var(--duration-fast) var(--transition-default);
}

.faq-question:hover {
    color: var(--primary-gold);
}

.faq-question[aria-expanded="true"] {
    color: var(--primary-gold);
}

.faq-chevron {
    font-size: 14px;
    transition: transform var(--duration-fast) var(--transition-default);
    color: var(--primary-gold);
}

.faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-medium) var(--transition-default);
}

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

.faq-answer p {
    padding: 0 24px 24px;
    color: rgba(234, 234, 234, 0.8);
    line-height: 1.7;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
    padding: 80px 0;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-banner-title {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--text-light);
}

.cta-banner-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

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

.site-footer {
    background: var(--bg-darker);
    padding: 64px 0 32px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-title {
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(234, 234, 234, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--duration-fast) var(--transition-default);
}

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

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.badge-image {
    max-height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity var(--duration-fast) var(--transition-default);
}

.badge-image:hover {
    opacity: 1;
}

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

.footer-disclosure {
    font-size: 12px;
    color: rgba(234, 234, 234, 0.6);
    line-height: 1.6;
}

@media (max-width: 1023px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

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

