:root {
    --dark: #0D0F17;
    --panel: #1A1C25;
    --card: #1F2235;
    --accent: #b30000;  
    --accent-hover: #e23a48;
    --text: #E6E7EB;
    --muted: #9EA0A7;
    --nav-height: 75px;
}

body {
    margin: 0;
    background: var(--dark);
    color: var(--text);
    font-family: 'Arial', sans-serif;
    padding-top: var(--nav-height);
}

.navbar {
    height: var(--nav-height);
    background: rgba(13, 15, 23, 0.92);
    border-bottom: 1px solid #2A2C36;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 6px rgba(255, 70, 85, 0.4));
}

.nav-brand {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: 2px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-size: 1rem;
    transition: .25s;
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--accent);
}

.hero-section {
    height: 100vh; 
    width: 100%;
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.hero-content {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}


.hero-title {
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 0 0 12px rgba(255, 70, 85, 0.5);
    font-family: Hazel Deco;
    letter-spacing: 2px;
}


.hero-subtitle {
    font-size: 1.2rem;
    color: var(--muted);
}

.section {
    padding: 75px 30px;
}

.section-title {
    font-size: 2.1rem;
    border-left: 5px solid var(--accent);
    padding-left: 12px;
    margin-bottom: 34px;
}


.featured-row {
    display: flex;
    overflow-x: auto;
    gap: 22px;
}

.featured-item {
    min-width: 360px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #2A2C36;
    transition: .3s;
}

.featured-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 18px rgba(255, 70, 85, 0.35);
}

.featured-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
}

.game-card {
    background: var(--card);
    border-radius: 12px;
    padding: 18px;
    transition: .28s;
    border: 1px solid transparent;
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(255, 70, 85, 0.25);
    border-color: rgba(255, 70, 85, 0.35);
}

.game-img {
    width: 100%;
    height: 135px;
    border-radius: 10px;
    object-fit: cover;
}

.game-name {
    margin: 10px 0 3px;
    font-weight: bold;
}

.game-info {
    color: var(--muted);
    font-size: .9rem;
}

.contact-form {
    max-width: 480px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-label {
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    background: var(--panel);
    border: 1px solid #2A2C36;
    padding: 14px;
    color: var(--text);
    border-radius: 8px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--accent);
}

.contact-btn {
    background: var(--accent);
    color: #fff;
    padding: 14px;
    border: none;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
}

.contact-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 70, 85, 0.35);
}

.footer {
    text-align: center;
    padding: 25px;
    color: var(--muted);
    border-top: 1px solid #2A2C36; 
    padding: 80px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
