:root {
    --primary: #ff4d4d;
    --secondary: #ff944d;
    --dark: #0f0f13;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

.background-glow {
    position: fixed;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 77, 77, 0.1) 0%, transparent 50%);
    z-index: -1;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 10%;
    position: absolute;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
}

.logo img {
    height: 80px;
}

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

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
    opacity: 0.7;
}

nav ul li a:hover {
    opacity: 1;
    color: var(--primary);
}

header {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(15, 15, 19, 0.4), rgba(15, 15, 19, 0.6)), url('assets/img/hero-bg.png');
    background-size: cover;
    background-position: center;
}

.btn-join {
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 0.6rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.4);
    transition: 0.3s;
}

.btn-join:hover {
    transform: scale(1.05);
    background: #ff6666;
}

.hero-content h1 {
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 5px 30px rgba(0,0,0,0.8);
}

.ip-container {
    background: rgba(0, 0, 0, 0.6);
    padding: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--primary);
    cursor: pointer;
    overflow: hidden;
}

.ip-icon {
    background: var(--primary);
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.ip-container span {
    padding: 0 3rem;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.player-count {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    opacity: 0.6;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    box-shadow: 0 0 10px #00ff00;
}

#modos {
    padding: 0 10%;
    margin-top: -150px;
    position: relative;
    z-index: 10;
}

.main-cards .card {
    background: rgba(15, 15, 19, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(255, 77, 77, 0.1);
    backdrop-filter: blur(10px);
}

.main-cards .card i {
    font-size: 3.5rem;
    background: linear-gradient(to bottom, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-cards .card h3 {
    letter-spacing: 2px;
    font-weight: 900;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 900;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

#studio {
    padding: 100px 10%;
    text-align: center;
}

.card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

.card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.card.premium {
    border: 1px solid rgba(255, 148, 77, 0.3);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 148, 77, 0.02));
}

.card.premium:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(255, 148, 77, 0.1);
}

footer {
    text-align: center;
    padding: 50px;
    opacity: 0.4;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    nav {
        padding: 1.5rem 5%;
    }
    nav ul {
        display: none;
    }
}
