:root {
    --sc-blue: #004694;
    --sc-yellow: #ffcc00;
    --sc-dark: #1a1a1a;
    --white: #ffffff;
    --gray: #f4f4f4;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: var(--gray);
    color: var(--sc-dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background: var(--sc-blue);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { color: white; font-weight: 800; text-decoration: none; font-size: 1.4rem; }
.logo span { color: var(--sc-yellow); }

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

nav a:hover { color: var(--sc-yellow); }

.cta-nav {
    background: var(--sc-yellow);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--sc-dark) !important;
}

.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    flex: 1;
}

h1 { color: var(--sc-blue); margin-bottom: 20px; font-size: 2.2rem; }

footer {
    background: var(--sc-dark);
    color: white;
    padding: 50px 5% 20px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-section h3 {
    color: var(--sc-yellow);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Стили для страницы покупки */
.ticket-option {
    border: 2px solid var(--sc-blue);
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    margin-bottom: 10px;
}
.ticket-option.active { background: var(--sc-blue); color: white; }
input[type="text"], input[type="email"] {
    width: 100%; padding: 12px; margin: 10px 0; border: 1px solid #ccc; border-radius: 5px;
}
.btn-submit {
    background: var(--sc-yellow); width: 100%; padding: 15px; border: none; 
    font-weight: 800; cursor: pointer; border-radius: 5px; text-transform: uppercase;
}