:root {
    --bg-color: #eee;
    --card-bg: #f5f5f5;
    --pill-bg: linear-gradient(to top, #ededed, #f5f5f5);
    --text-gray: #828282;
    --accent-orange: #ffb300;
    --shadow: 0px 5px 15px rgba(0,0,0,0.2);
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-color);
    background-image: radial-gradient(circle at 2px 2px, #f7f7f7 2px, transparent 0), radial-gradient(circle at 2px 2px, #f7f7f7 2px, transparent 0);
    background-size: 12px 12px;
    background-position: 0px 0px, 6px 6px;
    font-family: 'RodinNTLG', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    cursor: default;
}

@font-face {
    font-family: RodinNTLG;
    src: url('../FOT-RodinNTLG Pro DB.otf');
}

@font-face {
    font-family: MarvelouzTubeFont3;
    src: url('../MarvelouzTube Font 3.ttf')
}

.nintendoufont {
    font-family: MarvelouzTubeFont3;
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.top-button {
    position: relative;
    bottom: 70px;
    width: 90%;
    max-width: 1150px;
    height: 140px;
    font-size: 30px;
    background: linear-gradient(to top, #fff, #e6e6e6);
    color: var(--text-gray);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow);
    text-shadow: 1px 1px white;
    cursor: pointer;
    font-family: 'MarvelouzTubeFont3';
}

#header-text {
    position: relative;
    top: 32.5px;
}

.main-container {
    width: 95%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding-bottom: 50px;
}

.top-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
}

.content-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 1 1 350px;
    max-width: 540px;
}

.video-wrapper {
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#vid {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    background: #000;
}

#vidtext {
    margin-top: 10px;
    color: var(--text-gray);
    text-shadow: 1px 1px white;
    font-size: 18px;
}

.info-card {
    background: #f5f5f5;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.download-card {
    flex: 1 1 350px;
    max-width: 500px;
    height: fit-content;
}

.extra-info-card {
    width: 100%;
    max-width: 900px;
}

.card-header {
    padding: 15px;
    background: linear-gradient(to top, #ededed, #fff);
    text-align: center;
    font-size: 22px;
    color: var(--accent-orange);
    border-bottom: 1px solid #ddd;
    text-shadow: 1px 1px #eee;
}

.card-body {
    padding: 25px;
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
}

.info-list {
    padding-left: 20px;
    margin: 0;
}

.info-list li {
    margin-bottom: 10px;
}

.textlink {
    color: blue;
    cursor: pointer;
    text-decoration: underline;
}

.pill-button {
    background: var(--pill-bg);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    color: var(--accent-orange);
    font-size: 20px;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s ease;
    width: fit-content;
    min-width: 250px;
}

.pill-button:hover {
    transform: scale(1.05);
}

.pill-button:active {
    transform: scale(0.95);
}

.footer-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 900px;
    padding: 20px 0;
    gap: 30px;
}

#credits {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-gray);
    text-align: left;
    line-height: 1.8;
}

@media (max-width: 800px) {
    .footer-layout {
        flex-direction: column;
        text-align: center;
    }
    
    #credits {
        text-align: center;
    }

    .info-card {
        width: 100%;
    }

    .top-button {
        position: relative;
        bottom: 70px;
        width: 90%;
        max-width: 1150px;
        height: 140px;
        font-size: 30px;
        background: linear-gradient(to top, #fff, #e6e6e6);
        color: var(--text-gray);
        border: none;
        border-radius: 0 0 15px 15px;
        box-shadow: var(--shadow);
        text-shadow: 1px 1px white;
        cursor: pointer;
        font-family: 'MarvelouzTubeFont3';
    }
    #header-text {
        position: relative;
        top: 32.5px;
    }
    
}

.pfp {
    width: 20px;
    border-radius: 50px;
    position: relative;
    top: 3px;
    box-shadow: 1px 1px white;
}

iframe {
    width: 100%;
    height: 100vh;
    border: none;
    position: absolute;
}

#audiobutton {
    position: absolute;
}

#hidden {
    opacity: 0;
}

.start {
    width: 250vw;
    height: 250vw;
    opacity: 0.5;
    background-color: black;
    border: none;
    position: relative;
    bottom: 50px;
}

footer {
    color: var(--text-gray);
    text-shadow: 2px 2px white;

}





