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

:root {
    --color-primary: #1a1a2e;
    --color-accent: #e94560;
    --color-bg: #f8f9fa;
    --color-text: #222;
    --color-muted: #666;
    --color-white: #fff;
    --max-width: 720px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Header */
header {
    text-align: center;
}

.logo-placeholder h1 {
    font-size: 1.75rem;
    color: var(--color-primary);
}

.subtitle {
    margin-top: 0.5rem;
    color: var(--color-muted);
    font-size: 1rem;
}

/* Schedule */
.schedule h2,
.video h2,
.contact h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.matches {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.match {
    background: var(--color-white);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.match .date {
    font-weight: 600;
    color: var(--color-primary);
}

.match .time {
    font-size: 0.9rem;
    color: var(--color-muted);
}

.match .opponent {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-accent);
}

/* Watch Now */
.watch-now {
    text-align: center;
    padding: 1rem 0;
}

.btn-watch {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

.btn-watch:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(233, 69, 96, 0.4);
}

.btn-watch:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
}

/* Video */
.video-placeholder {
    background: var(--color-white);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    color: var(--color-muted);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Contact */
.contact {
    text-align: center;
}

.contact a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    color: var(--color-muted);
    font-size: 0.85rem;
    border-top: 1px solid #e0e0e0;
    padding-top: 1.5rem;
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        padding: 1.5rem 1rem;
    }

    .logo-placeholder h1 {
        font-size: 1.4rem;
    }

    .btn-watch {
        font-size: 1.1rem;
        padding: 0.85rem 2rem;
    }
}
