
:root{
	--bg-dark: #111827;
	--bg-grey: #374151;
	--text-white: #ffffff;
	--text-accent: #fbbf24;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body, html {
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.desktop__container {
    background-color: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
}

.header {
	background-color: var(--bg-grey);
	width: 100%;
	padding: 1rem;
    display: flex;
    justify-content: space-between;
}

.header__navigation {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem;
}

.header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0.5rem;
}

.header__logo img {
    width: 128px;
    height: auto
}

.header__beta-text {
    font-size: 0.75rem;
    color: var(--text-accent);
    font-weight: bold;
    margin-left: 0.5rem;
}

.header__nav-options {
    color: var(--text-white);
    list-style: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.header__nav-item {
    cursor: pointer;
}

.header__nav-item:hover {
    color: var(--text-accent);
    transition: color 0.3s ease;
}

.header__nav-link {
    text-decoration: none;
    color: inherit;
    font-weight: 600;
}

.container {
    background-color: var(--bg-dark);
    color: var(--text-white);
    width: 100%;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero {
    width: 100%;
    height: min(100vh, 800px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 5rem;
    background-image: url('./Marvel-Rivals-Key-Art.webp');
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero__logo {
    width: 800px;
    height: auto;
    margin-bottom: 1rem;
    animation: fade-in-up 0.5s ease forwards;
    opacity: 0;
}

.hero__subtitle {
    font-size: 1rem;
    color: var(--text-white);
    text-align: center;
    font-weight: 500;
    animation: fade-in-up 0.5s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero__links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.hero__link {
    padding: 1rem;
    background-color: var(--text-accent);
    color: var(--bg-dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.1s ease, color 0.1s ease;
    border: 2px solid transparent;
    animation: fade-in-up 0.5s ease forwards;
    animation-delay: 0.4s;
    cursor: pointer;
    opacity: 0;
}

.hero::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.9) 100%, rgba(0,0,0,0.5) 35%, rgba(0,0,0,0) 75%);
}

.hero > * { position: relative; z-index: 2; }

.hero__logo { width: min(80%, 800px); }

.hero__link:hover {
    background-color: var(--bg-dark);
    color: var(--text-accent);
    border: 2px solid var(--text-accent);
}

.footer {
    background-color: var(--bg-grey);
    width: 100%;
    padding: 1rem 0;
    text-align: center;
    font-size: 1rem;
    color: var(--text-white);
}

.footer__disclaimer {
    font-size: 0.875rem;
    color: var(--text-white);
}

.footer__link {
    color: var(--text-accent);
    text-decoration: none;
}

.footer__link:hover {
    text-decoration: underline;
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}