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

body {
    font-family: 'Orbitron', sans-serif;
    background-color: #0e0b16;
    color: #fff;
    line-height: 1.6;
}

/* Header - Fullscreen Hero */
.fullscreen {
    position: relative;
    background: url('/images/background.webp') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    text-align: center;
}

.main-title {
    font-size: 5rem;
    color: #f72585;
}

.sub-title {
    font-size: 1.5rem;
    color: #fff;
    margin-top: 10px;
}

.discover-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background-color: #7209b7;
    color: #fff;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
}

/* Discover Section */
.discover-section {
    padding: 80px 20px;
    background-color: #1a1120;
    text-align: center;
}

.discover-section h2 {
    color: #ff006e;
    font-size: 3rem;
    margin-bottom: 20px;
}

.flex-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.image-container img {
    border-radius: 15px;
}

.text-container {
    width: 50%;
}

.features-list {
    list-style: none;
    margin-top: 20px;
    padding-left: 0;
}

.features-list li {
    font-size: 1.2rem;
    color: #ff006e;
    margin-bottom: 10px;
}

/* Games Section */
.games-section {
    padding: 60px 20px;
    background-color: #2d1534;
}

.games-section h2 {
    color: #f72585;
    text-align: center;
    font-size: 3rem;
}

.games-grid {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

.game-card {
    background-color: #3a0c46;
    padding: 20px;
    border-radius: 15px;
    width: 30%;
    text-align: center;
}

.game-card img {
    width: 100%;
    border-radius: 10px;
}

.game-card h3 {
    color: #7209b7;
    margin-top: 10px;
}

/* Community Section */
.community-section {
    padding: 80px 20px;
    background-color: #1a1120;
    text-align: center;
}

.community-section h2 {
    color: #ff006e;
    font-size: 3rem;
    margin-bottom: 20px;
}

.community-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.join-button {
    padding: 15px 30px;
    background-color: #f72585;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: #1a1120;
    padding: 40px 0;
    text-align: center;
}

footer h3 {
    color: #f72585;
    font-size: 2rem;
    margin-bottom: 10px;
}

.social-links {
    list-style: none;
    padding-left: 0;
}

.social-links li {
    display: inline-block;
    margin: 0 10px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-links a:hover {
    color: #ff006e;
}
