/* 119bet - OOCSS Architecture */
/* Colors: Blue (#0066CC) + White (#FFFFFF) + Red (#FF3333) */

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

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #F5F5F5;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Notification Bar */
.notification-bar {
    background: linear-gradient(90deg, #0066CC 0%, #0052A3 100%);
    color: #FFF;
    text-align: center;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 14px;
}

/* Header */
.header {
    background: #FFF;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.header__logo img {
    height: 50px;
}

.header__logo-text {
    font-size: 28px;
    font-weight: 900;
    color: #0066CC;
}

.header__nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.header__nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.header__nav-link:hover,
.header__nav-link.is-active {
    color: #0066CC;
}

.header__action {
    background: #FF3333;
    color: #FFF;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.header__action:hover {
    background: #E62E2E;
}

/* Hero */
.hero {
    background: url('/images/hero-background.jpg') center/cover;
    position: relative;
    padding: 80px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 102, 204, 0.85);
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
    color: #FFF;
}

.hero__title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 22px;
    margin-bottom: 30px;
}

.hero__cta {
    display: inline-block;
    background: #FF3333;
    color: #FFF;
    padding: 18px 50px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.3s, background 0.3s;
}

.hero__cta:hover {
    background: #E62E2E;
    transform: scale(1.05);
}

/* Content Wrapper - Two Column Layout */
.content-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

/* Main Column */
.main-column {
    background: transparent;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.game-card {
    background: #FFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.game-card__body {
    padding: 20px;
}

.game-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 10px;
}

.game-card__description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.game-card__cta {
    display: inline-block;
    background: #0066CC;
    color: #FFF;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.game-card__cta:hover {
    background: #0052A3;
}

/* FAQ Cards */
.faq-cards {
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #0066CC;
    text-align: center;
    margin-bottom: 30px;
}

.faq-card {
    background: #FFF;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.faq-card__question {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

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

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.review-card {
    background: #FFF;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.review-card__stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 10px;
}

.review-card__text {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.review-card__author {
    font-size: 13px;
    font-weight: 600;
    color: #0066CC;
}

/* Sidebar Info */
.sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-widget,
.promo-widget,
.trust-widget {
    background: #FFF;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 15px;
}

.widget-list {
    list-style: none;
}

.widget-list li {
    padding: 10px 0;
    border-bottom: 1px solid #E0E0E0;
}

.widget-list li:last-child {
    border-bottom: none;
}

.promo-highlight {
    background: linear-gradient(135deg, #FF3333 0%, #E62E2E 100%);
    color: #FFF;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.trust-badge__icon {
    font-size: 28px;
}

.trust-badge__text {
    font-size: 14px;
    font-weight: 600;
}

/* Responsible Banner */
.responsible-banner {
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    color: #FFF;
    padding: 50px 20px;
    text-align: center;
    margin-top: 40px;
}

.responsible-banner h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.responsible-banner p {
    max-width: 800px;
    margin: 0 auto 15px;
    font-size: 16px;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: #1A1A1A;
    color: #FFF;
    padding: 50px 20px 30px;
}

.footer__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0066CC;
}

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

.footer-links__item {
    margin-bottom: 12px;
}

.footer-links__link {
    color: #CCC;
    transition: color 0.3s;
}

.footer-links__link:hover {
    color: #0066CC;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
    }
    
    .hero__title {
        font-size: 32px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
    }
}
