/* pixbet Gold Theme - 2026 Edition */
/* Gold Bars & Dollar Bills Premium Casino Theme */

:root {
    --gold-primary: #D4AF37;
    --gold-light: #F5D76E;
    --gold-dark: #B8860B;
    --navy-dark: #0a0e1a;
    --navy-medium: #121829;
    --navy-light: #1a2238;
    --text-white: #ffffff;
    --text-gold: #D4AF37;
    --text-gray: #a0a8b8;
    --green-money: #85bb65;
    --accent-red: #c41e3a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-medium) 50%, var(--navy-dark) 100%);
    color: var(--text-white);
    line-height: 1.7;
    min-height: 100vh;
}

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

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; color: var(--gold-primary); }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

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

a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: linear-gradient(180deg, var(--navy-dark) 0%, transparent 100%);
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
    flex-wrap: wrap;
}

.main-nav a {
    display: block;
    padding: 10px 18px;
    color: var(--text-white);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-primary);
}

/* CTA Button */
.btn-cta {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--navy-dark) !important;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.hero-banner {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-content {
    text-align: center;
    margin-top: 40px;
}

.hero-content h1 {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--text-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    font-size: 0.9rem;
}

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

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

/* Section Styles */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

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

.game-card {
    background: linear-gradient(145deg, var(--navy-light) 0%, var(--navy-medium) 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

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

.game-card-content {
    padding: 25px;
}

.game-card h3 {
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.game-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-box {
    background: var(--navy-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Payment Section */
.payment-section {
    background: var(--navy-light);
    border-radius: 20px;
    padding: 50px;
    margin: 40px 0;
}

.payment-section img {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
}

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

.review-card {
    background: var(--navy-light);
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--gold-primary);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-primary);
}

.reviewer-info h4 {
    color: var(--text-white);
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.review-stars {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.review-text {
    font-style: italic;
    color: var(--text-gray);
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 15px;
}

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

.faq-item {
    background: var(--navy-light);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--gold-primary);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 25px;
    background: var(--navy-light);
    padding: 30px;
    border-radius: 16px;
    margin: 40px 0;
    align-items: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

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

.author-title {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* License Section */
.license-section {
    text-align: center;
    padding: 40px;
    background: var(--navy-light);
    border-radius: 16px;
    margin: 40px 0;
}

.license-badge {
    max-width: 300px;
    margin: 20px auto;
    border-radius: 12px;
}

/* Support Section */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.support-item {
    text-align: center;
    padding: 25px;
    background: var(--navy-medium);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.support-item h4 {
    color: var(--gold-primary);
    margin-top: 15px;
}

/* Responsible Gaming */
.responsible-section {
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-medium) 100%);
    padding: 50px;
    border-radius: 20px;
    margin: 40px 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--accent-red);
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Footer */
.site-footer {
    background: var(--navy-dark);
    padding: 60px 0 30px;
    margin-top: 60px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.footer-col h4 {
    color: var(--gold-primary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--text-gray);
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.payment-icons img {
    height: 40px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.payment-icons img:hover {
    opacity: 1;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    color: var(--gold-primary);
    margin-bottom: 20px;
}

/* Inner Page Styles */
.page-header {
    padding: 40px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--navy-medium) 0%, transparent 100%);
}

.page-header h1 {
    color: var(--gold-primary);
}

.content-section {
    padding: 40px 0;
}

.content-section img {
    max-width: 100%;
    border-radius: 12px;
    margin: 20px 0;
}

.content-section h2 {
    margin-top: 40px;
}

.content-section ul, .content-section ol {
    margin: 20px 0 20px 30px;
    color: var(--text-gray);
}

.content-section li {
    margin-bottom: 10px;
}

/* Table Styles */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--navy-light);
    border-radius: 12px;
    overflow: hidden;
}

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

.info-table th {
    background: var(--navy-medium);
    color: var(--gold-primary);
    font-weight: 600;
}

.info-table td {
    color: var(--text-gray);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }
    
    .header-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .main-nav ul {
        justify-content: center;
    }
    
    .hero-banner {
        max-height: 300px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .payment-section {
        padding: 30px 20px;
    }
    
    .responsible-section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .btn-cta {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .game-card img {
        height: 160px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Gold Shimmer Effect */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.gold-shimmer {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Sitemap Page */
.sitemap-section {
    padding: 60px 0;
}

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

.sitemap-col h3 {
    color: var(--gold-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold-primary);
}

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

.sitemap-col li {
    margin-bottom: 12px;
}

.sitemap-col a {
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sitemap-col a::before {
    content: '→';
    color: var(--gold-primary);
}

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