/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #E6E9EB;
    color: #000;
    line-height: 1.6;
    font-weight: 500;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header */
.header {
    margin-bottom: 2rem;
    padding-top: 2rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.logo {
    width: 61px;
    height: auto;
}

h1 {
    font-size: 2rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

h2 {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1rem;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.grid-item {
    width: 100%;
}

/* Video Container */
.video-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: black;
    width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Center content */
.center-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}

/* Section spacing */
.section {
    margin-bottom: 3rem;
}

/* Livestream Section */
.livestream-container {
    max-width: 920px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.livestream-container h2 {
    text-align: center;
    margin: 2rem 0 1rem 0;
}

.livestream-text {
    text-align: center;
    color: #666;
    margin-top: 1rem;
    font-size: 0.75rem;
}

/* Footer and hidden link */
.footer-container {
    display: flex;
    justify-content: flex-end;
    padding: 0 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.external-link {
    font-size: .002rem;
    color: #E6E9EB;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 1rem;
    }
}
