* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #003366, #0055aa);
    color: white;
    line-height: 1.7;
}

header {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(0, 0, 0, 0.4);
}

header h1 {
    font-size: 1.5rem;
    line-height: 1.4;
    color: white;
}

header p {
    opacity: 0.9;
}

main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

section {
    margin-bottom: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.card {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

ul {
    list-style: none;
    margin-top: 1rem;
}

ul li {
    background: rgba(255, 255, 255, 0.2);
    margin: 0.5rem 0;
    padding: 0.8rem;
    border-radius: 6px;
    font-weight: bold;
}

button {
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    background: #ffcc00;
    color: #003366;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #e6b800;
}

footer {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    margin-top: 3rem;
}

.result-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.stadium-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.text-content p {
    color: #ccc;
    margin-bottom: 1rem;
}

button {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    background: #ffcc00;
    color: #003366;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #e6b800;
}

#image-container {
    display: none;
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

#image-container img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}


.teams-container {
    border: 3px solid #ffffff;
    border-radius: 11px;
    padding: 1.5rem;
    margin: 3.0rem auto; /* ← поднято выше */
    max-width: 800px;
    background: #003366;
    text-align: center;
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.team-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.team-item p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: bold;
}

button {
    display: block;
    margin: 0.5rem auto;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    background: #ffcc00;
    color: #003366;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    width: 80%;
    max-width: 300px;
}

button:hover {
    background: #e6b800;
    transform: scale(1.05);
    transition: 0.2s;
}
.obzor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    background: #ffcc00;
    color: #003366;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    width: 180px; 
    height: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}

.obzor-button:hover {
    background: #e6b800;
    transform: scale(1.05);
}

header {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

header h1 {
    font-size: 2.2rem;
    color: #ffcc00;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(255, 0, 0, 0.6);
}

header p {
    font-size: 1.1rem;
    color: white;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}