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

body {
    font-family: 'Inter', sans-serif;
    background: #0A0A0A;
    color: #FFFFFF;
}

/* Header */
.header {
    border-bottom: 1px solid #1A1A1A;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo img {
    height: 40px;
    width: auto;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.desktop-menu a {
    color: #808080;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.desktop-menu a:hover {
    color: #0066CC;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #808080;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    width: 100%;
    background: #1A1A1A;
    padding: 16px;
    margin-top: 12px;
    border-radius: 8px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    color: #808080;
    text-decoration: none;
    padding: 12px;
    border-bottom: 1px solid #333;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.search-box {
    display: flex;
    align-items: center;
    background: #1A1A1A;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 6px 12px;
    width: 200px;
}

.search-box input {
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 13px;
    width: 100%;
    outline: none;
}

.search-box input::placeholder {
    color: #555;
}

.menu-dots {
    font-size: 20px;
    color: #808080;
    cursor: pointer;
    margin-left: 8px;
}

/* Hero Section */
.hero {
    background: #0F0F0F;
    border-bottom: 1px solid #1A1A1A;
    padding: 40px 24px;
    text-align: center;
}

.hero-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.hero h1 span {
    color: #0066CC;
}

.hero-sub {
    font-size: 16px;
    color: #808080;
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    min-width: 100px;
}

.hero-stat-value {
    font-size: 42px;
    font-weight: 800;
    color: #0066CC;
    line-height: 1;
}

.hero-stat-label {
    font-size: 13px;
    color: #808080;
    text-transform: uppercase;
    margin-top: 4px;
}

.ip-container {
    display: inline-block;
    background: #1A1A1A;
    border: 1px solid #333;
    border-radius: 50px;
    padding: 12px 32px;
}

.ip-container .ip-label {
    font-size: 14px;
    color: #808080;
    margin-right: 8px;
}

.ip-container .ip-address {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.announcements h2 {
    font-size: 14px;
    font-weight: 600;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.announcement-card {
    background: #0F0F0F;
    border: 1px solid #1A1A1A;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.announcement-card:hover {
    border-color: #0066CC;
}

.announcement-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.announcement-author {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #0066CC;
}

.announcement-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
}

.announcement-info .date {
    font-size: 12px;
    color: #808080;
    margin-top: 2px;
}

.announcement-title {
    font-size: 20px;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 12px;
}

.announcement-content {
    color: #B0B0B0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.read-more {
    color: #0066CC;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.stats-box, .ip-box, .social-box {
    background: #0F0F0F;
    border: 1px solid #1A1A1A;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
}

.stats-box h3, .ip-box h4, .social-box h4 {
    font-size: 13px;
    font-weight: 600;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #1A1A1A;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-name {
    color: #FFFFFF;
    font-size: 14px;
}

.stat-value {
    color: #0066CC;
    font-weight: 700;
}

.ip-box {
    text-align: center;
}

.ip-box .players {
    font-size: 36px;
    font-weight: 800;
    color: #0066CC;
    line-height: 1;
    margin-bottom: 4px;
}

.ip-box .players-label {
    font-size: 13px;
    color: #808080;
    margin-bottom: 16px;
}

.ip-box .ip-address {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    background: #1A1A1A;
    padding: 10px;
    border-radius: 6px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: #1A1A1A;
    border: 1px solid #333;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #808080;
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover {
    border-color: #0066CC;
    color: #0066CC;
}

.footer {
    border-top: 1px solid #1A1A1A;
    padding: 24px;
    text-align: center;
    color: #555;
    font-size: 13px;
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-stats {
        gap: 24px;
    }
}
