/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #121212;
    color: #f1f1f1;
    line-height: 1.6;
}

.hidden {
    display: none !important;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Age Verification */
#age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.verification-box {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 2px solid #ff4081;
}

.verification-box h2 {
    color: #ff4081;
    margin-bottom: 15px;
    font-size: 24px;
}

.verification-box p {
    margin-bottom: 25px;
    font-size: 18px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.buttons button {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

#confirm-age {
    background-color: #ff4081;
    color: white;
}

#exit-site {
    background-color: #333;
    color: white;
}

.buttons button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Header */
header {
    background-color: #000;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #ff4081;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #f1f1f1;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

nav ul li a.active,
nav ul li a:hover {
    color: #ff4081;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #f1f1f1;
    font-size: 20px;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #ddd;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #ff4081;
    color: white;
}

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 64, 129, 0.4);
}

/* Categories Section */
.categories {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    color: #fff;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 64, 129, 0.2);
}

.category-icon {
    font-size: 50px;
    color: #ff4081;
    margin-bottom: 20px;
}

.category-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.category-card p {
    color: #aaa;
    margin-bottom: 20px;
}

/* Platforms Section */
.platforms {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.platform-card {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.platform-card i {
    font-size: 50px;
    color: #ff4081;
    margin-bottom: 20px;
}

.platform-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.platform-card p {
    color: #aaa;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: #000;
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #aaa;
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff4081;
}

.copyright {
    color: #666;
    font-size: 14px;
}

/* Responsividade */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
    }

    nav ul {
        margin: 20px 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}