/* CrownBridgePlay - Social Gaming Platform Styles */
/* Blueprint-inspired Engineering Aesthetic */

:root {
    /* Core Palette */
    --cbp-blueprint-white: #F5F8FA;
    --cbp-grid-mist: #E7EEF4;
    --cbp-ink-navy: #0E1A2B;
    --cbp-muted-slate: #55626E;

    /* Accents */
    --cbp-bridge-steel: #2B4A66;
    --cbp-cable-cyan: #2EC9D6;
    --cbp-crown-gold: #C6A15B;
    --cbp-signal-orange: #FF8A3D;

    /* UI Elements */
    --cbp-divider: rgba(14, 26, 43, 0.10);
    --cbp-shadow-subtle: 0 2px 8px rgba(14, 26, 43, 0.06);
    --cbp-shadow-medium: 0 4px 20px rgba(14, 26, 43, 0.10);
    --cbp-shadow-strong: 0 8px 40px rgba(14, 26, 43, 0.15);

    /* Typography */
    --cbp-font-heading: 'Rajdhani', sans-serif;
    --cbp-font-body: 'Alegreya Sans', sans-serif;
    --cbp-font-mono: 'Roboto Mono', monospace;

    /* Layout */
    --cbp-container-width: 1200px;
    --cbp-header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--cbp-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--cbp-ink-navy);
    background: var(--cbp-blueprint-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.cbp-container {
    width: 100%;
    max-width: var(--cbp-container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Age Verification Modal */
.cbp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 26, 43, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cbp-modal-overlay.cbp-modal-active {
    opacity: 1;
    visibility: visible;
}

.cbp-age-content {
    background: var(--cbp-blueprint-white);
    border-radius: 16px;
    padding: 48px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cbp-modal-overlay.cbp-modal-active .cbp-age-content {
    transform: translateY(0);
}

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

.cbp-modal-title {
    font-family: var(--cbp-font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--cbp-ink-navy);
    margin-bottom: 16px;
}

.cbp-modal-text {
    color: var(--cbp-muted-slate);
    margin-bottom: 32px;
}

.cbp-age-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Cookie Banner */
.cbp-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--cbp-ink-navy);
    color: var(--cbp-blueprint-white);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cbp-cookie-banner.cbp-cookie-show {
    transform: translateY(0);
}

.cbp-cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 24px;
}

.cbp-cookie-text p {
    font-size: 14px;
    color: var(--cbp-grid-mist);
}

.cbp-cookie-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cbp-cookie-link {
    color: var(--cbp-cable-cyan);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.cbp-cookie-link:hover {
    color: var(--cbp-crown-gold);
}

.cbp-btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

/* Header */
.cbp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--cbp-header-height);
    background: rgba(245, 248, 250, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--cbp-divider);
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.cbp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.cbp-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.cbp-logo:hover {
    opacity: 0.9;
}

.cbp-logo-icon {
    display: block;
    height: 40px;
    width: auto;
    flex-shrink: 0;
}

.cbp-logo-text {
    font-family: var(--cbp-font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--cbp-ink-navy);
    line-height: 1;
}

.cbp-logo-tag {
    font-family: var(--cbp-font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--cbp-cable-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-left: 2px;
    line-height: 1;
}

/* Navigation */
.cbp-nav {
    margin: 0 40px;
}

.cbp-nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.cbp-nav-link {
    display: block;
    padding: 8px 16px;
    font-family: var(--cbp-font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--cbp-muted-slate);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
}

.cbp-nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--cbp-cable-cyan);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.cbp-nav-link:hover {
    color: var(--cbp-ink-navy);
    background: var(--cbp-grid-mist);
}

.cbp-nav-link:hover::after {
    width: 24px;
}

.cbp-nav-link-active {
    color: var(--cbp-cable-cyan);
}

.cbp-nav-link-active::after {
    width: 24px;
}

/* Buttons */
.cbp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--cbp-font-heading);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cbp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cbp-btn:hover::before {
    left: 100%;
}

.cbp-btn-primary {
    background: var(--cbp-cable-cyan);
    color: var(--cbp-ink-navy);
    box-shadow: var(--cbp-shadow-subtle);
}

.cbp-btn-primary:hover {
    background: #26B5C2;
    box-shadow: 0 6px 20px rgba(46, 201, 214, 0.3);
    transform: translateY(-2px);
}

.cbp-btn-secondary {
    background: var(--cbp-grid-mist);
    color: var(--cbp-muted-slate);
}

.cbp-btn-secondary:hover {
    background: var(--cbp-bridge-steel);
    color: var(--cbp-blueprint-white);
}

.cbp-btn-outline {
    background: transparent;
    color: var(--cbp-ink-navy);
    border: 2px solid var(--cbp-bridge-steel);
}

.cbp-btn-outline:hover {
    background: var(--cbp-bridge-steel);
    color: var(--cbp-blueprint-white);
    border-color: var(--cbp-bridge-steel);
}

.cbp-btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.cbp-btn-header {
    background: var(--cbp-ink-navy);
    color: var(--cbp-cable-cyan);
}

.cbp-btn-header:hover {
    background: var(--cbp-bridge-steel);
    transform: translateY(-1px);
}

.cbp-btn-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.cbp-btn-arrow {
    transition: transform 0.3s ease;
}

.cbp-btn:hover .cbp-btn-arrow {
    transform: translateX(4px);
}

.cbp-btn-dot {
    width: 6px;
    height: 6px;
    background: var(--cbp-crown-gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Hero Section */
.cbp-hero {
    position: relative;
    min-height: 100vh;
    padding-top: var(--cbp-header-height);
    overflow: hidden;
}

.cbp-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cbp-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cbp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 26, 43, 0.75) 0%, rgba(14, 26, 43, 0.5) 50%, rgba(14, 26, 43, 0.65) 100%);
}

.cbp-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--cbp-header-height));
    padding: 60px 0;
}

.cbp-hero-content {
    max-width: 640px;
    color: var(--cbp-blueprint-white);
}

.cbp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(46, 201, 214, 0.15);
    border: 1px solid rgba(46, 201, 214, 0.3);
    border-radius: 50px;
    font-family: var(--cbp-font-mono);
    font-size: 12px;
    color: var(--cbp-cable-cyan);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.cbp-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--cbp-crown-gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.cbp-hero-title {
    font-family: var(--cbp-font-heading);
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cbp-title-line {
    display: block;
    opacity: 0.95;
}

.cbp-title-accent {
    color: var(--cbp-cable-cyan);
}

.cbp-hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--cbp-grid-mist);
    margin-bottom: 40px;
    max-width: 520px;
}

.cbp-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Section Styles */
.cbp-section {
    padding: 100px 0;
    position: relative;
}

.cbp-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.cbp-section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.cbp-label-line {
    width: 32px;
    height: 2px;
    background: var(--cbp-crown-gold);
}

.cbp-label-text {
    font-family: var(--cbp-font-mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--cbp-crown-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cbp-section-title {
    font-family: var(--cbp-font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--cbp-ink-navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.cbp-section-subtitle {
    font-size: 17px;
    color: var(--cbp-muted-slate);
    line-height: 1.7;
}

/* About Section */
.cbp-section-about {
    background: var(--cbp-blueprint-white);
}

.cbp-about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin: 60px 0;
    padding: 48px 0;
    border-top: 1px solid var(--cbp-divider);
    border-bottom: 1px solid var(--cbp-divider);
}

.cbp-stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.cbp-stat-item:hover {
    transform: translateY(-4px);
}

.cbp-stat-value {
    font-family: var(--cbp-font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--cbp-ink-navy);
    line-height: 1;
    margin-bottom: 8px;
}

.cbp-stat-accent {
    color: var(--cbp-cable-cyan);
}

.cbp-stat-label {
    font-family: var(--cbp-font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--cbp-ink-navy);
    margin-bottom: 4px;
}

.cbp-stat-metric {
    font-family: var(--cbp-font-mono);
    font-size: 13px;
    color: var(--cbp-muted-slate);
}

.cbp-about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cbp-about-text {
    font-size: 17px;
    color: var(--cbp-muted-slate);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* CTA Section */
.cbp-section-cta {
    background: linear-gradient(135deg, var(--cbp-bridge-steel) 0%, var(--cbp-ink-navy) 100%);
    padding: 80px 0;
}

.cbp-cta-box {
    position: relative;
    background: rgba(245, 248, 250, 0.95);
    border-radius: 24px;
    padding: 60px;
    overflow: hidden;
}

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

.cbp-cta-title {
    font-family: var(--cbp-font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--cbp-ink-navy);
    margin-bottom: 16px;
}

.cbp-cta-text {
    font-size: 17px;
    color: var(--cbp-muted-slate);
    margin-bottom: 32px;
}

.cbp-cta-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cbp-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.cbp-circle-1 {
    width: 300px;
    height: 300px;
    background: var(--cbp-cable-cyan);
    top: -100px;
    right: -100px;
}

.cbp-circle-2 {
    width: 200px;
    height: 200px;
    background: var(--cbp-crown-gold);
    bottom: -50px;
    right: 150px;
}

.cbp-circle-3 {
    width: 150px;
    height: 150px;
    background: var(--cbp-cable-cyan);
    top: 100px;
    left: -50px;
}

/* Features Section */
.cbp-section-features {
    background: var(--cbp-grid-mist);
}

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

.cbp-feature-card {
    background: var(--cbp-blueprint-white);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--cbp-divider);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cbp-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--cbp-shadow-strong);
    border-color: var(--cbp-cable-cyan);
}

.cbp-feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cbp-grid-mist);
    border-radius: 12px;
    margin-bottom: 24px;
}

.cbp-feature-icon svg {
    width: 48px;
    height: 48px;
}

.cbp-feature-title {
    font-family: var(--cbp-font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--cbp-ink-navy);
    margin-bottom: 12px;
}

.cbp-feature-text {
    font-size: 15px;
    color: var(--cbp-muted-slate);
    line-height: 1.6;
}

/* Games Section */
.cbp-section-games {
    background: var(--cbp-blueprint-white);
}

.cbp-games-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cbp-game-card {
    position: relative;
    background: var(--cbp-blueprint-white);
    border-radius: 20px;
    border: 2px solid var(--cbp-divider);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cbp-game-card:hover {
    border-color: var(--cbp-cable-cyan);
    box-shadow: var(--cbp-shadow-strong);
}

.cbp-game-featured {
    border-color: var(--cbp-signal-orange);
}

.cbp-game-featured:hover {
    box-shadow: 0 12px 48px rgba(255, 138, 61, 0.2);
}

.cbp-game-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--cbp-signal-orange);
    color: white;
    font-family: var(--cbp-font-heading);
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    z-index: 2;
}

.cbp-badge-star {
    font-size: 16px;
}

.cbp-game-content {
    display: flex;
    gap: 40px;
    padding: 40px;
}

.cbp-game-media {
    flex-shrink: 0;
    width: 320px;
}

.cbp-game-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.cbp-game-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cbp-game-title {
    font-family: var(--cbp-font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--cbp-ink-navy);
    margin-bottom: 12px;
}

.cbp-game-description {
    font-size: 15px;
    color: var(--cbp-muted-slate);
    line-height: 1.7;
    margin-bottom: 20px;
}

.cbp-game-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.cbp-game-tag {
    padding: 6px 14px;
    background: var(--cbp-grid-mist);
    font-family: var(--cbp-font-mono);
    font-size: 11px;
    color: var(--cbp-bridge-steel);
    border-radius: 50px;
}

/* Contact CTA Section */
.cbp-section-contact {
    background: var(--cbp-grid-mist);
    padding: 80px 0;
}

.cbp-contact-box {
    background: var(--cbp-ink-navy);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
}

.cbp-contact-title {
    font-family: var(--cbp-font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--cbp-blueprint-white);
    margin-bottom: 16px;
}

.cbp-contact-text {
    font-size: 16px;
    color: var(--cbp-grid-mist);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cbp-contact-box .cbp-btn-outline {
    border-color: var(--cbp-cable-cyan);
    color: var(--cbp-cable-cyan);
}

.cbp-contact-box .cbp-btn-outline:hover {
    background: var(--cbp-cable-cyan);
    color: var(--cbp-ink-navy);
}

/* Footer */
.cbp-footer {
    background: var(--cbp-ink-navy);
    padding: 60px 0 30px;
}

.cbp-disclaimer-box {
    background: rgba(198, 161, 91, 0.1);
    border: 1px solid var(--cbp-crown-gold);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 60px;
}

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

.cbp-disclaimer-icon {
    flex-shrink: 0;
}

.cbp-disclaimer-title {
    font-family: var(--cbp-font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--cbp-crown-gold);
}

.cbp-disclaimer-text {
    font-size: 13px;
    color: var(--cbp-grid-mist);
    line-height: 1.7;
    margin-bottom: 12px;
}

.cbp-disclaimer-text:last-child {
    margin-bottom: 0;
}

.cbp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.cbp-footer-column h4 {
    font-family: var(--cbp-font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--cbp-cable-cyan);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cbp-footer-logo {
    margin-bottom: 16px;
}

.cbp-footer-logo-img {
    display: block;
    height: 40px;
    width: auto;
}

.cbp-footer-tagline {
    font-size: 14px;
    color: var(--cbp-muted-slate);
    line-height: 1.6;
}

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

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

.cbp-footer-links a {
    font-size: 14px;
    color: var(--cbp-grid-mist);
    text-decoration: none;
    transition: color 0.2s ease;
}

.cbp-footer-links a:hover {
    color: var(--cbp-cable-cyan);
}

.cbp-footer-contact {
    list-style: none;
}

.cbp-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--cbp-grid-mist);
}

.cbp-footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--cbp-cable-cyan);
}

.cbp-responsible-gaming {
    background: rgba(46, 201, 214, 0.1);
    border: 1px solid var(--cbp-cable-cyan);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
}

.cbp-rg-heading {
    font-family: var(--cbp-font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--cbp-cable-cyan);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cbp-rg-text {
    font-size: 13px;
    color: var(--cbp-muted-slate);
    margin-bottom: 16px;
}

.cbp-rg-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cbp-rg-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: rgba(46, 201, 214, 0.1);
    border: 1px solid rgba(46, 201, 214, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cbp-rg-links a:hover {
    background: rgba(46, 201, 214, 0.2);
    border-color: var(--cbp-cable-cyan);
    transform: translateY(-2px);
}

.cbp-rg-links a img {
    max-width: 120px;
    height: auto;
    display: block;
}

.cbp-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--cbp-divider);
}

.cbp-footer-bottom p {
    font-size: 13px;
    color: var(--cbp-muted-slate);
}

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

.cbp-animate-up {
    animation: fadeInUp 0.6s ease forwards;
}

.cbp-animate-delay-1 { animation-delay: 0.1s; }
.cbp-animate-delay-2 { animation-delay: 0.2s; }
.cbp-animate-delay-3 { animation-delay: 0.3s; }
.cbp-animate-delay-4 { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --cbp-container-width: 100%;
    }

    .cbp-logo-text {
        font-size: 18px;
    }

    .cbp-logo-tag {
        font-size: 10px;
    }

    .cbp-logo-icon {
        height: 32px;
    }

    .cbp-hero-title {
        font-size: 48px;
    }

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

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

    .cbp-game-content {
        flex-direction: column;
        gap: 24px;
    }

    .cbp-game-media {
        width: 100%;
    }

    .cbp-game-image {
        border-radius: 8px;
    }

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

@media (max-width: 768px) {
    .cbp-header-inner {
        flex-wrap: wrap;
    }

    .cbp-logo {
        gap: 8px;
    }

    .cbp-logo-text {
        font-size: 16px;
    }

    .cbp-logo-tag {
        font-size: 9px;
    }

    .cbp-logo-icon {
        height: 28px;
    }

    .cbp-nav {
        display: none;
    }

    .cbp-hero-title {
        font-size: 36px;
    }

    .cbp-hero-subtitle {
        font-size: 16px;
    }

    .cbp-hero-actions {
        flex-direction: column;
    }

    .cbp-hero-actions .cbp-btn {
        width: 100%;
        justify-content: center;
    }

    .cbp-section-title {
        font-size: 32px;
    }

    .cbp-about-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .cbp-cta-box {
        padding: 40px 24px;
    }

    .cbp-contact-box {
        padding: 40px 24px;
    }

    .cbp-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cbp-rg-links {
        flex-direction: column;
        gap: 12px;
    }

    .cbp-rg-links a img {
        max-width: 100px;
    }

    .cbp-disclaimer-box {
        padding: 24px;
    }

    .cbp-age-content {
        padding: 32px 24px;
    }

    .cbp-age-actions {
        flex-direction: column;
    }

    .cbp-cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cbp-container {
        padding: 0 16px;
    }

    .cbp-hero-title {
        font-size: 28px;
    }

    .cbp-section {
        padding: 60px 0;
    }

    .cbp-feature-card {
        padding: 24px;
    }

    .cbp-game-card {
        padding: 24px;
    }

    .cbp-game-info {
        padding: 0;
    }
}
