body {
    font-family: 'VT323', monospace;
    font-size: 20px;
    background-color: #C7B7A3;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 12px;
    margin-top: 2rem;
}

.hero img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid white;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin: 1rem auto;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 12px;
}

@media (max-width: 640px) {
    .social-icons {
        max-width: 250px;
        padding: 0.5rem;
    }
}

.social-icons a {
    color: white;
    font-size: 2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #1da1f2;
}

section {
    margin-top: 2rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section h1 {
    min-height: 2.5rem; /* Ensures all titles have equal height */
}

iframe {
    margin-top: 1rem;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 0.5rem 0;
}

ul a {
    color: #007acc;
    text-decoration: none;
}

ul a:hover {
    text-decoration: underline;
}

.iframe-container {
    position: relative;
    width: 100%;
    max-width: 560px; /* Ensures it doesn’t exceed original size */
    aspect-ratio: 16 / 9; /* Maintains aspect ratio */
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.visitor-welcome {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.visitor-welcome p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

@media (max-width: 640px) {
    .visitor-welcome {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}