/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #f8f9fa;
}

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

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

ul {
    list-style: none;
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.logo-area img {
    width: 180px;
    height: auto;
}

.main-navigation .nav-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.main-navigation a {
    color: #ffffff;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.main-navigation a:hover {
    color: #ffd700;
    border-bottom-color: #ffd700;
}

.header-cta .btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.header-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.75) 100%);
    z-index: 2;
}

.hero-text-wrapper {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-hero {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    padding: 16px 48px;
    border-radius: 35px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.7);
}

/* Main Content Sections */
.main-content {
    background-color: #ffffff;
}

section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 25px;
    font-weight: 700;
}

section h3 {
    font-size: 1.8rem;
    color: #16213e;
    margin-top: 35px;
    margin-bottom: 18px;
    font-weight: 600;
}

section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

section ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

section ul li {
    list-style: disc;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #34495e;
}

section ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

section ol li {
    list-style: decimal;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #34495e;
}

.section-heading {
    text-align: center;
    margin-bottom: 20px;
}

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

/* Intro Section */
.intro-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Games Showcase */
.games-showcase {
    background-color: #ffffff;
}

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

.game-card {
    background: #ffffff;
    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%;
    height: 220px;
    overflow: hidden;
}

.game-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.game-info {
    padding: 25px;
}

.game-info h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.game-info p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}

.btn-secondary {
    display: inline-block;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    color: #ffffff;
    padding: 10px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

/* Promotions Section */
.promotions-section {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
}

/* Payment Methods */
.payment-methods {
    background-color: #ffffff;
}

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

.payment-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.payment-item img {
    margin: 0 auto 20px;
    max-height: 80px;
}

.payment-item h3 {
    font-size: 1.4rem;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.payment-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.payment-details {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
    margin-top: 40px;
}

.payment-details h3 {
    margin-top: 0;
}

/* License Section */
.license-section {
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f2 100%);
}

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

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

.license-badge {
    flex-shrink: 0;
}

.license-badge img {
    max-width: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsible Gaming */
.responsible-gaming {
    background-color: #ffffff;
}

.responsible-content {
    position: relative;
}

.age-badge {
    float: right;
    margin: 0 0 20px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
}

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

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

.support-channel {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.support-channel img {
    margin: 0 auto 20px;
}

.support-channel h3 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.support-channel p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #fef5e7 0%, #fdebd0 100%);
}

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

.faq-item h3 {
    color: #ff6b35;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.faq-item p {
    margin-bottom: 15px;
}

/* Reviews Section */
.reviews-section {
    background-color: #ffffff;
}

.reviews-intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.15rem;
    color: #555;
}

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

.review-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

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

.reviewer-info strong {
    display: block;
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.reviewer-location {
    font-size: 0.9rem;
    color: #777;
}

.review-rating {
    color: #ffd700;
    font-size: 1.2rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #34495e;
}

.review-date {
    font-size: 0.85rem;
    color: #999;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 60px 0 30px;
}

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

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffd700;
}

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

.footer-column a {
    color: #e0e0e0;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: #ffd700;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.15);
}

.social-links img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.footer-payment h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #ffd700;
}

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

.payment-icons img {
    height: 40px;
    width: auto;
    filter: brightness(0.9);
}

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

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-badges img {
    height: 50px;
    width: auto;
}

.footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #888;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .main-navigation .nav-list {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-banner {
        height: 450px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    section h2 {
        font-size: 1.9rem;
    }
    
    section h3 {
        font-size: 1.5rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .license-content {
        flex-direction: column;
        text-align: center;
    }
    
    .age-badge {
        float: none;
        margin: 0 auto 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .btn-hero {
        padding: 14px 36px;
        font-size: 16px;
    }
    
    section h2 {
        font-size: 1.6rem;
    }
    
    section p {
        font-size: 1rem;
    }
}
