:root {
    --bg-color: #050505;
    --card-bg: rgba(15, 15, 15, 0.8);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --accent: #5865F2;
    --green-live: #43b581;
}

* { 
    margin: 0; 
    padding: 0;
    box-sizing: border-box; 
    scroll-behavior: smooth; 
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    position: relative;
}

.bg-wrapper {
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    z-index: -2;
    background: #020202;
    overflow: hidden;
}

.aurora {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(88, 101, 242, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(67, 181, 129, 0.05) 0%, transparent 40%);
    top: -50%; 
    left: -50%;
    animation: rotateAurora 40s linear infinite;
    filter: blur(80px);
}

@keyframes rotateAurora {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.grid-lines {
    position: absolute;
    width: 100%; 
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at var(--x, 50%) var(--y, 50%), black, transparent 60%);
    -webkit-mask-image: radial-gradient(circle at var(--x, 50%) var(--y, 50%), black, transparent 60%);
    pointer-events: none;
}

.mouse-cursor-gradient {
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(500px circle at var(--x, 50%) var(--y, 50%), rgba(88, 101, 242, 0.1), transparent 40%);
    transition: opacity 0.3s;
}

.sidebar-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.navbar-lateral {
    background: rgba(25, 25, 25, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.nav-links-lateral {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 30px;
    align-items: flex-start;
}

.nav-links-lateral a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.nav-links-lateral a:hover {
    color: #cccccc;
    transform: translateX(-5px);
}

.nav-links-lateral .dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(88, 101, 242, 0.6);
}

.hero {
    height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    text-align: center; 
    position: relative; 
    padding: 0 20px;
    background: transparent; 
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1920px;
    height: 1080px;
    object-fit: contain;
    opacity: 0.4; 
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    width: 100%;
}

.hero-title-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-logo-img {
    width: clamp(450px, 40vw, 750px);
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    transform: translateX(65px);
}

.hero-btns { 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
    flex-wrap: wrap;
}

.btn { 
    padding: 14px 35px; 
    border-radius: 4px; 
    text-decoration: none; 
    font-weight: 600; 
    display: inline-block; 
    transition: 0.3s; 
}

.btn-primary { 
    background: white; 
    color: black; 
    border: 1px solid white; 
}

.btn-primary:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 5px 15px rgba(255,255,255,0.2); 
}

.btn-outline { 
    border: 1px solid rgba(255,255,255,0.3); 
    color: white; 
}

.btn-outline:hover { 
    border-color: white; 
    background: rgba(255,255,255,0.05); 
}

.reveal {
    opacity: 0; 
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.2, 1, 0.4, 1);
}

.reveal.active { 
    opacity: 1; 
    transform: translateY(0); 
}

.stats-section {
    display: flex; 
    justify-content: center; 
    gap: 60px; 
    flex-wrap: wrap;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(5px);
    padding: 80px 5%;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.stat-box { 
    text-align: center; 
    min-width: 150px; 
}

.stat-box h2 { 
    font-size: 3.5rem; 
    font-weight: 800; 
    display: inline-block; 
    color: white; 
}

.stat-box span { 
    color: var(--accent); 
    font-size: 3.5rem; 
    font-weight: 800; 
}

.stat-box p { 
    color: var(--text-muted); 
    font-size: 0.9rem; 
    margin-top: 5px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-weight: 600; 
}

.games-section { 
    padding: 100px 5%; 
    background: rgba(8, 8, 8, 0.4); 
    backdrop-filter: blur(5px);
    position: relative;
}

.section-header { 
    text-align: center; 
    margin-bottom: 80px; 
}

.section-header h2 { 
    font-size: 2.5rem; 
    letter-spacing: -1px; 
    margin-bottom: 10px; 
}

.games-grid { 
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; 
    max-width: 1200px; 
    margin: 0 auto; 
    justify-content: center;
}

.game-card {
    background: var(--card-bg);
    border: 2px solid transparent; 
    border-radius: 16px; 
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); 
    display: flex; 
    flex-direction: column;
    backdrop-filter: blur(10px);
    cursor: pointer;
    position: relative; 
}

.game-card:hover { 
    transform: translateY(-15px); 
    border-color: var(--accent); 
    box-shadow: 0 30px 50px rgba(88, 101, 242, 0.2); 
}

.card-image { 
    width: 100%; 
    aspect-ratio: 16 / 9; 
    background: #151515; 
    position: relative; 
    overflow: hidden; 
}

.card-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
    transition: 0.6s; 
}

.game-card:hover .card-image img { 
    transform: scale(1.1); 
}

.card-info { 
    padding: 30px; 
    flex-grow: 1; 
}

.card-info h3 { 
    font-size: 1.6rem; 
    margin-bottom: 10px; 
}

.ccu-badge {
    display: inline-flex; 
    align-items: center; 
    gap: 8px;
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px; 
    border-radius: 20px; 
    margin-top: 15px;
    font-size: 0.85rem; 
    color: #ccc;
}

.ccu-badge strong { 
    color: white; 
}

.live-indicator {
    width: 8px; 
    height: 8px; 
    background-color: var(--green-live);
    border-radius: 50%; 
    position: relative; 
    box-shadow: 0 0 5px var(--green-live);
}

.live-indicator::after {
    content: ''; 
    position: absolute; 
    top: 50%;
    left: 50%; 
    transform: translate(-50%, -50%);
    width: 100%; 
    height: 100%; 
    border-radius: 50%; 
    background-color: var(--green-live);
    opacity: 0.7;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

.progress-container {
    margin-top: 20px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.progress-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.btn-card {
    display: block; 
    text-align: center; 
    background: #1a1a1a; 
    color: white; 
    padding: 18px;
    text-decoration: none; 
    font-weight: 700;
    margin: 0 30px 30px; 
    border-radius: 8px; 
    transition: 0.3s;
}

.btn-card:hover { 
    background: white; 
    color: black; 
}

.btn-play-now {
    background: var(--green-live) !important;
    color: white !important;
    border: none;
}

.btn-play-now:hover {
    background: #329668 !important;
}

.btn-disabled {
    pointer-events: none;
    opacity: 0.5;
}

.game-tooltip {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    background: rgba(15, 15, 18, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(88, 101, 242, 0.4);
    border-radius: 12px 12px 12px 2px;
    padding: 25px 30px;
    width: 85%;
    z-index: 100;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: left;
}

.game-card.show-tooltip .game-tooltip {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, -50%);
}

.game-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 15px;
    height: 15px;
    background: rgba(15, 15, 18, 0.98);
    border-bottom: 1px solid rgba(88, 101, 242, 0.4);
    border-right: 1px solid rgba(88, 101, 242, 0.4);
    transform: rotate(45deg);
}

.game-tooltip h2 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
    padding-right: 20px;
}

.game-tooltip p {
    font-size: 0.95rem;
    color: #a0a0a0;
    line-height: 1.5;
    margin: 0;
}

.btn-fechar-previa {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #666;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-fechar-previa:hover {
    color: #ffffff;
}

.team-section { 
    padding: 100px 5%; 
    background: transparent; 
    border-top: 1px solid rgba(255,255,255,0.05); 
}

.team-container { 
    max-width: 1400px; 
    margin: 0 auto; 
    position: relative; 
}

.tier-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.board-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(88, 101, 242, 0.3);
}

.board-label::before,
.board-label::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--accent);
}

.owners-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.team-member-card { 
    background: var(--card-bg);
    border: 2px solid transparent;
    border-radius: 24px; 
    overflow: hidden; 
    display: flex; 
    flex-direction: column; 
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); 
    backdrop-filter: blur(10px); 
}

.team-member-card:hover { 
    transform: translateY(-15px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 25px 60px rgba(88, 101, 242, 0.2); 
}

.owner-card {
    min-width: 320px;
    max-width: 320px;
    border: 2px solid transparent;
}

.owner-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--accent);
    box-shadow: 0 25px 60px rgba(88, 101, 242, 0.3);
}

.owner-card .member-photo {
    height: 300px;
}

.owner-card .member-role {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(88, 101, 242, 0.3);
}

.member-photo { 
    position: relative; 
    width: 100%; 
    height: 280px; 
    overflow: hidden; 
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); 
}

.photo-placeholder { 
    width: 100%; 
    height: 100%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 80px; 
    color: rgba(255, 255, 255, 0.2); 
    background-size: cover; 
    background-position: center; 
    position: relative; 
}

.photo-placeholder img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.member-details { 
    padding: 25px; 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    text-align: center;
}

.member-name { 
    font-size: 1.5rem; 
    font-weight: 700; 
    color: var(--text-main); 
    margin: 0; 
}

.member-role { 
    font-size: 1rem; 
    color: var(--accent); 
    font-weight: 600; 
    margin: 0; 
}

.contact-section { 
    padding: 120px 5%; 
    background: rgba(5, 5, 5, 0.8); 
    border-top: 1px solid rgba(255,255,255,0.05); 
    backdrop-filter: blur(5px); 
}

.contact-split { 
    display: grid; 
    grid-template-columns: 1fr 1.2fr; 
    gap: 80px; 
}

.contact-info h2 { 
    font-size: 3rem; 
    margin-bottom: 20px; 
    line-height: 1.1; 
}

.contact-desc { 
    font-size: 1.2rem; 
    margin-bottom: 40px; 
    color: var(--text-muted); 
}

.features-list { 
    list-style: none; 
    display: flex; 
    flex-direction: column; 
    gap: 30px; 
}

.features-list li { 
    display: flex; 
    gap: 20px; 
    align-items: flex-start; 
}

.feature-icon { 
    font-size: 1.5rem; 
    color: var(--accent); 
    margin-top: 5px; 
    width: 30px; 
    text-align: center; 
}

.features-list strong { 
    display: block; 
    font-size: 1.1rem; 
    color: white; 
    margin-bottom: 5px; 
}

.features-list span { 
    font-size: 0.95rem; 
    color: #888; 
}

.contact-form-wrapper { 
    background: var(--card-bg); 
    padding: 40px; 
    border-radius: 20px; 
    border: 1px solid #222; 
}

.contact-form { 
    display: flex; 
    flex-direction: column; 
    gap: 25px; 
}

.form-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
}

.input-group { 
    position: relative; 
    width: 100%; 
}

.input-group input, 
.input-group textarea { 
    width: 100%; 
    background: #080808; 
    border: 1px solid #333; 
    padding: 18px; 
    color: white; 
    border-radius: 8px; 
    outline: none; 
    transition: 0.3s; 
    font-family: 'Inter', sans-serif; 
}

.input-group input:focus, 
.input-group textarea:focus { 
    border-color: var(--accent); 
    background: #0a0a0a; 
}

.input-group label { 
    position: absolute; 
    left: 18px; 
    top: 18px; 
    color: #666; 
    pointer-events: none; 
    transition: 0.3s; 
}

.input-group input:focus ~ label, 
.input-group input:not(:placeholder-shown) ~ label, 
.input-group textarea:focus ~ label, 
.input-group textarea:not(:placeholder-shown) ~ label { 
    top: -10px; 
    left: 10px; 
    font-size: 0.8rem; 
    background: #0f0f0f; 
    padding: 0 6px; 
    color: var(--accent); 
}

.btn-submit { 
    padding: 18px; 
    background: white; 
    border: none; 
    font-weight: 800; 
    cursor: pointer; 
    border-radius: 8px; 
    font-size: 1rem; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    transition: 0.3s; 
}

.form-result { 
    margin-top: 20px; 
    padding: 15px; 
    border-radius: 8px; 
    font-size: 0.95rem; 
    text-align: center; 
    display: none; 
    font-weight: 600; 
}

.form-result.success { 
    display: block; 
    background: rgba(67, 181, 129, 0.2); 
    border: 1px solid #43b581; 
    color: #43b581; 
    animation: fadeIn 0.5s ease; 
}

.form-result.error { 
    display: block; 
    background: rgba(255, 71, 87, 0.2); 
    border: 1px solid #ff4757; 
    color: #ff4757; 
    animation: fadeIn 0.5s ease; 
}

@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(10px); } 
    to { opacity: 1; transform: translateY(0); } 
}

.fa-spinner { 
    animation: spin 1s linear infinite; 
}

@keyframes spin { 
    100% { transform: rotate(360deg); } 
}

.footer-modern {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 5% 30px;
    color: var(--text-muted);
    position: relative;
    z-index: 10;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.footer-brand {
    flex: 2;
    min-width: 280px;
}

.footer-logo-img {
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.footer-brand h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-brand p {
    line-height: 1.6;
    max-width: 300px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4, .footer-social h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-social {
    flex: 1;
    min-width: 200px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(88, 101, 242, 0.4);
    border-color: var(--accent);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

@media (max-width: 900px) { 
    .contact-split { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    } 
    
    .form-row { 
        grid-template-columns: 1fr; 
    } 
    
    .sidebar-nav {
        position: fixed;
        bottom: 20px;
        right: 50%;
        top: auto;
        transform: translateX(50%);
        width: max-content;
        z-index: 1000;
    }

    .navbar-lateral {
        padding: 15px 30px;
        border-radius: 50px;
    }

    .nav-links-lateral {
        flex-direction: row;
        gap: 20px;
    }

    .nav-links-lateral a {
        font-size: 0.8rem;
    }

    .nav-links-lateral a span {
        display: none;
    }

    .hero-content { 
        padding-top: 20px; 
    } 
    
      .hero-logo-img { 
        width: clamp(200px, 60vw, 350px); 
        transform: none; 
        margin-bottom: 20px;
        padding-left: 40px;
    }

    .hero-btns { 
        flex-direction: column; 
        align-items: center; 
        gap: 12px; 
    }
    
    .btn { 
        width: 100%; 
        max-width: 300px;
        text-align: center;
    }

    .owners-grid {
        gap: 20px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}