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

/* Body and General Styling */
body {
    font-family: 'Unbounded', sans-serif;
    background-color: #121212;
    color: #fff;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Header */
header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header .logo {
    font-size: 28px;
    font-weight: 600;
    color: #e74c3c;
    letter-spacing: 2px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #e74c3c;
}

/* Hero Section */
.hero {
    background: url('horror_background.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: #fff;
    padding: 20px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hero button {
    background-color: #e74c3c;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 1px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero button:hover {
    background-color: #c0392b;
    transform: scale(1.05);
}

/* About Section */
.about {
    background-color: #1c1c1c;
    padding: 50px 20px;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.about img {
    width: 100%;
    max-width: 600px;
    border: 5px solid #444;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

/* Gameplay Section */
.gameplay {
    background-color: #222;
    padding: 50px 20px;
    text-align: center;
}

.gameplay h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.gameplay p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gameplay button {
    background-color: #e74c3c;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 1px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.gameplay button:hover {
    background-color: #c0392b;
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #111;
    padding: 30px 20px;
    text-align: center;
    color: #ddd;
}

footer .footer-content p {
    margin-bottom: 20px;
}

footer .social-media {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

footer .social-media a {
    color: #e74c3c;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

footer .social-media a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about h2, .gameplay h2 {
        font-size: 2rem;
    }

    .about p, .gameplay p {
        font-size: 1rem;
    }

    .about img {
        max-width: 100%;
    }

    footer .social-media {
        flex-direction: column;
    }
}