:root {
    --font-primary: 'Poppins', Arial, Helvetica Neue, Helvetica, sans-serif;
    --color-gold: #FFC94A;
    --color-orange: #FF7A00;
    --color-dark-red: #8B0000;
    --color-text: #FFFFFF;
    --color-bg-dark: #120505;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-bg-dark);
    line-height: 1.6;
}

.page-wrapper {
    background-image: linear-gradient(rgba(18, 5, 5, 0.9), rgba(18, 5, 5, 0.9)), url('images/hero-image.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 { font-weight: 700; }

/* --- Buttons --- */
.btn {
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.btn-primary {
    background: linear-gradient(180deg, var(--color-gold), var(--color-orange));
    color: var(--color-bg-dark);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}
.btn-outline {
    background-color: transparent;
    border-color: var(--color-gold);
    color: var(--color-gold);
}
.btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
}
.btn-secondary {
    background-color: rgba(0,0,0,0.4);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--color-text);
}
.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-text);
}
.btn-large { padding: 16px 35px; font-size: 1.1rem; }

/* --- Header --- */
.header { padding: 20px 0; position: absolute; width: 100%; z-index: 100; }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 35px; }
.navigation a { margin-left: 15px; }

/* --- Hero Section --- */
.hero { min-height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 0 40px; }
.hero-content { max-width: 800px; }

/* ===== MODIFICATION START ===== */
.slot-logo {
    max-width: 350px;
    margin-bottom: 20px;
    /* Add a layered glow effect */
    filter: drop-shadow(0 0 15px var(--color-gold));
    /* Apply the pulsing animation */
    animation: pulsing-glow 3s infinite ease-in-out;
}
/* ===== MODIFICATION END ===== */

.hero h1 { font-size: 3.2rem; font-weight: 900; color: var(--color-gold); text-shadow: 0 0 15px var(--color-orange); margin-bottom: 10px; }
.hero p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 30px; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.cta-main { display: flex; flex-direction: column; }
.btn-text { font-size: 1.1rem; }
.btn-subtext { font-size: 0.8rem; text-transform: none; opacity: 0.8; font-weight: 400; }

/* --- General Section Styling --- */
section { padding: 80px 0; }
section h2 { font-size: 2.8rem; text-align: center; margin-bottom: 50px; color: var(--color-gold); }
.benefits, .about-game, .faq, .final-cta, .gallery { background-color: rgba(0,0,0,0.4); border-top: 1px solid rgba(255,255,255,0.1); }

/* --- Benefits Section --- */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; text-align: center; }
.benefit-card { background-color: rgba(0,0,0,0.4); padding: 30px; border-radius: 10px; border-top: 3px solid var(--color-orange); }
.benefit-card img { height: 60px; margin-bottom: 20px; }
.benefit-card h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--color-text); }

/* --- About Game Section --- */
.about-game .container { display: flex; align-items: center; gap: 50px; }
.about-image { flex: 1; text-align: center; }
.about-image img { max-width: 100%; max-height: 400px; }
.about-text { flex: 1.5; }
.about-text h2 { text-align: left; font-size: 2.5rem; margin-bottom: 20px; }
.about-text p { margin-bottom: 15px; opacity: 0.9; }
.about-text h3 { font-size: 1.5rem; color: var(--color-gold); margin-top: 30px; margin-bottom: 15px; }
.about-text ul { padding-left: 25px; margin-bottom: 20px; }
.about-text li { margin-bottom: 10px; padding-left: 10px; }
.about-text ul li::marker { color: var(--color-gold); font-size: 1.2em; }


/* --- FAQ Section --- */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.2); }
.faq-question { background: none; border: none; width: 100%; text-align: left; padding: 20px 0; font-family: var(--font-primary); font-size: 1.2rem; font-weight: 600; color: var(--color-text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-icon { font-size: 1.8rem; color: var(--color-gold); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-answer p { padding: 0 10px 20px; opacity: 0.8; }
.faq-question.active + .faq-answer { border-top: 1px solid rgba(255,255,255,0.1); }


/* --- Final CTA --- */
.final-cta { text-align: center; }
.final-cta p { font-size: 1.1rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* --- Gallery Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

/* --- Lightbox Styles --- */
.lightbox {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none; /* Changed by JS */
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.4s;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 5px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--color-gold);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* --- Footer --- */
.footer { padding: 30px 0; background-color: #0A0202; font-size: 0.9rem; }
.footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-provider { display: flex; align-items: center; gap: 15px; }
.footer-provider img { height: 25px; }
.footer-legal { text-align: right; opacity: 0.7; }

/* --- Responsive --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem !important; }
    h2 { font-size: 2rem !important; }
    .header .container { flex-direction: column; gap: 15px; }
    
    .hero { padding-top: 160px; }

    .about-game .container { flex-direction: column; }
    .about-text h2 { text-align: center; }
    .footer .container { flex-direction: column; text-align: center; }
    .footer-legal { text-align: center; }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== NEW ANIMATION ===== */
@keyframes pulsing-glow {
  0% {
    filter: drop-shadow(0 0 15px var(--color-gold));
  }
  50% {
    filter: drop-shadow(0 0 25px var(--color-gold));
  }
  100% {
    filter: drop-shadow(0 0 15px var(--color-gold));
  }
}