/* 5u bet - SKT T1 Esports Theme 2026 */
/* Cores SKT: Preto #0a0a0a, Vermelho #c8102e, Dourado #d4af37 */

:root {
    --skt-black: #0a0a0a;
    --skt-dark: #121212;
    --skt-red: #c8102e;
    --skt-red-light: #e63946;
    --skt-gold: #d4af37;
    --skt-gold-light: #f0d78c;
    --skt-white: #f5f5f5;
    --skt-gray: #888888;
    --gradient-red: linear-gradient(135deg, #c8102e 0%, #8b0000 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    --shadow-red: 0 0 20px rgba(200, 16, 46, 0.4);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--skt-black);
    color: var(--skt-white);
    line-height: 1.8;
    font-size: 16px;
}

/* Preload e DNS Prefetch otimização */
img {
    max-width: 100%;
    height: auto;
}

/* Header Navigation - NÃO sticky */
.site-header {
    background: linear-gradient(180deg, var(--skt-dark) 0%, var(--skt-black) 100%);
    border-bottom: 2px solid var(--skt-red);
    padding: 1rem 0;
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-area img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-area h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navegação Principal */
.main-nav {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--skt-white);
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.main-nav a:hover {
    background: rgba(200, 16, 46, 0.2);
    border-color: var(--skt-red);
    color: var(--skt-gold);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--gradient-red);
    color: var(--skt-white) !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-red);
    border: 2px solid var(--skt-red);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 16, 46, 0.5);
    background: var(--gradient-gold);
    border-color: var(--skt-gold);
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.9) 100%);
    z-index: 2;
}

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

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--skt-white);
    opacity: 0.9;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--skt-dark);
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(200, 16, 46, 0.3);
}

.breadcrumb-container {
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--skt-gray);
    font-size: 0.9rem;
}

.breadcrumb li a {
    color: var(--skt-gold);
    text-decoration: none;
}

.breadcrumb li a:hover {
    text-decoration: underline;
}

.breadcrumb li::after {
    content: '›';
    color: var(--skt-red);
}

.breadcrumb li:last-child::after {
    content: '';
}

/* Seções Principais */
.section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-dark {
    background: var(--skt-dark);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-red);
    border-radius: 2px;
}

.section-title span {
    color: var(--skt-gold);
}

/* Cards de Jogos */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.game-card {
    background: linear-gradient(145deg, var(--skt-dark) 0%, #1a1a1a 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(200, 16, 46, 0.3);
    transition: all 0.4s ease;
}

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

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

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

.game-card-content h3 {
    font-size: 1.4rem;
    color: var(--skt-gold);
    margin-bottom: 1rem;
}

.game-card-content p {
    color: var(--skt-white);
    opacity: 0.85;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.game-card .cta-button {
    width: 100%;
    text-align: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
}

/* Autor / E-E-A-T */
.author-box {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--skt-dark);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--skt-gold);
    margin: 3rem 0;
}

.author-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--skt-gold);
}

.author-info h4 {
    font-size: 1.3rem;
    color: var(--skt-gold);
    margin-bottom: 0.5rem;
}

.author-info .author-title {
    color: var(--skt-red);
    font-weight: 600;
    margin-bottom: 1rem;
}

.author-info p {
    color: var(--skt-white);
    opacity: 0.85;
}

/* Reviews / Avaliações */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--skt-dark);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(200, 16, 46, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--skt-gold);
}

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

.review-author {
    font-weight: 600;
    color: var(--skt-gold);
}

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

.review-stars {
    color: var(--skt-gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--skt-white);
    opacity: 0.9;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.review-date {
    color: var(--skt-gray);
    font-size: 0.85rem;
}

/* FAQ Accordion */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--skt-dark);
    margin-bottom: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(200, 16, 46, 0.2);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--skt-white);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(200, 16, 46, 0.1);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--skt-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--skt-white);
    opacity: 0.85;
    line-height: 1.8;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Métodos de Pagamento */
.payment-section {
    text-align: center;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.payment-icons img {
    height: 60px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.payment-icons img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Licença */
.license-section {
    text-align: center;
    padding: 3rem;
    background: var(--skt-dark);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.license-badge {
    width: 150px;
    height: 150px;
    margin-bottom: 1.5rem;
}

/* Jogo Responsável */
.responsible-gaming {
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.1) 0%, rgba(10, 10, 10, 1) 100%);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--skt-red);
}

.responsible-gaming h3 {
    color: var(--skt-gold);
    margin-bottom: 1.5rem;
}

.responsible-gaming ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.responsible-gaming li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.responsible-gaming li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--skt-gold);
    font-weight: bold;
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, var(--skt-dark) 0%, #050505 100%);
    border-top: 2px solid var(--skt-red);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-column h4 {
    color: var(--skt-gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--skt-red);
}

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

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

.footer-column a {
    color: var(--skt-white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--skt-gold);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(200, 16, 46, 0.3);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--skt-gray);
    font-size: 0.9rem;
}

.age-badge {
    width: 50px;
    height: 50px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--skt-dark);
    border: 1px solid var(--skt-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--skt-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--skt-red);
    border-color: var(--skt-gold);
}

/* Conteúdo de Texto */
.content-block {
    margin-bottom: 3rem;
}

.content-block h3 {
    color: var(--skt-gold);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.content-block p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    text-align: justify;
}

.content-block ul, .content-block ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-block li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* Tabelas */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--skt-dark);
    border-radius: 12px;
    overflow: hidden;
}

.info-table th, .info-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(200, 16, 46, 0.2);
}

.info-table th {
    background: var(--skt-red);
    color: var(--skt-white);
    font-weight: 600;
}

.info-table tr:hover {
    background: rgba(200, 16, 46, 0.1);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--skt-red);
    color: var(--skt-white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Responsivo */
@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        background: var(--skt-dark);
        padding: 1rem;
        border-radius: 12px;
        margin-top: 1rem;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .header-container {
        flex-wrap: wrap;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 3rem 1rem;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .logo-area h1 {
        font-size: 1.4rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Suporte Section */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.support-card {
    background: var(--skt-dark);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(200, 16, 46, 0.2);
    transition: all 0.3s ease;
}

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

.support-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.support-card h4 {
    color: var(--skt-gold);
    margin-bottom: 0.5rem;
}

/* Inner Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--skt-dark) 0%, var(--skt-black) 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 2px solid var(--skt-red);
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--skt-gold);
    margin-bottom: 1rem;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.page-content img {
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Sitemap Styles */
.sitemap-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.sitemap-column h3 {
    color: var(--skt-gold);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--skt-red);
}

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

.sitemap-column li {
    margin-bottom: 1rem;
}

.sitemap-column a {
    color: var(--skt-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.sitemap-column a::before {
    content: '›';
    color: var(--skt-red);
    font-weight: bold;
}

.sitemap-column a:hover {
    color: var(--skt-gold);
    padding-left: 0.5rem;
}
