:root {
    --color-primary: #E63946; 
    --color-secondary: #FFC300; 
    --color-background: #FFFFFF;
    --color-light-section: #F4F4F4;
    --color-text: #333333;
    --color-text-light: #FFFFFF;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    display: block;
}

.section-padding {
    padding: 80px 0;
}

.dark-section {
    background-color: var(--color-light-section);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-primary);
}

/* --- Header --- */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.main-nav a {
    margin-left: 15px;
    text-decoration: none;
}

.btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.btn-cta {
    font-size: 1.1rem;
    padding: 15px 40px;
    margin-top: 20px;
}

#hero {
    text-align: center;
    padding: 60px 0;
}

.main-banner {
    display: block;
    margin: 0 auto 40px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.hero-content {
    max-width: 800px; 
    margin: 0 auto;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3.5rem;
    color: var(--color-text);
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #555;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.feature-item h3 {
    color: var(--color-text);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.game-card {
    background: var(--color-background);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.game-card img { height: 200px; width: 100%; object-fit: cover; }
.game-info { padding: 25px; text-align: center; }
.game-info h3 { font-size: 1.8rem; color: var(--color-text); margin-bottom: 20px; }

.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #ddd; }
.faq-question { padding: 20px 0; font-size: 1.2rem; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--color-text); }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--color-primary); transition: transform 0.3s ease; }
details[open] > .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 0 20px 0; color: #555; line-height: 1.7; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--color-background);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.blog-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.blog-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

.blog-meta {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.blog-info h3 {
    font-size: 1.4rem;
    color: var(--color-text);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.blog-info p {
    color: #555;
    flex-grow: 1; 
    margin-bottom: 20px;
}

.main-footer-content { background: var(--color-light-section); text-align: center; padding: 20px 0; margin-top: 40px; border-top: 1px solid #eee; }

.live-chat { position: fixed; bottom: 90px; right: 20px; width: 60px; height: 60px; background-color: var(--color-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--color-text-light); cursor: pointer; z-index: 999; box-shadow: 0 4px 20px rgba(230, 57, 70, 0.5); }
.promo-footer { position: fixed; bottom: 0; left: 0; width: 100%; background-color: var(--color-secondary); padding: 10px 0; z-index: 1001; color: var(--color-text); font-weight: 700; display: block; }
.promo-container { display: flex; justify-content: center; align-items: center; position: relative; }
.promo-text { margin-right: 20px; }
.promo-footer .btn-sm { padding: 5px 15px; }
.close-promo-btn { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); background: none; border: none; font-size: 1.5rem; color: var(--color-text); cursor: pointer; }

@media (max-width: 768px) {
    .section-title, .hero-content h1 { font-size: 2.2rem; }
    .main-header .container { flex-direction: column; }
    .main-nav { margin-top: 15px; }
    .promo-container { flex-direction: column; text-align: center; }
    .promo-text { margin: 0 0 10px 0; }
}