* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
}

.logo {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 3px;
}

.discord svg {
    width: 26px;
    height: 26px;
    fill: #fff;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.discord:hover svg {
    opacity: 1;
}

.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6)), 
                #1a1a1a;
    display: flex;
    align-items: flex-end;
    padding: 100px 50px;
}

.hero-content {
    max-width: 900px;
}

.game-logo {
    font-size: 72px;
    font-weight: bold;
    margin-bottom: 25px;
    letter-spacing: 4px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 700px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn {
    padding: 15px 40px;
    border: none;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s;
    cursor: pointer;
    border-radius: 30px;
    display: inline-block;
}

.btn:hover {
    background: #ddd;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.platforms {
    display: flex;
    gap: 25px;
    margin-top: 25px;
    align-items: center;
}

.platform-icon {
    opacity: 0.7;
    transition: opacity 0.3s;
}

.platform-icon:hover {
    opacity: 1;
}

.platform-icon img {
    height: 35px;
    filter: brightness(0) invert(1);
}

.content-section {
    padding: 80px 50px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: bold;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.feature-card {
    background: #111;
    padding: 40px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-card p {
    opacity: 0.7;
    line-height: 1.6;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.screenshot {
    height: 350px;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
}

.contact-section {
    padding: 100px 50px;
    text-align: center;
    background: #0a0a0a;
}

.contact-section h2 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: bold;
}

.contact-section a {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
}

.contact-section a:hover {
    opacity: 0.7;
}

footer {
    padding: 50px;
    text-align: center;
    border-top: 1px solid #111;
    font-size: 13px;
    opacity: 0.5;
}

footer a {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 968px) {
    .game-logo {
        font-size: 48px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    nav {
        padding: 20px 30px;
    }
    .hero-section {
        padding: 80px 30px;
    }
    .content-section {
        padding: 60px 30px;
    }
}
