* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Impact', 'Arial Black', sans-serif;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    padding: 3vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero {
    width: 100%;
    margin-bottom: 8vh;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image img {
    width: 650px;
    max-width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.hero-caption {
    margin-top: 12px;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    color: #ff5500;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
}

.artist-credit {
    margin-top: 12px;
    font-family: Arial, sans-serif;
    font-size: 0.85rem;
    color: #777;
    text-align: center;
}

.artist-credit a {
    color: #ff5500;
    text-decoration: none;
    transition: color 0.15s;
}

.artist-credit a:hover {
    color: #E4405F;
}

@media (max-width: 1100px) {
    .hero {
        flex-direction: column;
    }

    .hero-image img {
        width: 100%;
    }
}

h1 {
    font-size: 12vw; 
    line-height: 0.8;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.orange-text {
    color: #ff5500;
}

.content-area {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    width: 100%;
    font-family: Arial, sans-serif;
}

.block {
    flex: 1;
    min-width: 280px;
}

.block h2 {
    font-family: 'Impact', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.block p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #ffffff;
    font-weight: bold;
}

/* Games */

.games {
    margin-top: 8vh;
    width: 100%;
}

.games h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.game-list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.game-list iframe {
    border: none;
    max-width: 100%;
}


.featured-artwork {
    margin-top: 8vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.featured-artwork h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    align-self: flex-start;
}

.featured-artwork img {
    width: 650px;
    max-width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* Footer */

footer {
    margin-top: 8vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-tag {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #ff5500;
    letter-spacing: 2px;
}

.mail-giant {
    font-size: 7vw;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 0.9;
    transition: color 0.1s ease;
}

.mail-giant:hover {
    color: #ff5500;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-top: 30px;
}

.social-links a {
    color: white;
    font-size: 2rem;
    transition: 0.15s;
}

.social-links a:hover {
    transform: translateY(-2px);
}

/* YouTube */
.social-links .youtube:hover {
    color: #ff0000;
}

/* itch.io */
.social-links .itch:hover {
    color: #fa5c5c;
}

.copyright {
    margin-top: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    color: #777;
}

@media (max-width: 768px) {
    h1 { font-size: 16vw; }
    .mail-giant { font-size: 10vw; }
    .content-area { gap: 40px; }
}