@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;800&family=PT+Sans:wght@400;700&display=swap');

:root {
    --primary: #D4AF37;
    --primary-hover: #C5A017;
    --bg-dark: #1B5E20;
    --bg-card: #2E7D32;
    --text-white: #E8F5E9;
    --text-muted: #A5D6A7;
    --live-red: #EF4444;
    --container-width: 1200px;
    --font-heading: 'Cinzel', sans-serif;
    --font-body: 'Cinzel', serif, 'PT Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section {
    padding: 100px 0;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-align: center;
    min-height: 44px;
}

.btn-primary {
    background-color: var(--primary);
    color: 'var(--bg-dark)';
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Header */
.transparent-header {
    padding: 24px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.05em;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.transparent-header nav ul {
    display: flex;
    gap: 32px;
}

.transparent-header nav a {
    font-weight: 600;
    color: #FFFFFF;
    transition: color 0.3s;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

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

/* Hero Dynamic */
.hero-dynamic {
    min-height: 85vh;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%), url('hero-image.jpg') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    color: #FFFFFF;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    opacity: 0.9;
}

/* Marquee */
.marquee-container {
    background-color: var(--primary);
    color: 'var(--bg-dark)';
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-top: 2px solid rgba(0,0,0,0.1);
    border-bottom: 2px solid rgba(0,0,0,0.1);
}

.marquee-track {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-right: 50px;
}

.marquee-item::after {
    content: "•";
    margin-left: 50px;
    opacity: 0.5;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Carousel */
.carousel-controls {
    display: flex;
    gap: 10px;
}

.ctrl-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--bg-card);
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctrl-btn:hover {
    background-color: var(--primary);
    color: 'var(--bg-dark)';
    border-color: var(--primary);
}

.carousel-wrapper {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.carousel-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.badge {
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-live {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--live-red);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.sport {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.teams {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 30px;
    min-height: 3em;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.odds {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.odd {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 14px 8px;
    text-align: center;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.odd:hover {
    background-color: var(--primary);
    color: 'var(--bg-dark)';
    border-color: var(--primary);
}

.odd span {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.75rem;
}

.odd:hover span {
    color: rgba(0, 0, 0, 0.6);
}

/* Features Numbered */
.features-num-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-num-card {
    display: flex;
    gap: 30px;
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-num-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.feature-num {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    font-family: var(--font-heading);
    opacity: 0.8;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.feature-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Footer & RG */
.footer {
    background-color: #050C16;
}

.responsible-gambling {
    background-color: #111827;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rg-content {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.rg-icon {
    font-size: 2.5rem;
}

.rg-text h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.rg-text p {
    color: #9CA3AF;
    font-size: 14px;
    max-width: 800px;
    opacity: 0.9;
}

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

.footer-bottom {
    padding: 40px 0;
    text-align: center;
    color: #9CA3AF;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .transparent-header nav {
        display: none;
    }
    .hero-dynamic {
        min-height: 70vh;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .section-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .features-num-grid {
        grid-template-columns: 1fr;
    }
    .feature-num-card {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
    }
    .rg-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
