* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    color: #fff;
    overflow-x: hidden;
}

.navbar {
    background: rgba(0, 0, 0, 0.9);
    padding: 0;
    height: 100px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 80%;
}

.logo {
    max-width: 150px;
}

.nav-container {
    gap: 20px;
}

.nav-link.dropbtn {
    color: #fff !important;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 20px;
    transition: color 0.3s;
}

.nav-link.dropbtn:hover {
    color: #ff3333 !important;
}

.dropdown-menu {
    background-color: #333;
    border: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.dropdown-item {
    color: #fff;
    font-size: 16px;
    padding: 12px 16px;
    transition: background-color 0.3s;
}

.dropdown-item:hover {
    background-color: #ff3333;
    color: #fff;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.nav-button {
    padding: 8px 15px;
    font-size: 16px;
    transition: transform 0.3s;
}

.nav-button.discord {
    background-color: #5865F2;
    border-color: #5865F2;
}

.nav-button.discord:hover {
    background-color: #4752C4;
    border-color: #4752C4;
    transform: scale(1.05);
}

.nav-button.auth {
    background-color: #ff3333;
    border-color: #ff3333;
}

.nav-button.auth:hover {
    background-color: #e60000;
    border-color: #e60000;
    transform: scale(1.05);
}

.hero {
    height: 100vh;
    padding: 0 20px;
}

.hero h1 {
    font-size: 48px;
    color: #ff3333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 20px;
    color: #00ff00;
    margin-bottom: 30px;
}

.cta-button {
    padding: 15px 30px;
    background-color: #ff3333;
    border-color: #ff3333;
    color: #fff;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #e60000;
    border-color: #e60000;
    transform: scale(1.05);
}

.content-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 36px;
    color: #ff3333;
    margin-bottom: 30px;
}

.category-content {
    background: #333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.category-content h3 {
    font-size: 28px;
    color: #00ff00;
    margin-bottom: 15px;
}

.category-content p {
    font-size: 16px;
    line-height: 1.6;
}

.footer {
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    width: 100%;
}

.footer h5 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #ff3333;
}

.footer .stars span {
    color: #ffd700;
    font-size: 16px;
}

.footer .copyright {
    font-size: 12px;
    color: #999;
}

.tech-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.tech-logos img {
    width: 80px;
    height: 80px;
    transition: transform 0.3s;
}

.tech-logos img:hover {
    transform: scale(1.2);
}

/* Ajustes para animações AOS */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}