/* --- GLOBAL --- */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #2a5c3b;
    color: #f5f5f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow-x: hidden;
}

/* ACCESSIBILITY */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* LOGO */
.logo {
    width: 250px;
    max-width: 80%;
    margin-bottom: 0rem;
    animation: fadeIn 1s ease-in;
}

/* HEADERS / TEXT */
h2 {
    font-size: 1.5rem;
    margin: 0rem 0 1rem 0;
    color: #fff;
}

p {
    max-width: 600px;
    margin: 0 auto 0rem auto;
    line-height: 1.6;
    color: #ccc;
}

/* SOCIAL LINKS */
.links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 250px;
    max-width: 80%;
}

.links a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #9a4ca2;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
}

.links a:hover {
    background: #793578;
    transform: scale(1.05);
}

/* TOP RIGHT BUTTON */
.top-right-buttons {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
	margin: 0 6px;
    z-index: 2000;
}

.top-right-buttons a {
    padding: 0.7rem 1.2rem;
    background: #9a4ca2;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
}

.secret-button {
    margin-top: 1rem;
    padding: 1rem;
    font-size: 0.9rem;
    color: #777;
    text-decoration: none; /* remove underline */
}

.secret-button:hover {
    color: #888; /* slightly lighter on hover */
}

.top-right-buttons a:hover {
    background: #793578;
    transform: scale(1.05);
}

/* CONTACT BUTTON */
.contact-button {
    width: 250px;
    max-width: 80%;
    padding: 1rem;
    background: #bd8122;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    text-decoration: none;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: bold;
}

.contact-button:hover {
    background: #85634d;
    transform: scale(1.05);
}

/* FOOTER */
footer {
    margin-top: 1rem;
    padding: 1rem;
    font-size: 0.9rem;
    color: #777;
}

/* --- EMBEDS SIDEBAR (DESKTOP) --- */
.embeds-left,
.embeds-right {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.embeds-left { left: 10px; }
.embeds-right { right: 10px; }

/* Standard embed size */
.embeds-left iframe,
.embeds-right iframe {
    width: 552px;
    height: 167px;
    border-radius: 6px;
    border: none;
}

/* Steam embed needs scaling */
.steam-embed-container {
    width: 552px;
    height: 167px;
    overflow: hidden;
    border-radius: 6px;
}

.steam-embed-container iframe {
    width: 646px;
    height: 190px;
    transform: scale(0.87);
    transform-origin: top left;
    border: none;
}

/* --- MOBILE INLINE EMBEDS --- */
@media (max-width: 900px) {

    body {
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
    }

    .embeds-left,
    .embeds-right {
        position: static !important;
        transform: none !important;
        width: 100%;
        display: flex;
        align-items: center;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .embeds-left iframe,
    .embeds-right iframe,
    .steam-embed-container {
        width: 90vw !important;
        max-width: 600px;
        height: auto;
    }

    .steam-embed-container iframe {
        width: 100% !important;
        height: 190px !important;
        transform: none !important;
    }
}

/* ANIMATION */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
