:root {
    --bg-color: #111111;
    --text-color: #ffffff;
    --primary-green: #4ade80;
    --dark-green-start: #003C07;
    --dark-green-end: #002801;
    --border-color: rgba(255, 255, 255, 0.7);
    --font-main: "Montserrat", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background: linear-gradient(180deg, #111111 0%, #121212 38%, #000903 100%);
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.container {
    max-width: 1600px; /* Wider container as per design */
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 2;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 50px;
    position: absolute; /* Stays in first section */
    width: 100%;
    top: 0;
    z-index: 1000;
    background: transparent;
}

.nav-logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.nav-links a {
    color: #696969;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.5rem; /* ~24px */
    transition: color 0.3s;
}

.nav-item.active a, .nav-item:hover a {
    color: #fff;
}

.nav-arrow {
    width: 40px;
    opacity: 0;
    transition: opacity 0.3s;
    margin-top: 5px;
}

.nav-item.active .nav-arrow {
    opacity: 1;
}

.nav-auth .btn-login {
    border: 2px solid #fff;
    padding: 10px 35px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-auth .btn-login:hover {
    background: #fff;
    color: #000;
}

.hero-section, .vip-section, .howto-section, .news-section, .contact-section {
    position: relative;
    background-image: url("fundolinhas.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(6, 51, 0, 0.24);
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.badge-text {
    color: #45903E;
    font-weight: 600;
    font-size: 1.2rem;
}

.hero-title {
    font-size: 4rem; /* 64px */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.text-green {
    color: var(--primary-green);
}

.hero-description {
    color: #797979;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 50px;
    max-width: 640px;
}

.btn-connect {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(90deg, #B6FFB9 0%, #D1ECD9 37%, #82CB98 100%);
    color: #000;
    padding: 15px 50px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.5rem;
    transition: transform 0.3s;
    width: fit-content;
}

.btn-connect:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-image img {
    max-height: 90vh;
    object-fit: contain;
}

/* VIP Section */
.vip-section {
    padding: 100px 0;
    position: relative;
}

.vip-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.vip-cards {
    display: flex;
    gap: 30px;
    flex: 2;
}

.vip-card {
    flex: 1;
    transition: transform 0.3s;
}

.vip-card:hover {
    transform: translateY(-10px);
}

.vip-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.vip-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vip-image img {
    max-height: 900px;
    object-fit: contain;
}

/* Como Jogar Section */
.howto-section {
    padding: 100px 0;
}

.section-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 80px;
}

.howto-content {
    display: flex;
    gap: 80px;
}

.steps-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    background: linear-gradient(180deg, var(--dark-green-start) 0%, var(--dark-green-end) 100%);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    gap: 30px;
    min-height: 120px;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    min-width: 60px;
    text-align: center;
}

.step-text {
    font-size: 1.25rem; /* 20px */
    font-weight: 300;
    color: #fff;
    line-height: 1.4;
}

.step-text a {
    color: #fff;
    text-decoration: underline;
}

.video-container {
    flex: 1;
}

.video-container h3 {
    font-size: 2.5rem; /* 40px */
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.video-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(180deg, var(--dark-green-start) 0%, var(--dark-green-end) 100%);
    border: 1px solid var(--border-color);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .nav-links {
        gap: 30px;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
}

@media (max-width: 1024px) {
    .vip-content-wrapper {
        flex-direction: column;
    }
    
    .vip-image {
        display: none;
    }
    
    .howto-content {
        flex-direction: column;
    }
    
    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 50px;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .btn-connect {
        margin: 0 auto;
    }
}


/* Section Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
    width: 100%;
    margin: 0;
}

/* News Section */
.news-section {
    padding: 100px 0;
}

.news-header {
    text-align: center;
    margin-bottom: 50px;
}

.news-title {
    font-family: "Montserrat", sans-serif; /* Or a more stylized font if available */
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.news-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.news-featured {
    flex: 1.5;
}

.news-list {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.news-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.news-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.placeholder-img {
    background: linear-gradient(45deg, #222, #333);
    width: 100%;
    height: 100%;
    min-height: 200px;
}

.placeholder-img.large {
    min-height: 400px;
}

.news-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.news-overlay-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.news-overlay-content p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 20px;
    max-width: 80%;
}

.btn-ver-mais {
    background: #33ff00; /* Orange/Gold */
    color: #000;
    padding: 5px 15px;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.8rem;
    border-radius: 3px;
    display: inline-block;
}

.news-small-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.news-small-overlay h4 {
    font-size: 0.9rem;
    font-weight: 700;
    max-width: 70%;
}

.btn-ver-mais-small {
    background: #fff;
    color: #000;
    padding: 2px 8px;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.6rem;
    border-radius: 2px;
}

.news-footer {
    text-align: center;
}

.btn-ver-mais-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 40px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-ver-mais-outline:hover {
    background: #fff;
    color: #000;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(15, 15, 20, 0.8);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 50px;
    border-radius: 20px;
    position: relative;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.contact-icon-top {
    font-size: 3rem;
    color: #3bf644; /* Blue */
    margin-bottom: 10px;
    display: block;
    transform: rotate(-10deg);
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-script {
    font-family: "Brush Script MT", cursive; /* Fallback script font */
    text-transform: none;
    font-weight: 400;
    font-size: 3rem;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form label {
    color: #51f63b; /* Blue label */
    font-weight: 700;
    font-size: 0.9rem;
}

.contact-form input, .contact-form textarea {
    background: rgba(255,255,255,0.05);
    border: none;
    padding: 15px;
    border-radius: 5px;
    color: #fff;
    font-family: var(--font-main);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.form-footer {
    margin-top: 30px;
    text-align: center;
}

.btn-enviar {
    background: #58f838; /* Cyan/Blue */
    color: #fff;
    border: none;
    padding: 12px 50px;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid #8dfc4d; /* Yellow border as seen in image */
    box-shadow: 0 4px 0 #5cfc4d;
    transition: transform 0.1s;
}

.btn-enviar:active {
    transform: translateY(4px);
    box-shadow: none;
}

@media (max-width: 768px) {
    .news-grid {
        flex-direction: column;
    }
    
    .news-list {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        flex-direction: column;
    }
}


/* Sticky Navbar - REMOVED/RESET */
.navbar {
    position: absolute; /* Reverted to absolute */
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent; /* Transparent again */
    backdrop-filter: none;
    border-bottom: none;
}

/* Adjust body padding for fixed navbar - REMOVED/RESET */
body {
    padding-top: 0;
    background: linear-gradient(180deg, #111111 0%, #121212 38%, #000903 100%); /* Reverted to linear gradient */
}

/* Text Gradient for BAIXADA */
.text-gradient {
    background: linear-gradient(90deg, #4ade80 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* VIP Section Adjustments */
.vip-cards {
    gap: 40px;
}

.vip-card img {
    width: 100%;
    height: auto;
    min-height: 600px; /* Closer to 732px */
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* SVG Divider */
.section-divider-svg {
    position: relative; /* Changed from absolute to relative */
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    margin-top: -1px; /* Fix potential sub-pixel gaps */
}

.section-divider-svg svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.section-divider-svg .shape-fill {
    fill: #111111;
}

/* Footer */
.site-footer {
    background: #000903;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 40px;
    opacity: 0.8;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    color: #555;
    font-size: 0.8rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* News Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #1a1a1a;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 15px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}

.modal-body {
    padding: 40px;
}

.modal-image {
    width: 100%;
    height: 400px;
    background: #333;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.modal-date {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.modal-text {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.1rem;
}

.modal-video {
    margin-top: 30px;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}


/* User Avatar in Navbar */
.nav-user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-green);
    transition: transform 0.3s, box-shadow 0.3s;
}

.user-avatar-link {
    display: block;
    text-decoration: none;
}

.user-avatar-link:hover .nav-user-avatar {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.5);
}

