/* Betinia - Premium Gaming Theme Styles */

:root {
    --jungle-green: #2C5F2D;
    --desert-gold: #D4A574;
    --sunset-orange: #E67E22;
    --night-dark: #1A1A1A;
    --ivory-white: #F4F1E8;
    --accent-green: #3A7D44;
    --light-bg: #F9F7F4;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background-color: var(--ivory-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--night-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

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

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, var(--jungle-green) 0%, var(--accent-green) 100%);
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.main-navigation {
    position: relative;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--ivory-white);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255,255,255,0.15);
    color: var(--desert-gold);
}

.btn-primary {
    background: linear-gradient(135deg, var(--sunset-orange) 0%, #D35400 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(230,126,34,0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230,126,34,0.6);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26,26,26,0.3) 0%, rgba(26,26,26,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    color: white;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.btn-hero {
    display: inline-block;
    background: linear-gradient(135deg, var(--desert-gold) 0%, #C89B5A 100%);
    color: var(--night-dark);
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 6px 20px rgba(212,165,116,0.5);
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212,165,116,0.7);
}

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

.section-title {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--jungle-green);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #555;
}

/* Intro Section */
.intro-section {
    background-color: white;
}

.intro-text {
    font-size: 17px;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
}

/* Games Section */
.games-section {
    background: linear-gradient(to bottom, var(--light-bg) 0%, white 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.game-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.game-image-wrapper {
    width: 100%;
    overflow: hidden;
    background: #f0f0f0;
}

.game-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

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

.game-content {
    padding: 25px;
}

.game-title {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--jungle-green);
}

.game-description {
    font-size: 15px;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.btn-game {
    display: inline-block;
    background: linear-gradient(135deg, var(--jungle-green) 0%, var(--accent-green) 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-game:hover {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--jungle-green) 100%);
    transform: translateX(5px);
}

/* About Section */
.about-section {
    background-color: white;
}

.about-text {
    font-size: 17px;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
}

/* Payment Section */
.payment-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.payment-method {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.payment-method:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.payment-icon-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.payment-name {
    font-size: 22px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--jungle-green);
}

.payment-desc {
    font-size: 15px;
    margin-bottom: 20px;
    color: #666;
    text-align: center;
}

.payment-details {
    list-style: none;
    padding: 0;
}

.payment-details li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #555;
}

.payment-details li:last-child {
    border-bottom: none;
}

.withdrawal-info {
    background: linear-gradient(135deg, var(--jungle-green) 0%, var(--accent-green) 100%);
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
    color: white;
}

.subsection-title {
    font-size: 26px;
    margin-bottom: 20px;
    color: white;
}

.withdrawal-text {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* License Section */
.license-section {
    background-color: white;
}

.license-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.license-badge {
    flex: 0 0 200px;
}

.license-text {
    flex: 1;
    min-width: 300px;
}

.license-desc {
    font-size: 17px;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
}

/* Responsible Gaming Section */
.responsible-gaming-section {
    background: linear-gradient(to bottom, var(--light-bg) 0%, white 100%);
}

.responsible-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.responsible-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.responsible-subtitle {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--jungle-green);
}

.responsible-text {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.age-restriction {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, var(--sunset-orange) 0%, #D35400 100%);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    color: white;
}

.age-text {
    font-size: 18px;
    line-height: 1.6;
}

/* Support Section */
.support-section {
    background-color: white;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.support-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--jungle-green) 0%, var(--accent-green) 100%);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    gap: 30px;
    align-items: center;
}

.support-image-wrapper {
    flex: 0 0 400px;
    height: 300px;
}

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

.support-content {
    flex: 1;
    padding: 30px;
    color: white;
}

.support-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
}

.support-text {
    font-size: 16px;
    line-height: 1.7;
}

.support-methods {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.support-method {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
}

.method-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--jungle-green);
}

.method-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(to bottom, var(--light-bg) 0%, white 100%);
}

.faq-item {
    background: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.faq-question {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--jungle-green);
}

.faq-answer {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Testimonials Section */
.testimonials-section {
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-size: 18px;
    color: var(--jungle-green);
}

.author-location {
    font-size: 14px;
    color: #888;
}

.testimonial-rating {
    color: var(--desert-gold);
    font-size: 20px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-date {
    font-size: 13px;
    color: #999;
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, var(--night-dark) 0%, #2C2C2C 100%);
    color: var(--ivory-white);
    padding: 60px 0 30px;
}

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

.footer-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--desert-gold);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--ivory-white);
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--desert-gold);
}

.payment-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

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

.payment-text {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

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

.footer-license {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-disclaimer {
    flex: 1;
    min-width: 300px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 38px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .support-card {
        flex-direction: column;
    }
    
    .support-image-wrapper {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
    }
    
    .hero-section {
        height: 500px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .license-content {
        flex-direction: column;
        text-align: center;
    }
    
    .age-restriction {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .game-title {
        font-size: 20px;
    }
}

/* Loading optimization removed - using native lazy loading */

/* Game Page Specific Styles */
.game-hero-section {
    background: linear-gradient(135deg, var(--jungle-green) 0%, var(--accent-green) 100%);
    padding: 80px 0;
}

.game-hero-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.game-hero-text {
    flex: 1;
    min-width: 300px;
    color: white;
}

.game-hero-title {
    font-size: 48px;
    margin-bottom: 15px;
    color: white;
}

.game-hero-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--desert-gold);
}

.game-hero-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.game-hero-image {
    flex: 0 0 400px;
}

.game-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.game-info-section {
    background-color: white;
}

.game-info-text {
    font-size: 17px;
    margin-bottom: 25px;
    text-align: justify;
    line-height: 1.8;
}

.game-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.game-image-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.game-image-item img {
    width: 100%;
    height: auto;
    display: block;
}

.game-image-item figcaption {
    padding: 15px;
    background: var(--light-bg);
    text-align: center;
    font-size: 14px;
    color: #666;
}

.game-strategy-image {
    margin: 40px 0;
    text-align: center;
}

.game-strategy-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 0 auto;
}

.game-strategy-image figcaption {
    margin-top: 15px;
    font-size: 16px;
    color: #666;
    font-style: italic;
}

.game-cta-box {
    background: linear-gradient(135deg, var(--sunset-orange) 0%, #D35400 100%);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    margin-top: 50px;
    color: white;
}

.cta-box-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
}

.cta-box-text {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .game-hero-content {
        flex-direction: column;
    }
    
    .game-hero-title {
        font-size: 36px;
    }
    
    .game-hero-subtitle {
        font-size: 20px;
    }
    
    .game-hero-image {
        flex: none;
        width: 100%;
    }
    
    .game-cta-box {
        padding: 30px 20px;
    }
    
    .cta-box-title {
        font-size: 26px;
    }
}
