/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-red: #ff2d2d;
    --primary-red-dark: #cc0000;
    --primary-red-light: #ff6666;
    --secondary-black: #0a0a0a;
    --secondary-gray: #1a1a1a;
    --accent-gold: #ffd700;
    --accent-silver: #c0c0c0;
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --text-muted: #888888;
    
    /* Backgrounds */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: rgba(26, 26, 26, 0.9);
    --bg-overlay: rgba(0, 0, 0, 0.7);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-black), var(--secondary-gray));
    --gradient-gold: linear-gradient(135deg, var(--accent-gold), #ffed4e);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-red: 0 0 30px rgba(255, 45, 45, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Fonts */
    --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Exo 2', 'Rajdhani', sans-serif;
    --font-accent: 'Rajdhani', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    will-change: opacity, visibility;
}

.loading-screen.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    display: none !important;
}

/* Garantir que seja removido */
.loading-screen[style*="display: none"],
.loading-screen[style*="opacity: 0"],
.loading-screen[style*="visibility: hidden"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Fallback para qualquer elemento de loading */
[class*="loading"],
[id*="loading"] {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

[class*="loading"].hidden,
[id*="loading"].hidden {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.loading-content {
    text-align: center;
    max-width: 400px;
    padding: 2rem;
}

.loading-logo {
    margin-bottom: 3rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
    text-shadow: 0 0 20px var(--primary-red);
    margin-bottom: 0.5rem;
    animation: pulse 2s infinite;
}

.logo-subtitle {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-gray);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.loading-bar {
    width: 100%;
    height: 4px;
    background: var(--bg-secondary);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: loading 3s ease-in-out;
}

.loading-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== BACKGROUND ===== */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.background-video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
}

.background-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: float 6s infinite linear;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 3s;
    animation-duration: 9s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* ===== MAIN CONTENT ===== */
.main-content {
    position: relative;
    z-index: 1;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
}

.hero-title {
    margin-bottom: 2rem;
}

.title-main {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    color: var(--text-white);
    text-shadow: 0 0 30px var(--primary-red), 0 4px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    animation: slideInUp 1s ease-out;
}

.title-sub {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-red);
    text-shadow: 0 0 20px var(--primary-red), 0 3px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.5rem;
    letter-spacing: 0.08em;
    animation: slideInUp 1s ease-out 0.2s backwards;
}

.title-official {
    font-family: var(--font-accent);
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    animation: slideInUp 1s ease-out 0.4s backwards;
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 400;
    color: var(--text-gray);
    margin-bottom: 3rem;
    letter-spacing: 0.02em;
    line-height: 1.5;
    animation: slideInUp 1s ease-out 0.6s backwards;
}

.server-status-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.8s backwards;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--bg-card);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-red);
    animation: pulse 2s infinite;
}

.status-indicator.online {
    background: #00ff00;
    box-shadow: 0 0 10px #00ff00;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 1s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 45, 45, 0.4);
}

.btn-secondary {
    background: rgba(114, 137, 218, 0.9);
    color: var(--text-white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(114, 137, 218, 1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(114, 137, 218, 0.4);
}

.btn-panel {
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    color: var(--text-white);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3);
}

.btn-panel:hover {
    background: linear-gradient(135deg, #ff9500, #ff7700);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid var(--text-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.scroll-arrow:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== SECTIONS ===== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.section-header p {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== INFO SECTION ===== */
.info-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.info-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-main h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.info-main p {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.info-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.info-stat:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(255, 45, 45, 0.2);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    border-left: 3px solid var(--primary-red);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(255, 45, 45, 0.05);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    flex-shrink: 0;
}

.feature-item span {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-white);
    letter-spacing: 0.02em;
}

/* ===== CONNECT SECTION ===== */
.connect {
    background: var(--bg-primary);
    padding: 5rem 0;
}

.connect-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.connect-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.connect-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
}

.connect-header p {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--text-gray);
}

.server-ip-display {
    margin-bottom: 2rem;
}

.ip-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.8rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-red);
    border-radius: 15px;
    transition: all var(--transition-normal);
}

.ip-container:hover {
    border-color: var(--primary-red);
    box-shadow: 0 0 30px rgba(255, 45, 45, 0.3);
}

.ip-text {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 0.02em;
}

.btn-copy-ip {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    color: var(--text-white);
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-copy-ip:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 45, 45, 0.4);
}

.connect-actions {
    display: flex;
    justify-content: center;
}

.btn-discord-large {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem 2.5rem;
    background: #5865F2;
    border-radius: 15px;
    text-decoration: none;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.btn-discord-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-discord-large i {
    font-size: 2.5rem;
    color: white;
}

.btn-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.btn-title {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-subtitle {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== STEAM SECTION ===== */
.steam-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.steam-header {
    text-align: center;
    margin-bottom: 4rem;
}

.steam-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1b2838, #2a475e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 40px rgba(42, 71, 94, 0.3);
}

.steam-icon i {
    font-size: 3.5rem;
    color: #66c0f4;
}

.steam-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.steam-header p {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.steam-info-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
}

.steam-info-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(102, 192, 244, 0.2);
    backdrop-filter: blur(10px);
}

.steam-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.steam-card-header i {
    font-size: 2rem;
    color: #66c0f4;
}

.steam-card-header h3 {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.steam-info-card p {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.steam-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.steam-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-white);
}

.steam-feature-item i {
    color: #66c0f4;
    font-size: 1rem;
}

.steam-purchase-card {
    background: linear-gradient(135deg, #1b2838, #2a475e);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(102, 192, 244, 0.3);
    backdrop-filter: blur(10px);
}

.steam-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.steam-logo i {
    font-size: 2.5rem;
    color: #66c0f4;
}

.steam-logo span {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: #66c0f4;
    letter-spacing: 0.1em;
}

.steam-purchase-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.steam-tags {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.steam-tags .tag {
    padding: 0.5rem 1rem;
    background: rgba(102, 192, 244, 0.1);
    border: 1px solid rgba(102, 192, 244, 0.3);
    border-radius: 20px;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    color: #66c0f4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.steam-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 2rem;
}

.steam-rating i {
    color: #ffd700;
    font-size: 1.2rem;
}

.steam-rating .rating-text {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-left: 0.5rem;
}

.btn-steam-buy {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #66c0f4, #4a9fd8);
    border-radius: 50px;
    color: var(--secondary-black);
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    width: 100%;
    justify-content: center;
}

.btn-steam-buy:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 192, 244, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-steam-buy i {
    font-size: 1.5rem;
}

.steam-note {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* ===== HOSTING SECTION ===== */
.hosting-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.hosting-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hosting-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.hosting-info p {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.hosting-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hosting-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--bg-card);
    border-radius: 12px;
    border-left: 3px solid var(--accent-gold);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.hosting-feature:hover {
    transform: translateX(10px);
    background: rgba(255, 215, 0, 0.05);
    border-color: var(--accent-gold);
}

.hosting-feature i {
    font-size: 1.8rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.hosting-feature-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hosting-feature .feature-title {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.02em;
}

.hosting-feature .feature-desc {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--text-gray);
}

.btn-hosting {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-gold), #ffed4e);
    border-radius: 50px;
    color: var(--secondary-black);
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.btn-hosting:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-hosting i {
    font-size: 1.2rem;
}

.hosting-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hosting-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all var(--transition-normal);
}

.hosting-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.hosting-stat-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.hosting-stat-card .stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.hosting-stat-card .stat-text {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== GAME SECTION ===== */
.game-section {
    background: var(--bg-primary);
    padding: 6rem 0;
}

.game-content {
    max-width: 1000px;
    margin: 0 auto;
}

.game-header {
    text-align: center;
    margin-bottom: 4rem;
}

.game-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 40px rgba(155, 89, 182, 0.3);
}

.game-icon i {
    font-size: 3.5rem;
    color: white;
}

.game-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.game-header p {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.game-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.game-feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(155, 89, 182, 0.2);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.game-feature-card:hover {
    transform: translateY(-10px);
    border-color: #9b59b6;
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.3);
}

.game-feature-card i {
    font-size: 2.5rem;
    color: #9b59b6;
    margin-bottom: 1rem;
}

.game-feature-card h3 {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.game-feature-card p {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.game-info-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.game-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    border-left: 3px solid #9b59b6;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.game-info-item:hover {
    transform: translateX(10px);
    background: rgba(155, 89, 182, 0.05);
}

.game-info-item i {
    font-size: 1.5rem;
    color: #9b59b6;
    flex-shrink: 0;
}

.game-info-item span {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-white);
}

.game-cta {
    text-align: center;
}

.btn-game {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    border-radius: 50px;
    color: white;
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.btn-game:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(155, 89, 182, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-game i {
    font-size: 1.5rem;
}

.game-note {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* ===== COMMUNITY SECTION ===== */
.community-section {
    background: var(--bg-primary);
    padding: 6rem 0;
}

.community-content {
    display: flex;
    justify-content: center;
}

.community-discord {
    text-align: center;
    padding: 3rem;
    background: var(--bg-card);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    max-width: 900px;
    width: 100%;
}

.discord-icon-large {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 40px rgba(255, 45, 45, 0.3);
}

.discord-icon-large i {
    font-size: 3.5rem;
    color: white;
}

.community-discord h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.community-discord p {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.btn-discord-join {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: #5865F2;
    border-radius: 50px;
    color: white;
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.btn-discord-join:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-discord-join i {
    font-size: 1.5rem;
}

.staff-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.staff-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.staff-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-red);
    background: rgba(255, 45, 45, 0.05);
}

.staff-item i {
    font-size: 2rem;
    color: var(--primary-red);
    width: 50px;
    text-align: center;
}

.staff-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.staff-title {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.02em;
}

.staff-desc {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-top: 2px solid var(--primary-red);
    padding: 4rem 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    box-shadow: 0 0 20px var(--primary-red);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* Footer Brand */
.footer-brand {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 0.3rem;
    letter-spacing: 0.08em;
    text-shadow: 0 0 20px var(--primary-red);
}

.footer-subtitle {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-red);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-description {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Footer Links Container */
.footer-links-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

/* Link Groups */
.link-group h4 {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.5rem;
}

.link-group h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
}

.link-group a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 0.7rem;
    padding: 0.4rem 0;
    transition: all var(--transition-fast);
    letter-spacing: 0.02em;
}

.link-group a i {
    font-size: 0.9rem;
    width: 16px;
    transition: transform var(--transition-fast);
}

.link-group a:hover {
    color: var(--primary-red);
    transform: translateX(5px);
}

.link-group a:hover i {
    transform: scale(1.2);
}

/* Footer Social Icons */
.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.footer-social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.footer-social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: transparent;
}

.footer-social-icon:hover::before {
    opacity: 1;
}

.footer-social-icon.discord:hover {
    background: #5865F2;
    border-color: #5865F2;
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
}

.footer-social-icon.discord:hover::before {
    opacity: 0;
}

.footer-social-icon.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

.footer-social-icon.youtube:hover::before {
    opacity: 0;
}

.footer-social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.4);
}

.footer-social-icon.instagram:hover::before {
    opacity: 0;
}

.footer-social-icon.tiktok:hover {
    background: #000000;
    border-color: #00f2ea;
    box-shadow: 0 10px 30px rgba(0, 242, 234, 0.4);
}

.footer-social-icon.tiktok:hover::before {
    opacity: 0;
}

/* Footer Divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 45, 45, 0.3), transparent);
    margin: 2rem 0;
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
    text-align: center;
}

.footer-copyright {
    font-family: var(--font-primary);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin: 1.5rem 0 0 0;
}

.footer-copyright strong {
    color: var(--text-white);
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero {
        padding: 1rem;
    }
    
    .server-status-bar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .info-section {
        padding: 4rem 0;
    }
    
    .info-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .info-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .info-stat {
        padding: 1rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .connect {
        padding: 3rem 0;
    }
    
    .connect-box {
        padding: 2rem 1.5rem;
    }
    
    .ip-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        text-align: center;
    }
    
    .ip-text {
        font-size: 1.2rem;
    }
    
    .btn-copy-ip {
        width: 100%;
        justify-content: center;
    }
    
    .btn-discord-large {
        width: 100%;
        justify-content: center;
    }
    
    .steam-section {
        padding: 4rem 0;
    }
    
    .steam-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steam-icon {
        width: 80px;
        height: 80px;
    }
    
    .steam-icon i {
        font-size: 3rem;
    }
    
    .hosting-section {
        padding: 4rem 0;
    }
    
    .hosting-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hosting-features {
        grid-template-columns: 1fr;
    }
    
    .btn-hosting {
        width: 100%;
        justify-content: center;
    }
    
    .game-section {
        padding: 4rem 0;
    }
    
    .game-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .game-info-box {
        grid-template-columns: 1fr;
    }
    
    .btn-game {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
    
    .community-section {
        padding: 4rem 0;
    }
    
    .community-discord {
        padding: 2rem 1.5rem;
    }
    
    .staff-features {
        grid-template-columns: 1fr;
    }
    
    .discord-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .discord-icon-large i {
        font-size: 3rem;
    }
    
    .btn-discord-join {
        width: 100%;
        justify-content: center;
    }
    
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-links-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-social-icons {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .info-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
    
    .game-features-grid {
        grid-template-columns: 1fr;
    }
    
    .game-icon {
        width: 80px;
        height: 80px;
    }
    
    .game-icon i {
        font-size: 3rem;
    }
    
    .footer-social-icons {
        gap: 0.8rem;
    }
    
    .footer-social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .ip-text {
        font-size: 1rem;
    }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none !important; }
.visible { display: block !important; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== LANGUAGE SELECTOR (SITE PRINCIPAL E PAINEL) ===== */
.language-selector {
    position: relative;
    z-index: 10000;
}

.btn-language {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--text-white);
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-language:hover {
    background: rgba(255, 45, 45, 0.2);
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 45, 45, 0.4);
}

#current-language-flag {
    font-size: 1.3rem;
}

#current-language-name {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-language i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-language:hover i {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 0;
    min-width: 240px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    animation: slideDownFade 0.3s ease;
    max-height: 450px;
    overflow-y: auto;
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-15px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.language-option {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: rgba(255, 45, 45, 0.15);
    padding-left: 2rem;
    border-left: 3px solid var(--primary-red);
}

.language-option.active {
    background: rgba(255, 215, 0, 0.15);
    border-left: 4px solid var(--accent-gold);
}

.language-option.active:hover {
    background: rgba(255, 215, 0, 0.25);
}

.lang-flag {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.lang-name {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Scrollbar customizada para menu de idiomas */
.language-menu::-webkit-scrollbar {
    width: 8px;
}

.language-menu::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

.language-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 45, 45, 0.5);
    border-radius: 4px;
}

.language-menu::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}

/* RTL Support */
[dir="rtl"] .language-menu {
    right: auto;
    left: 0;
}

[dir="rtl"] .language-option:hover,
[dir="rtl"] .language-option.active {
    border-left: none;
    border-right: 3px solid var(--primary-red);
    padding-left: 1.5rem;
    padding-right: 2rem;
}

[dir="rtl"] .language-option.active {
    border-right: 4px solid var(--accent-gold);
}

/* Seletor principal do site - sempre visível */
#language-selector-main {
    animation: fadeIn 0.5s ease 0.3s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #language-selector-main {
        top: 10px !important;
        right: 10px !important;
    }
    
    .btn-language {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .btn-language span:not(#current-language-flag) {
        display: none;
    }
    
    #current-language-flag {
        font-size: 1.5rem;
    }
    
    .language-menu {
        min-width: 200px;
        right: 0;
    }
}

@media (max-width: 480px) {
    #language-selector-main {
        top: 10px !important;
        right: 10px !important;
    }
    
    .language-menu {
        position: fixed;
        top: 50%;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
        min-width: 90vw;
        max-width: 320px;
    }
}
/* ===== MODAL INFORMAÇÕES DO PAINEL DO JOGADOR ===== */
.panel-info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.panel-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.panel-info-content {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 20px;
    max-width: 1200px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid rgba(255, 45, 45, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: zoomIn 0.4s ease;
}

.panel-info-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 45, 45, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.panel-info-close:hover {
    background: var(--primary-red);
    transform: rotate(90deg);
}

.panel-info-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(180deg, rgba(255, 45, 45, 0.1) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 45, 45, 0.4);
}

.panel-info-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.panel-info-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.panel-info-body {
    padding: 2rem;
}

.panel-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.panel-feature-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.panel-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(255, 45, 45, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-icon.dashboard { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.feature-icon.animals { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.feature-icon.shop { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.feature-icon.slots { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.feature-icon.coins { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.feature-icon.transfer { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }
.feature-icon.cards { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
.feature-icon.chat { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); }

.panel-feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.panel-feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panel-feature-card ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.panel-feature-card ul li:last-child {
    border-bottom: none;
}

.panel-info-benefits {
    background: rgba(255, 45, 45, 0.1);
    border: 1px solid rgba(255, 45, 45, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.panel-info-benefits h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.5;
}

.panel-info-actions {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 15px;
}

.btn-panel-access {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 45, 45, 0.4);
}

.btn-panel-access:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 45, 45, 0.6);
}

.panel-info-note {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Scrollbar customizada */
.panel-info-content::-webkit-scrollbar {
    width: 12px;
}

.panel-info-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

.panel-info-content::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 6px;
}

.panel-info-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red-light);
}

/* Responsivo */
@media (max-width: 768px) {
    .panel-info-content {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .panel-features-grid {
        grid-template-columns: 1fr;
    }
    
    .panel-info-header h2 {
        font-size: 2rem;
    }
    
    .btn-panel-access {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ===== LINK ADMIN NO RODAPÉ ===== */
.footer-separator {
    margin: 0 1rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.footer-admin-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    border: 1px solid transparent;
}

.footer-admin-link:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.footer-admin-link i {
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-copyright {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-separator {
        display: none;
    }
    
    .footer-admin-link {
        margin-top: 0.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   💰 COIN PURCHASE SYSTEM - Sistema de Compra de Moedas
   ═══════════════════════════════════════════════════════════════════════════ */

.coming-soon-badge {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 0.5rem;
    animation: pulse 2s infinite;
}

.coin-purchase-header {
    text-align: center;
    margin-bottom: 2rem;
}

.coin-purchase-header .subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.coin-packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.coin-pack-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.coin-pack-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 45, 45, 0.3);
    border-color: var(--primary-red);
}

.coin-pack-card.premium {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(26, 26, 26, 0.9));
}

.coin-pack-card.mega {
    border-color: #9b59b6;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(26, 26, 26, 0.9));
}

.coin-pack-card.coming-soon {
    opacity: 0.9;
}

.pack-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-red);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 2;
}

.pack-badge.popular {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.pack-badge.best-value {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.pack-badge.premium {
    background: linear-gradient(135deg, var(--accent-gold), #daa520);
}

.pack-badge.mega {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.pack-header {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
}

.pack-icon {
    font-size: 3rem;
    color: var(--accent-silver);
    margin-bottom: 1rem;
    position: relative;
}

.pack-icon.gold {
    color: var(--accent-gold);
    animation: shine 2s infinite;
}

.pack-icon.premium {
    color: var(--accent-gold);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.pack-icon.mega {
    color: #9b59b6;
    filter: drop-shadow(0 0 15px rgba(155, 89, 182, 0.6));
}

.pack-header h3 {
    font-size: 1.4rem;
    margin-top: 0.5rem;
    color: var(--text-white);
}

.pack-content {
    padding: 0 1.5rem 2rem;
}

.coins-amount {
    text-align: center;
    margin: 1.5rem 0;
}

.coins-amount .amount {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.coins-amount .label {
    font-size: 1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bonus-badge {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    margin: 1rem 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.bonus-badge.mega {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    font-size: 1.1rem;
    padding: 0.7rem 1.2rem;
}

.pack-price {
    text-align: center;
    margin: 1.5rem 0;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
}

.pack-price .currency {
    font-size: 1.5rem;
    opacity: 0.7;
}

.pack-features {
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pack-features .feature {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0.7rem 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.pack-features .feature i {
    color: #2ecc71;
    font-size: 1rem;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    border-radius: 16px;
    z-index: 10;
}

.coming-soon-badge-large {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 30px rgba(243, 156, 18, 0.4);
    animation: pulse 2s infinite;
}

.coming-soon-badge-large i {
    font-size: 2rem;
}

.btn-notify {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.btn-notify:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-red);
    transform: scale(1.05);
}

.payment-info-section {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.payment-info-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 80px;
}

.payment-method:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.payment-method i {
    font-size: 2rem;
    color: var(--text-gray);
}

.payment-method span {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 600;
}

.payment-security {
    margin-top: 1.5rem;
    color: #2ecc71;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.faq-section {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
}

.faq-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-red);
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--text-white);
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Animações */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes shine {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    }
}

/* Responsive */
@media (max-width: 768px) {
    .coin-packs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .coming-soon-badge-large {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }
    
    .payment-methods {
        gap: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

