* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 0 !important;
}

:root {
    --blue: #004ecc;
    --black: #000000;
    --white: #ffffff;
    --light-gray: #f2f2f2;
}

body {
    background-color: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

.navbar {
    background: var(--black);
    color: var(--white);
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 5px solid var(--blue);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-logo {
    height: 40px;
}

.brand-text {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -1px;
}

.menu a {
    color: var(--white);
    text-decoration: none;
    margin-left: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.2s;
}

.menu a:hover {
    color: var(--blue);
}

.btn-contact {
    border: 3px solid var(--blue);
    padding: 10px 20px !important;
}

.main-hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('hero_bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    width: 100%;
    padding: 0 100px;
}

.hero-inner {
    max-width: 800px;
}

.hero-inner h1 {
    color: var(--white);
    font-size: 80px;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 25px;
}

.hero-inner p {
    color: var(--white);
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 35px;
    border-left: 5px solid var(--blue);
    padding-left: 20px;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 900;
    display: inline-block;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--blue);
    transform: translateY(-5px);
}

.content-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.section-head {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.game-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.game-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--light-gray);
    border: 4px solid var(--black);
}

.image-wrapper {
    position: relative;
    height: 400px;
    border-right: 4px solid var(--black);
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-tag {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--black);
    color: var(--white);
    padding: 10px 20px;
    font-weight: 800;
    font-size: 14px;
}

.game-info {
    padding: 50px;
}

.game-header {
    margin-bottom: 25px;
}

.game-header h3 {
    font-size: 32px;
    font-weight: 900;
    color: var(--blue);
}

.genre {
    font-size: 13px;
    font-weight: 700;
    color: #666;
    display: block;
    margin-top: 5px;
}

.feature-list {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.feature-list span {
    font-weight: 800;
    color: var(--black);
    border-bottom: 2px solid var(--blue);
}

.mission-section {
    background: var(--black);
    color: var(--white);
    padding: 120px 0;
}

.mission-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    padding: 0 20px;
}

.slogan-text {
    font-size: 42px;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 30px;
    line-height: 1.1;
}

.mission-text p {
    font-size: 18px;
    color: #aaa;
}

.stat-box {
    border-left: 4px solid var(--blue);
    padding-left: 25px;
    margin-bottom: 40px;
}

.num {
    display: block;
    font-size: 45px;
    font-weight: 900;
}

.txt {
    color: var(--blue);
    font-weight: 700;
    text-transform: uppercase;
}

.final-footer {
    background: #000;
    color: #fff;
    padding: 60px 0;
    border-top: 1px solid #222;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.footer-logo {
    height: 35px;
    margin-bottom: 15px;
}

.social-links span {
    margin-left: 40px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}