/* galerabet - Fortune Ox Theme 2026 */
/* Unique Design System */

:root {
    --ox-gold: #D4AF37;
    --ox-red: #8B0000;
    --ox-crimson: #DC143C;
    --ox-dark: #1A0A0A;
    --ox-light: #FFF8E7;
    --ox-accent: #FFD700;
    --ox-green: #228B22;
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #B8860B 100%);
    --gradient-dark: linear-gradient(180deg, #1A0A0A 0%, #2D1515 100%);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--gradient-dark);
    color: var(--ox-light);
    line-height: 1.8;
    min-height: 100vh;
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; color: var(--ox-gold); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    text-align: justify;
}

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

a:hover {
    color: var(--ox-accent);
}

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

/* Header - Non-sticky */
.site-header {
    background: rgba(26, 10, 10, 0.95);
    border-bottom: 2px solid var(--ox-gold);
    padding: 15px 0;
}

.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: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.main-nav a {
    padding: 10px 18px;
    border-radius: 25px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid transparent;
    font-weight: 600;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background: var(--gradient-gold);
    color: var(--ox-dark);
    border-color: var(--ox-gold);
}

/* CTA Button */
.cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gradient-gold);
    color: var(--ox-dark) !important;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
    width: 100%;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

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

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    background: rgba(0,0,0,0.3);
}

.breadcrumb-list {
    display: flex;
    gap: 10px;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb-list li::after {
    content: '›';
    margin-left: 10px;
    color: var(--ox-gold);
}

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

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

.section-alt {
    background: rgba(139, 0, 0, 0.1);
}

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

.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: var(--gradient-gold);
}

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

.game-card {
    background: rgba(45, 21, 21, 0.8);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
}

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

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

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

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

.game-card p {
    font-size: 0.95rem;
    color: rgba(255, 248, 231, 0.8);
    text-align: left;
}

.game-card .cta-btn {
    margin-top: 15px;
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 25px;
    background: rgba(45, 21, 21, 0.9);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin: 40px 0;
    align-items: flex-start;
}

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

.author-info h4 {
    color: var(--ox-gold);
    font-size: 1.3rem;
}

.author-info .author-title {
    color: var(--ox-accent);
    font-style: italic;
    margin-bottom: 10px;
}

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

.review-card {
    background: rgba(45, 21, 21, 0.8);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--ox-gold);
}

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

.reviewer-name {
    font-weight: 700;
    color: var(--ox-gold);
}

.reviewer-location {
    font-size: 0.85rem;
    color: rgba(255, 248, 231, 0.6);
}

.review-stars {
    color: var(--ox-accent);
    font-size: 1.2rem;
}

.review-date {
    font-size: 0.8rem;
    color: rgba(255, 248, 231, 0.5);
    margin-top: 10px;
}

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

.faq-item {
    background: rgba(45, 21, 21, 0.8);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
}

.faq-answer {
    padding: 0 20px 20px;
    color: rgba(255, 248, 231, 0.9);
}

/* Payment Methods */
.payment-section img {
    max-width: 100%;
    border-radius: 12px;
    margin: 20px 0;
}

/* License Badge */
.license-section {
    text-align: center;
}

.license-badge {
    max-width: 300px;
    margin: 20px auto;
    display: block;
}

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

.support-item {
    padding: 30px;
    background: rgba(45, 21, 21, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

/* Responsible Gaming */
.responsible-section {
    background: rgba(34, 139, 34, 0.1);
    border: 1px solid rgba(34, 139, 34, 0.3);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
}

.responsible-section h3 {
    color: var(--ox-green);
}

/* Footer */
.site-footer {
    background: rgba(10, 5, 5, 0.98);
    border-top: 2px solid var(--ox-gold);
    padding: 50px 0 20px;
}

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

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

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

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

.footer-col a {
    color: rgba(255, 248, 231, 0.7);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 20px;
    text-align: center;
}

.age-badge {
    width: 60px;
    height: 60px;
    margin: 15px auto;
    display: block;
}

.footer-legal {
    font-size: 0.85rem;
    color: rgba(255, 248, 231, 0.5);
    max-width: 800px;
    margin: 0 auto;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: 2px solid var(--ox-gold);
    color: var(--ox-gold);
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        background: rgba(26, 10, 10, 0.98);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav a {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin: 0 auto;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--ox-gold); }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* Content Styles */
.content-block {
    margin-bottom: 40px;
}

.content-block h3 {
    color: var(--ox-gold);
    border-left: 4px solid var(--ox-gold);
    padding-left: 15px;
    margin-bottom: 20px;
}

.content-block ul {
    list-style: none;
    padding-left: 20px;
}

.content-block li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.content-block li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--ox-gold);
}

/* Tables */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.info-table th,
.info-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.info-table th {
    background: rgba(212, 175, 55, 0.1);
    color: var(--ox-gold);
}

.info-table tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

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

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

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