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

:root {
    /* Dark Theme Colors */
    --bg-primary: #0a0e27;
    --bg-secondary: #111633;
    --bg-card: #1a1f3a;
    --bg-card-hover: #202747;

    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-gold: linear-gradient(135deg, #ffd89b 0%, #ff6e7f 100%);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #718096;

    /* Accent Colors */
    --accent-purple: #667eea;
    --accent-pink: #f093fb;
    --accent-blue: #4facfe;
    --accent-gold: #ffd89b;

    /* Glass Effect */
    --glass-bg: rgba(26, 31, 58, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Shadows & Glows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --glow-purple: 0 0 30px rgba(102, 126, 234, 0.5);
    --glow-pink: 0 0 30px rgba(240, 147, 251, 0.5);
}

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

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

/* ====================================
   NAVIGATION
   ==================================== */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-icon {
    font-size: 2rem;
}

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

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

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

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-primary);
}

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

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

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(240, 147, 251, 0.15) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

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

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.glow-badge {
    box-shadow: var(--glow-purple);
    animation: pulse 3s ease infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: var(--glow-purple); }
    50% { box-shadow: 0 0 40px rgba(102, 126, 234, 0.7); }
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.gradient-text-hero {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.2s ease;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1.4s ease;
}

/* ====================================
   BUTTONS
   ==================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-purple);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-purple);
}

.btn-casino {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.btn-casino:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-purple);
}

/* ====================================
   ARTICLE METADATA
   ==================================== */
.article-meta {
    padding: 30px 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--glass-border);
}

.meta-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s ease;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.meta-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.meta-value {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.meta-subtitle {
    color: var(--accent-purple);
    font-size: 0.85rem;
    font-style: italic;
    margin-left: 0.3rem;
}

.meta-divider {
    color: var(--glass-border);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .meta-content {
        flex-direction: column;
        gap: 0.75rem;
    }

    .meta-divider {
        display: none;
    }

    .meta-item {
        justify-content: center;
    }
}

/* ====================================
   STATS SECTION
   ==================================== */
.stats-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

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

/* ====================================
   CASINO CARDS
   ==================================== */
.casino-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

.casino-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

.casino-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-lg), var(--glow-purple);
}

.casino-card.featured {
    border: 2px solid var(--accent-purple);
    box-shadow: var(--glow-purple);
}

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

.new-badge {
    background: var(--gradient-success);
}

.featured-badge {
    background: var(--gradient-primary);
}

.hot-badge {
    background: var(--gradient-secondary);
}

.no-deposit-badge {
    background: var(--gradient-gold);
    color: #333;
}

.code-badge {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #333;
}

.fast-badge {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    color: #333;
}

.popular-badge {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: #333;
}

.kyc-badge {
    background: linear-gradient(135deg, #c1dfc4 0%, #deecdd 100%);
    color: #333;
}

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

.casino-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.casino-rating {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.casino-bonus {
    background: var(--glass-bg);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.bonus-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-amount {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.bonus-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.feature {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

/* ====================================
   CONTENT SECTIONS
   ==================================== */
.guide-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.content-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease;
}

.content-card h2,
.content-card h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.content-card h3 {
    font-size: 1.8rem;
}

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

.intro-text {
    font-size: 1.2rem;
    color: var(--text-primary);
}

/* ====================================
   FEATURE BOXES
   ==================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-box {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

.feature-box:hover {
    transform: scale(1.05);
    border-color: var(--accent-purple);
    box-shadow: var(--glow-purple);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-box h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.feature-box p {
    color: var(--text-secondary);
}

/* ====================================
   CHECKLIST
   ==================================== */
.checklist {
    margin: 2rem 0;
}

.checklist-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.checklist-item:last-child {
    border-bottom: none;
}

.check-icon {
    font-size: 1.5rem;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.warning-text {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    padding: 1rem;
    border-radius: 10px;
    color: var(--text-secondary);
}

.highlight-text {
    background: rgba(102, 126, 234, 0.1);
    border-left: 4px solid var(--accent-purple);
    padding: 1rem;
    border-radius: 10px;
}

/* ====================================
   INFO CARDS
   ==================================== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
}

.info-card h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

/* ====================================
   ABOUT PAGE - TEAM SECTION
   ==================================== */
.page-header {
    padding: 100px 0 60px;
    text-align: center;
    background: var(--bg-secondary);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.mission-section,
.team-section,
.values-section {
    padding: 80px 0;
}

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

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-lg), var(--glow-purple);
}

.avatar-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    box-shadow: var(--shadow-md);
}

.gradient-1 { background: var(--gradient-primary); }
.gradient-2 { background: var(--gradient-secondary); }
.gradient-3 { background: var(--gradient-success); }
.gradient-4 { background: var(--gradient-gold); }
.gradient-5 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.gradient-6 { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.role {
    color: var(--accent-purple);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.bio {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tag {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ====================================
   VALUES SECTION
   ==================================== */
.values-section {
    background: var(--bg-secondary);
}

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

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

.value-card:hover {
    transform: scale(1.05);
    border-color: var(--accent-purple);
    box-shadow: var(--glow-purple);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* ====================================
   CTA SECTION
   ==================================== */
.cta-section {
    padding: 80px 0;
}

.cta-card {
    background: var(--gradient-primary);
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    box-shadow: var(--shadow-lg), var(--glow-purple);
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ====================================
   CONTACT PAGE
   ==================================== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper {
    animation: fadeInUp 0.6s ease;
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(75, 172, 254, 0.1);
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
}

.form-message.error {
    display: block;
    background: rgba(245, 87, 108, 0.1);
    border: 1px solid #f5576c;
    color: #f5576c;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card-contact {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    animation: fadeInUp 0.6s ease;
    transition: all 0.3s ease;
}

.info-card-contact:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.info-card-contact p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-card-contact a {
    color: var(--accent-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card-contact a:hover {
    color: var(--accent-blue);
}

.small-text {
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* ====================================
   FAQ SECTION
   ==================================== */
.faq-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
}

.faq-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

/* ====================================
   RESPONSIBLE GAMING SECTION
   ==================================== */
.responsible-gaming-section {
    padding: 80px 0;
}

.responsible-gaming-card {
    background: var(--bg-card);
    border: 2px solid var(--accent-blue);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
}

.responsible-gaming-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.responsible-gaming-card > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.help-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.help-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.help-link:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(75, 172, 254, 0.3);
}

.help-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.help-link strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.help-link p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-purple);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    text-align: center;
}

.disclaimer {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

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

    .section-header h2 {
        font-size: 2rem;
    }

    .content-card {
        padding: 2rem;
    }

    .cta-card {
        padding: 2.5rem 1.5rem;
    }

    .cta-card h2 {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

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

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

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

    .help-resources {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ====================================
   SCROLL ANIMATIONS
   ==================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
