/* RESET & BASE STYLES */
:root {
    --bcc-primary: #D4AF37; /* Gold */
    --bcc-primary-hover: #C5A028;
    --bcc-bg-main: #061121; /* Deep sea blue */
    --bcc-bg-alt: #0A192F; /* Slightly lighter deep sea blue */
    --bcc-text: #F3F4F6;
    --bcc-text-muted: #9CA3AF;
    --bcc-card-bg: #112240;
    --bcc-white: #FFFFFF;
    --bcc-border: rgba(212, 175, 55, 0.2);
    --bcc-font-heading: 'Playfair Display', serif;
    --bcc-font-body: 'Lato', sans-serif;
    --bcc-transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--bcc-font-body);
    background-color: var(--bcc-bg-main);
    color: var(--bcc-text);
    line-height: 1.6;
    font-size: 16px;
}

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

ul {
    list-style: none;
}

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

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

.bcc-section {
    padding: 100px 0;
}

.bcc-bg-alt {
    background-color: var(--bcc-bg-alt);
}

.mt-5 {
    margin-top: 3rem;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--bcc-font-heading);
    font-weight: 700;
    color: var(--bcc-white);
    margin-bottom: 15px;
}

.bcc-section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bcc-section-title {
    font-size: 2.5rem;
    color: var(--bcc-primary);
    margin-bottom: 10px;
}

.bcc-section-subtitle {
    font-size: 1.1rem;
    color: var(--bcc-text-muted);
}

/* BUTTONS */
.bcc-btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--bcc-font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--bcc-transition);
}

.bcc-btn-primary {
    background-color: var(--bcc-primary);
    color: var(--bcc-bg-main);
    border-color: var(--bcc-primary);
}

.bcc-btn-primary:hover {
    background-color: var(--bcc-primary-hover);
    border-color: var(--bcc-primary-hover);
    color: var(--bcc-bg-main);
    transform: translateY(-2px);
}

.bcc-btn-outline {
    background-color: transparent;
    color: var(--bcc-primary);
    border-color: var(--bcc-primary);
}

.bcc-btn-outline:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.bcc-full-width {
    width: 100%;
}

/* HEADER */
.bcc-main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(6, 17, 33, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--bcc-border);
    transition: var(--bcc-transition);
}

.bcc-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.bcc-logo a {
    display: flex;
    flex-direction: column;
}

.bcc-logo-text {
    font-family: var(--bcc-font-heading);
    font-size: 1.5rem;
    color: var(--bcc-primary);
    line-height: 1;
}

.bcc-logo-sub {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bcc-white);
}

.bcc-nav ul {
    display: flex;
    gap: 30px;
}

.bcc-nav a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

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

.bcc-header-badge {
    border: 1px solid var(--bcc-primary);
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 20px;
    color: var(--bcc-primary);
    font-weight: bold;
}

.bcc-mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* HERO SECTION */
.bcc-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding-top: 80px;
}

.bcc-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(6, 17, 33, 0.7), rgba(6, 17, 33, 0.9));
}

.bcc-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.bcc-hero-kicker {
    display: inline-block;
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--bcc-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--bcc-primary);
}

.bcc-hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.bcc-hero-desc {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #E5E7EB;
}

.bcc-hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.bcc-hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    border-top: 1px solid var(--bcc-border);
    padding-top: 30px;
}

.bcc-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--bcc-font-heading);
    font-size: 1.1rem;
}

.bcc-feature-icon {
    font-size: 1.5rem;
}

/* GRIDS */
.bcc-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARDS */
.bcc-card {
    background-color: var(--bcc-card-bg);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid var(--bcc-border);
    transition: var(--bcc-transition);
}

.bcc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: var(--bcc-primary);
}

.bcc-card-title {
    font-size: 1.5rem;
    color: var(--bcc-primary);
    margin-bottom: 15px;
}

.bcc-card-text {
    color: var(--bcc-text-muted);
    margin-bottom: 20px;
}

.bcc-card-list {
    margin-top: 15px;
}

.bcc-card-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--bcc-white);
}

.bcc-card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--bcc-primary);
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

.bcc-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bcc-primary);
    display: block;
    margin-bottom: 10px;
}

/* CASINO EVENTS BOX */
.bcc-casino-events-box {
    background: linear-gradient(135deg, var(--bcc-card-bg) 0%, var(--bcc-bg-main) 100%);
    border: 1px solid var(--bcc-primary);
    border-radius: 8px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bcc-casino-events-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle, rgba(212, 175, 55, 0.1) 10%, transparent 80%);
    pointer-events: none;
}

.bcc-casino-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.bcc-casino-text {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--bcc-text-muted);
}

/* ROUTE TIMELINE */
.bcc-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.bcc-timeline::before {
    content: '';
    position: absolute;
    top: 0; left: 20px;
    height: 100%;
    width: 2px;
    background-color: var(--bcc-border);
}

.bcc-timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.bcc-timeline-item:last-child {
    margin-bottom: 0;
}

.bcc-timeline-dot {
    position: absolute;
    left: 11px;
    top: 5px;
    width: 20px;
    height: 20px;
    background-color: var(--bcc-bg-main);
    border: 4px solid var(--bcc-primary);
    border-radius: 50%;
}

.bcc-timeline-content h4 {
    color: var(--bcc-primary);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.bcc-timeline-content p {
    color: var(--bcc-text-muted);
}

/* TICKETS */
.bcc-ticket-card {
    background-color: var(--bcc-card-bg);
    border-radius: 8px;
    border: 1px solid var(--bcc-border);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.bcc-ticket-popular {
    border-color: var(--bcc-primary);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.bcc-ticket-badge {
    background-color: var(--bcc-primary);
    color: var(--bcc-bg-main);
    text-align: center;
    padding: 5px 0;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.bcc-ticket-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.bcc-ticket-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.bcc-ticket-price {
    color: var(--bcc-primary);
    font-size: 1.1rem;
    font-weight: 700;
}

.bcc-ticket-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bcc-ticket-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.bcc-ticket-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--bcc-text-muted);
    font-size: 0.95rem;
    text-align: center;
}

.bcc-ticket-features li:last-child {
    border-bottom: none;
}

/* FOOTER */
.bcc-main-footer {
    background-color: #030811;
    padding: 80px 0 20px;
    border-top: 1px solid var(--bcc-border);
}

.bcc-footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.bcc-footer-title {
    font-size: 1.5rem;
    color: var(--bcc-white);
    margin-bottom: 25px;
}

.bcc-footer-desc {
    color: var(--bcc-text-muted);
    margin-bottom: 25px;
}

.bcc-responsible-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 4px;
    border-left: 3px solid var(--bcc-primary);
}

.bcc-responsible-badge span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bcc-primary);
}

.bcc-responsible-badge p {
    font-size: 0.85rem;
    color: var(--bcc-text-muted);
    margin: 0;
    line-height: 1.4;
}

.bcc-contact-list li {
    margin-bottom: 15px;
    color: var(--bcc-text-muted);
    display: flex;
    flex-direction: column;
}

.bcc-contact-list strong {
    color: var(--bcc-primary);
    margin-bottom: 5px;
}

.bcc-contact-list a:hover {
    color: var(--bcc-white);
}

.bcc-legal-nav li {
    margin-bottom: 12px;
}

.bcc-legal-nav a {
    color: var(--bcc-text-muted);
}

.bcc-legal-nav a:hover {
    color: var(--bcc-primary);
}

.bcc-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--bcc-text-muted);
    font-size: 0.9rem;
}

.bcc-affiliate-disc {
    font-size: 0.75rem;
    margin-top: 10px;
    opacity: 0.7;
}

/* FLOATING BUTTON & MODAL */
.bcc-floating-feedback-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--bcc-primary);
    color: var(--bcc-bg-main);
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--bcc-transition);
}

.bcc-floating-feedback-btn:hover {
    transform: scale(1.1);
    background-color: var(--bcc-primary-hover);
}

.bcc-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--bcc-transition);
}

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

.bcc-modal-content {
    background-color: var(--bcc-card-bg);
    padding: 40px;
    border-radius: 8px;
    width: 100%;
    max-width: 450px;
    position: relative;
    border: 1px solid var(--bcc-border);
    transform: translateY(20px);
    transition: var(--bcc-transition);
}

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

.bcc-modal-close {
    position: absolute;
    top: 15px; right: 15px;
    background: none;
    border: none;
    color: var(--bcc-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.bcc-modal-close:hover {
    color: var(--bcc-white);
}

.bcc-modal-title {
    color: var(--bcc-primary);
    margin-bottom: 10px;
}

.bcc-modal-desc {
    color: var(--bcc-text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.bcc-input-group {
    margin-bottom: 20px;
}

.bcc-input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--bcc-white);
}

.bcc-input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,0.1);
    background-color: rgba(0,0,0,0.2);
    border-radius: 4px;
    color: var(--bcc-white);
    font-family: var(--bcc-font-body);
}

.bcc-input-group input:focus {
    outline: none;
    border-color: var(--bcc-primary);
}

.bcc-form-success {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ecc71;
    border-radius: 4px;
    color: #2ecc71;
    text-align: center;
}

/* COOKIE BANNER */
.bcc-cookie-banner {
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background-color: #030811;
    border-top: 1px solid var(--bcc-border);
    padding: 20px 0;
    z-index: 1500;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

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

.bcc-cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
}

.bcc-cookie-content p {
    font-size: 0.9rem;
    color: var(--bcc-text-muted);
}

.bcc-cookie-content a {
    color: var(--bcc-primary);
    text-decoration: underline;
}

.bcc-cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .bcc-hero-title { font-size: 3rem; }
    .bcc-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .bcc-footer-top { grid-template-columns: 1fr 1fr; }
    .bcc-ticket-popular { transform: none; }
}

@media (max-width: 768px) {
    .bcc-nav { display: none; }
    .bcc-mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .bcc-mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: var(--bcc-white);
    }
    .bcc-grid-3, .bcc-footer-top { grid-template-columns: 1fr; }
    .bcc-hero-title { font-size: 2.5rem; }
    .bcc-hero-features { flex-direction: column; gap: 15px; }
    .bcc-cookie-content { flex-direction: column; text-align: center; }
}

/* SWITCH TOGGLE */
.bcc-switch input:checked + .bcc-slider {
    background-color: var(--bcc-primary);
}
.bcc-switch .bcc-slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
.bcc-switch input:checked + .bcc-slider:before {
    transform: translateX(20px);
}
