/* 567win Pokemon Style - 2026 Edition */
/* Unique Pokemon-inspired design for Brazilian casino */

:root {
    --pokemon-red: #E3350D;
    --pokemon-blue: #3B4CCA;
    --pokemon-yellow: #FFCB05;
    --pokemon-gold: #B3A125;
    --electric-yellow: #FFD700;
    --fire-orange: #FF6B35;
    --water-blue: #4FC3F7;
    --grass-green: #66BB6A;
    --dark-bg: #1A1A2E;
    --darker-bg: #0F0F1A;
    --card-bg: #252542;
    --text-light: #FFFFFF;
    --text-muted: #B0B0C0;
    --gradient-pokemon: linear-gradient(135deg, var(--pokemon-red) 0%, var(--pokemon-blue) 100%);
    --gradient-gold: linear-gradient(135deg, var(--electric-yellow) 0%, var(--pokemon-gold) 100%);
    --shadow-glow: 0 0 20px rgba(255, 203, 5, 0.3);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Nunito', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--darker-bg);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Nunito', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    color: var(--pokemon-yellow);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--electric-yellow);
    text-shadow: 0 0 10px var(--pokemon-yellow);
}

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

/* Header - Non-sticky as required */
.site-header {
    background: linear-gradient(180deg, var(--dark-bg) 0%, transparent 100%);
    padding: 1rem 0;
    position: relative;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 203, 5, 0.5));
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-light);
    background: transparent;
    border: 2px solid transparent;
    transition: var(--transition);
}

.nav-link:hover {
    background: rgba(255, 203, 5, 0.1);
    border-color: var(--pokemon-yellow);
    color: var(--pokemon-yellow);
}

.nav-link.active {
    background: var(--gradient-gold);
    color: var(--dark-bg);
}

/* CTA Button */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-pokemon);
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(227, 53, 13, 0.4);
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(227, 53, 13, 0.6);
    color: var(--text-light);
}

.btn-cta-gold {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    box-shadow: 0 4px 20px rgba(255, 203, 5, 0.4);
}

.btn-cta-gold:hover {
    box-shadow: 0 8px 30px rgba(255, 203, 5, 0.6);
    color: var(--dark-bg);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--darker-bg) 0%, transparent 30%, transparent 70%, var(--darker-bg) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 203, 5, 0.2);
    border: 1px solid var(--pokemon-yellow);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--pokemon-yellow);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 203, 5, 0.3);
}

.hero-title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 5rem 0;
}

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

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(59, 76, 202, 0.2);
    border: 1px solid var(--pokemon-blue);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--water-blue);
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* Game Cards Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.game-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.game-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.game-card:hover .game-card-image img {
    transform: scale(1.1);
}

.game-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--pokemon-red);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
}

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

.game-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.game-card-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.game-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-rtp {
    font-size: 0.875rem;
    color: var(--grass-green);
}

.game-play-btn {
    padding: 0.5rem 1rem;
    background: var(--gradient-pokemon);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-card:hover {
    border-color: var(--pokemon-blue);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 76, 202, 0.2);
}

.feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

/* Payment Methods */
.payment-section {
    background: var(--dark-bg);
}

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

.payment-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.payment-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(102, 187, 106, 0.2);
}

.payment-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
}

.payment-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.payment-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.payment-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

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

.review-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    position: relative;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: var(--pokemon-yellow);
    font-size: 1.25rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-pokemon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.review-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.review-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

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

.faq-item {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 203, 5, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--pokemon-yellow);
    transition: var(--transition);
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Author Section */
.author-section {
    background: var(--dark-bg);
}

.author-card {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 900px;
    margin: 0 auto;
}

.author-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--pokemon-yellow);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.author-title {
    color: var(--pokemon-yellow);
    font-weight: 600;
    margin-bottom: 1rem;
}

.author-bio {
    color: var(--text-muted);
    line-height: 1.8;
}

/* License Section */
.license-card {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 800px;
    margin: 0 auto;
}

.license-badge {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.license-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.license-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.license-number {
    color: var(--grass-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.support-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
}

.support-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsible Gaming */
.responsible-section {
    background: linear-gradient(135deg, rgba(102, 187, 106, 0.1) 0%, rgba(79, 195, 247, 0.1) 100%);
}

.responsible-card {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 900px;
    margin: 0 auto;
}

.responsible-icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.responsible-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Footer */
.site-footer {
    background: var(--dark-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--pokemon-yellow);
}

.footer-links {
    list-style: none;
}

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

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

.footer-links a:hover {
    color: var(--pokemon-yellow);
}

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

.footer-badges {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-badge {
    width: 60px;
    height: 60px;
}

.footer-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    background: var(--dark-bg);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item::after {
    content: '›';
    color: var(--text-muted);
}

.breadcrumb-item:last-child::after {
    display: none;
}

.breadcrumb-item a {
    color: var(--text-muted);
}

.breadcrumb-item.active {
    color: var(--pokemon-yellow);
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Content Page Styles */
.content-section {
    padding: 3rem 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    color: var(--pokemon-yellow);
    margin-top: 2rem;
}

.content-wrapper p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.content-wrapper ul, .content-wrapper ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.content-image {
    width: 100%;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.info-box {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--pokemon-yellow);
    margin: 2rem 0;
}

.info-box h4 {
    color: var(--pokemon-yellow);
    margin-bottom: 0.5rem;
}

/* Table Styles */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.info-table th, .info-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-table th {
    background: rgba(255, 203, 5, 0.1);
    color: var(--pokemon-yellow);
    font-weight: 600;
}

.info-table tr:last-child td {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-bg);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav.active {
        display: flex;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .hero-section {
        min-height: 60vh;
    }

    .author-card, .license-card, .responsible-card {
        flex-direction: column;
        text-align: center;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px var(--pokemon-yellow); }
    50% { box-shadow: 0 0 20px var(--pokemon-yellow), 0 0 30px var(--pokemon-yellow); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

/* Preload optimization */
.preload-image {
    display: none;
}

/* Print styles */
@media print {
    .site-header, .site-footer, .btn-cta {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}
