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

:root {
    --primary: #81D4FA;
    --primary-hover: #4FC3F7;
    --bg-dark: #01579B;
    --bg-card: #0277BD;
    --text-white: #E1F5FE;
    --text-muted: #B3E5FC;
    --live-red: #EF4444;
    --container-width: 1200px;
    --font-heading: 'Quicksand', sans-serif;
    --font-body: 'Quicksand', 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: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.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.3);
}

/* Header */
header {
    padding: 24px 0;
    background-color: var(--bg-dark);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.05em;
}

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

header nav a {
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s;
}

header nav a:hover {
    color: var(--text-white);
}

/* Hero Split */
.hero-split {
    display: flex;
    min-height: 70vh;
    background-color: var(--bg-dark);
}

.hero-text-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.hero-content {
    max-width: 500px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-image-side {
    flex: 1;
    background-color: var(--bg-card);
}

.hero-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Sports Toolbar */
.sports-toolbar {
    background-color: var(--bg-card);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sports-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.sport-tag {
    background-color: var(--bg-dark);
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s;
    cursor: default;
}

.sport-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Live Events List */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.event-list-item {
    background-color: var(--bg-card);
    padding: 24px 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.event-list-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-badges {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge {
    padding: 4px 8px;
    border-radius: 4px;
    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;
}

.odds {
    display: flex;
    gap: 10px;
}

.odd {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 12px 24px;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 100px;
    justify-content: center;
}

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

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

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

/* Features Zigzag */
.features-zigzag-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.feature-zigzag {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-zigzag.reversed {
    flex-direction: row-reverse;
}

.feature-icon-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon {
    font-size: 5rem;
    background: rgba(255,255,255,0.02);
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
}

.feature-text {
    flex: 2;
}

.feature-text h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.feature-text 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-split {
        flex-direction: column;
    }
    .hero-image-side {
        min-height: 400px;
    }
    .hero-text-side {
        text-align: center;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    header nav {
        display: none;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .event-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .odds {
        width: 100%;
    }
    .odd {
        flex: 1;
    }
    .feature-zigzag, .feature-zigzag.reversed {
        flex-direction: column;
        text-align: center;
    }
    .rg-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
