/* Variables */
:root {
    --saudade-blue: #69D4F5;
    --io-gradient-color-1: #191919;
    --io-gradient-color-2: #2c2c2c;
    --io-hover-color: #DDDDDD80;
}

/* Default settings */
h1 {
    font-size: 30px;
}

body {
    font-family: monospace;
    background-color: black;
    color: white;
}

body::selection {
    background-color: var(--saudade-blue);
    color: black;
}

body::-moz-selection {
    background-color: var(--saudade-blue);
    color: black;
}

/* Specific Game Displays */
.wor-display {
    border-top: 1px solid white;
    text-align: center;
    background-image: url(imgs/WOR-Background-Img.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.io-display {
    border-top: 1px solid white;
    text-align: center;
    background-image: url(imgs/IO-Background-Img.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.io-background {
    background-image: linear-gradient(to bottom, var(--io-gradient-color-1) 55%, var(--io-gradient-color-2));
}

.io-background-footer {
    background-image: linear-gradient(to bottom, var(--io-gradient-color-2), black 75%);
}

.tmp-early-access {
    font-size: 14px;
}

/* Default display */
.game-display {
    display: grid;
    justify-content: center;
    border-top: 1px solid white;
    text-align: center;
}

/* Pages */
.header {
    position: sticky;
    display: flex;
    align-items: center;
    top: 0;
    z-index: 100;
    background-color: black;
}

.legal-page {
    font-size: 17px;
}

.footer {
    padding-left: 10px;
    border-top: 1px solid white;
    font-size: 25px;
}

.logo-footer {
    width: 700px;
    height: 700px;
}

.copyright {
    display: grid;
    justify-content: center;
    border-top: 1px solid white;
    font-size: 20px;
    text-align: center;
}

/* Buttons */
.btn {
    padding: 16px 15px;
    margin: 20px;
    font-size: 20px;
    border-radius: 15px;
}

.anchor-btn {
    color: white;
    text-decoration: none;
}

.social-media-btn {
    color: white;
    display: inline-flex;
    padding: 3px 10px;
    text-decoration: none;
    font-size: 18px;
    margin-bottom: 10px;
    border: transparent;
    background-color: transparent;
    border-radius: 50px;
    transition: all 0.2s ease-in-out;
}

.saudade-logo-btn {
    width: 150px;
    height: 150px;
}

/* Specific game buttons */
.iron-btn {
    border: transparent;
    background-color: transparent;
    color: white;
}

.wor-btn {
    border: solid black;
    background-color: transparent;
    color: white;
}

.iron-anchor-btn {
    color: white;
    display: inline-flex;
    padding: 3px 10px;
    text-decoration: none;
    font-size: 18px;
    margin-bottom: 10px;
    border: transparent;
    background-color: transparent;
    border-radius: 7px;
}

.wor-anchor-btn {
    color: white;
    display: inline-flex;
    padding: 3px 10px;
    text-decoration: none;
    font-size: 18px;
    margin-bottom: 10px;
    border: solid black;
    background-color: transparent;
    border-radius: 7px;
}

/* Images */
.game-img {
    position: relative;
    width: 40%;
    height: 40%;
    margin-top: 40px;
    animation: game-img 1s;
}

@keyframes game-img {
    from {
        opacity: 0%;
        right: 30px;
    }

    to {
        opacity: 100%;
        right: 0px;
    }
}

/* Hover effects */
.social-media-btn:hover {
    color: black;
    background-color: var(--saudade-blue);
}

.iron-btn:hover {
    background-color: var(--io-hover-color);
}

.wor-btn:hover {
    border-color: white;
}

.iron-anchor-btn:hover {
    background-color: var(--io-hover-color);
}

.wor-anchor-btn:hover {
    border-color: white;
}

/* Responsive design */
@media (max-width: 1920px) {
    .btn {
        padding: 16px 15px;
        font-size: 20px;
        border-radius: 15px;
    }
}

@media (max-width: 1500px) {
    .legal-page {
        font-size: 15px;
    }

    .copyright {
        display: grid;
        justify-content: center;
        border-top: 1px solid white;
        font-size: 18px;
        text-align: center;
    }

    .logo-footer {
        width: 620px;
        height: 620px;
    }

    .saudade-logo-btn {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 920px) {
    h1 {
        font-size: 20px;
    }

    .saudade-logo-btn {
        width: 120px;
        height: 120px;
    }

    .btn {
        padding: 16px 15px;
        font-size: 17px;
        border-radius: 15px;
    }

    .footer {
        border-top: 1px solid white;
        font-size: 20px;
    }

    .copyright {
        display: grid;
        justify-content: center;
        border-top: 1px solid white;
        font-size: 15px;
        text-align: center;
    }

    .logo-footer {
        width: 450px;
        height: 450px;
    }

    .tmp-early-access {
        font-size: 12px;
    }
}

@media (max-width: 530px) {
    h1 {
        font-size: 18px;
    }

    .saudade-logo-btn {
        width: 100px;
        height: 100px;
    }

    .btn {
        padding: 16px 15px;
        font-size: 16px;
        border-radius: 15px;
    }

    .footer {
        border-top: 1px solid white;
        font-size: 18px;
    }

    .copyright {
        display: grid;
        justify-content: center;
        border-top: 1px solid white;
        font-size: 13px;
        text-align: center;
    }

    .logo-footer {
        width: 400px;
        height: 400px;
    }

    .legal-page {
        font-size: 12px;
    }

    .social-media-btn {
        color: white;
        display: inline-flex;
        padding: 3px 10px;
        text-decoration: none;
        font-size: 16px;
        margin-bottom: 10px;
        border: transparent;
        background-color: transparent;
        border-radius: 50px;
        transition: all 0.2s ease-in-out;
    }

    .iron-anchor-btn {
        color: white;
        display: inline-flex;
        padding: 3px 10px;
        text-decoration: none;
        font-size: 16px;
        margin-bottom: 10px;
        border: transparent;
        background-color: transparent;
        border-radius: 7px;
    }

    .wor-anchor-btn {
        color: white;
        display: inline-flex;
        padding: 3px 10px;
        text-decoration: none;
        font-size: 16px;
        margin-bottom: 10px;
        border: solid black;
        background-color: transparent;
        border-radius: 7px;
    }

    .game-img {
        position: relative;
        width: 40%;
        height: 40%;
        margin-top: 20px;
        animation: game-img 1s;
    }

    .tmp-early-access {
        font-size: 10px;
    }
}

@media (max-width: 430px) {
    .saudade-logo-btn {
        width: 80px;
        height: 80px;
    }

    .logo-footer {
        width: 350px;
        height: 350px;
    }

    .social-media-btn {
        color: white;
        display: inline-flex;
        padding: 3px 10px;
        text-decoration: none;
        font-size: 14px;
        margin-bottom: 10px;
        border: transparent;
        background-color: transparent;
        border-radius: 50px;
        transition: all 0.2s ease-in-out;
    }

    .iron-anchor-btn {
        color: white;
        display: inline-flex;
        padding: 3px 10px;
        text-decoration: none;
        font-size: 14px;
        margin-bottom: 10px;
        border: transparent;
        background-color: transparent;
        border-radius: 7px;
    }

    .wor-anchor-btn {
        color: white;
        display: inline-flex;
        padding: 3px 10px;
        text-decoration: none;
        font-size: 14px;
        margin-bottom: 10px;
        border: solid black;
        background-color: transparent;
        border-radius: 7px;
    }
}