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

body {
    font-family: 'Lato', sans-serif;
    background-color: #002841;
    color: #c8fbfe;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem 2rem 1.5rem;
}

header {
    margin-bottom: 3rem;
    text-align: center;
}

.banner {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.profile-section {
    text-align: center;
    margin-bottom: 1rem;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid #fb922b;
}

h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: #c8fbfe;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #c8fbfe;
    margin-bottom: 1.5rem;
    text-align: center;
}

.bio-section {
    margin-bottom: 4rem;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bio-section p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #c8fbfe;
    line-height: 1.8;
}

.games-section {
    margin-bottom: 4rem;
    text-align: center;
}

.game-embed {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.game-embed iframe {
    border-radius: 8px;
}

.social-section {
    margin-bottom: 3rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: #fb922b;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    transition: opacity 0.3s ease;
    text-transform: capitalize;
}

.social-links a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(200, 251, 254, 0.2);
    margin-top: 0;
}

footer p {
    color: #c8fbfe;
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .bio-section p {
        font-size: 1rem;
    }

    .game-embed iframe {
        width: 100%;
        max-width: 552px;
        height: 167px;
    }

    .social-links {
        gap: 1rem;
    }

    .social-links a {
        font-size: 1rem;
    }
}
