/* 75bet - Premium Gaming Platform Styles */
/* 全新设计：金色皇家主题 + 深蓝背景 */

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

:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #FFD700;
    --dark-blue: #0A1628;
    --medium-blue: #1A2942;
    --light-blue: #2C3E5A;
    --accent-blue: #4A90E2;
    --text-white: #FFFFFF;
    --text-gray: #B8C5D6;
    --border-gold: #C9A961;
    --shadow-dark: rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-blue);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--secondary-gold);
}

/* Navegação Principal - NÃO STICKY */
.main-navigation {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
    border-bottom: 2px solid var(--primary-gold);
    padding: 1.2rem 0;
    position: relative; /* NÃO sticky/fixed */
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.nav-brand img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary-gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.btn-entrar {
    padding: 0.7rem 1.8rem;
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-entrar:hover {
    background: var(--primary-gold);
    color: var(--dark-blue);
    transform: translateY(-2px);
}

.btn-cadastro {
    padding: 0.7rem 1.8rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: var(--dark-blue);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-cadastro:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(26, 41, 66, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px var(--shadow-dark);
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: var(--dark-blue);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.7);
}

.btn-secondary {
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid var(--text-white);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--dark-blue);
    transform: translateY(-3px);
}

/* Breadcrumb */
.breadcrumb {
    background: var(--medium-blue);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--light-blue);
}

.breadcrumb ol {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    list-style: none;
    display: flex;
    gap: 0.5rem;
}

.breadcrumb a {
    color: var(--text-gray);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary-gold);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Main Content */
.main-content {
    padding: 4rem 0;
}

/* Sections */
section {
    margin-bottom: 5rem;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Intro Section */
.intro-section {
    background: var(--medium-blue);
    padding: 4rem 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-gold);
}

.intro-section p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Games Showcase */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.game-card {
    background: var(--medium-blue);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--light-blue);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.game-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.game-card-content {
    padding: 2rem;
}

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

.game-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.game-link {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: var(--primary-gold);
    color: var(--dark-blue);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.game-link:hover {
    background: var(--secondary-gold);
    transform: translateX(5px);
}

/* Promotions Section */
.promotions-section {
    background: linear-gradient(135deg, var(--medium-blue) 0%, var(--light-blue) 100%);
    padding: 4rem 2rem;
    border-radius: 15px;
}

.promo-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.promo-main h3, .promo-additional h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.promo-main h4 {
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.promo-main ul, .promo-additional ul {
    list-style-position: inside;
    color: var(--text-gray);
    line-height: 2;
}

.promo-main li, .promo-additional li {
    margin-bottom: 0.8rem;
}

/* Payment Section */
.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.payment-method.featured {
    background: var(--medium-blue);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--primary-gold);
}

.payment-method img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.payment-method h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.payment-method p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.payment-method ul {
    list-style-position: inside;
    color: var(--text-gray);
    line-height: 2;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.payment-option {
    background: var(--medium-blue);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

.payment-option h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.payment-option p {
    color: var(--text-gray);
    line-height: 1.6;
}

.payment-security {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light-blue);
    border-radius: 10px;
}

.payment-security h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.payment-security p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* License Section */
.license-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.license-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.license-info p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.license-info ul {
    list-style-position: inside;
    color: var(--text-gray);
    line-height: 2;
}

.license-info li {
    margin-bottom: 1rem;
}

.license-badges {
    text-align: center;
    background: var(--medium-blue);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-gold);
}

.license-badges img {
    width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.license-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.license-issuer {
    color: var(--text-gray);
}

/* Responsible Gaming */
.responsible-tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tool {
    background: var(--medium-blue);
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid var(--primary-gold);
}

.tool h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.tool p {
    color: var(--text-gray);
    line-height: 1.6;
}

.help-resources {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light-blue);
    border-radius: 10px;
}

.help-resources h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.help-resources p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.help-resources ul {
    list-style-position: inside;
    color: var(--text-gray);
    line-height: 2;
    margin-bottom: 1.5rem;
}

.help-resources a {
    color: var(--primary-gold);
    text-decoration: none;
}

.help-resources a:hover {
    text-decoration: underline;
}

/* Support Section */
.support-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.support-channel {
    background: var(--medium-blue);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--light-blue);
    transition: all 0.3s ease;
}

.support-channel:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.support-channel img {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
}

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

.support-channel p {
    color: var(--text-gray);
    line-height: 1.6;
}

.support-commitment {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light-blue);
    border-radius: 10px;
}

.support-commitment h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.support-commitment p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* FAQ Section */
.faq-item {
    background: var(--medium-blue);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-gold);
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--medium-blue);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--light-blue);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info strong {
    display: block;
    font-size: 1.2rem;
    color: var(--secondary-gold);
    margin-bottom: 0.3rem;
}

.reviewer-location {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.review-rating {
    font-size: 1.2rem;
}

.review-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.review-card time {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    padding: 5rem 2rem;
    text-align: center;
    border-radius: 20px;
    margin-top: 5rem;
}

.cta-section h2 {
    color: var(--dark-blue);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: var(--dark-blue);
    color: var(--secondary-gold);
    text-decoration: none;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(10, 22, 40, 0.5);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 22, 40, 0.7);
}

.cta-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--dark-blue);
}

/* Footer */
.site-footer {
    background: var(--dark-blue);
    border-top: 2px solid var(--primary-gold);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

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

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.footer-column p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-gold);
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.payment-icons img {
    height: 30px;
    width: auto;
}

.payment-icons span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid var(--light-blue);
    padding-top: 2rem;
}

.footer-legal {
    margin-bottom: 2rem;
}

.footer-legal p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-legal a {
    color: var(--primary-gold);
    text-decoration: none;
}

.footer-legal a:hover {
    text-decoration: underline;
}

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

.footer-copyright p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .promo-content {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .license-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .nav-actions {
        width: 100%;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .support-channels {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    section h2 {
        font-size: 1.7rem;
    }
}
