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

:root {
    --primary-blue: #0066cc;
    --dark-bg: #1a1a2e;
    --darker-bg: #0f0f1e;
    --light-text: #ffffff;
    --gray-text: #9aa4b0;
    --accent-gold: #c6a246;
    --gem-purple: #9b4dca;
    --gem-cyan: #47bfe7;
    --gem-green: #48c774;
    --gem-red: #e74c3c;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--light-text);
    background-color: var(--dark-bg);
}

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

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

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

/* 18+ Top Banner */
.age-banner {
    background-color: var(--primary-blue);
    padding: 8px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.age-text {
    font-size: 18px;
    font-weight: bold;
    color: var(--light-text);
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--darker-bg);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.btn-accept {
    background-color: var(--primary-blue);
    color: var(--light-text);
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-accept:hover {
    background-color: #0052a3;
}

/* Header */
.header {
    background-color: rgba(26, 26, 46, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 34px;
    z-index: 998;
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 60px;
    height: 60px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    color: var(--light-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--primary-blue);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--light-text);
    transition: all 0.3s ease;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gem-purple) 0%, var(--gem-cyan) 100%);
    opacity: 0.3;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://static.vecteezy.com/system/resources/previews/069/309/732/non_2x/set-of-magic-crystal-gems-in-turquoise-pink-and-purple-color-in-golden-frame-for-slots-games-and-casino-design-vector.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    filter: blur(3px);
}

.hero .container {
    position: relative;
    z-index: 1;
    padding: 80px 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background-color: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
    padding: 15px 50px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--light-text);
    color: var(--dark-bg);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #f5f5f5;
    color: #333;
}

.about-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.game-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.game-card img {
    width: 100%;
    height: auto;
}

.game-card h3 {
    font-size: 28px;
    margin: 20px 0;
    color: #333;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 12px 40px;
    margin: 20px 0 30px 0;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--light-text);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    background-color: var(--primary-blue);
    color: var(--light-text);
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #0052a3;
}

.faq-question::after {
    content: '▼';
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #fff;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    color: #333;
}

/* Experience Banner */
.experience-banner {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding: 60px 0;
    text-align: center;
}

.experience-banner h2 {
    font-size: 32px;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.testimonials-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-avatar {
    margin-bottom: 20px;
}

.testimonial-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.testimonial-content p {
    color: #666;
    line-height: 1.6;
}

/* Newsletter */
.newsletter-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    text-align: center;
}

.newsletter-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.btn-submit {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-blue);
    color: var(--light-text);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.contact-section .container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3,
.contact-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.contact-group {
    margin-bottom: 30px;
}

.contact-group h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.contact-group p {
    color: #666;
}

.contact-group a {
    color: #0066cc;
    transition: color 0.3s ease;
}

.contact-group a:hover {
    color: #0052a3;
    text-decoration: underline;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: inherit;
}

.btn-send {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-send:hover {
    background-color: var(--primary-blue);
    color: var(--light-text);
}

/* Footer */
.footer {
    background-color: var(--darker-bg);
}

.disclaimer-section {
    background-color: var(--primary-blue);
    padding: 60px 0;
}

.disclaimer-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
}

.disclaimer-section p {
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: center;
}

.responsible-gaming-logos {
    padding: 60px 0;
    background-color: var(--dark-bg);
}

.responsible-gaming-logos h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.logos-grid img {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logos-grid a:hover img {
    opacity: 1;
}

.age-restriction-text {
    text-align: center;
    font-size: 16px;
    color: var(--gray-text);
    max-width: 800px;
    margin: 0 auto;
}

.footer-links {
    padding: 40px 0;
    background-color: var(--darker-bg);
}

.footer-links nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    gap: 30px;
}

.footer-links a {
    color: var(--gray-text);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

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

.footer-bottom p {
    color: var(--primary-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 32px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-section .container {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links nav ul {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .logos-grid {
        flex-direction: column;
        gap: 20px;
    }
}

/* Content Pages Styling */
.content-page {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.content-page .container {
    max-width: 900px;
}

.content-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #333;
}

.content-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #333;
}

.content-page h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.content-page p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.content-page ul,
.content-page ol {
    margin-bottom: 20px;
    margin-left: 30px;
    color: #666;
}

.content-page li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.content-page a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.content-page a:hover {
    color: #0052a3;
}
