@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #6c63ff;
    --secondary-color: #4CAF50;
    --dark-bg: #1a1a2e;
    --darker-bg: #151528;
    --light-text: #ffffff;
    --gray-text: #b3b3b3;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.topbar {
    background-color: var(--darker-bg);
    color: var(--gray-text);
    font-size: 14px;
}

.navbar {
    background-color: var(--dark-bg);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link {
    color: var(--light-text);
    margin: 0 10px;
    font-weight: 500;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.btn-register {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 24px !important;
    border-radius: 25px;
    margin-left: 15px;
}

.btn-register:hover {
    background-color: #5650e6;
}

.hero-section {
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, #6c63ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
}

.next-draw {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.next-draw h3 {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.countdown {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.countdown-item {
    text-align: center;
}

.countdown-item span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.countdown-item .label {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin-top: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 30px;
}

.btn-primary:hover {
    background-color: #5650e6;
}

.hero-image {
    max-width: 100%;
    height: auto;
}

.age-section,
.about-section,
.how-to-play-section,
.faq-section {
    padding: 5rem 0;
    background-color: var(--dark-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.star-divider {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 1rem 0;
}

.disclaimer-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.disclaimer-card h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.verification-points {
    margin-top: 2rem;
}

.point {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.point-icon {
    color: var(--secondary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.about-content p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

.step-card h3 {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--gray-text);
}

.accordion-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.accordion-button {
    background-color: transparent;
    color: var(--light-text);
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(108, 99, 255, 0.1);
    color: var(--primary-color);
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    background-color: rgba(255, 255, 255, 0.02);
    color: var(--gray-text);
}

.responsible-gaming-section,
.contact-section {
    padding: 5rem 0;
    background-color: var(--dark-bg);
}

.guidelines-card,
.support-card,
.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    backdrop-filter: blur(10px);
}

.guidelines-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guidelines-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    color: var(--gray-text);
}

.check-icon {
    color: var(--secondary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.support-content p {
    color: var(--gray-text);
    margin-bottom: 2rem;
}

.support-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.support-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-item div {
    flex: 1;
}

.support-item strong {
    color: var(--light-text);
    display: block;
    margin-bottom: 0.3rem;
}

.support-item p {
    color: var(--primary-color);
    margin: 0;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-content h3 {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.contact-content p {
    color: var(--gray-text);
    margin-bottom: 2rem;
}

.contact-email {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.contact-email strong {
    color: var(--light-text);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-email p {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.response-time {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.footer {
    background-color: var(--darker-bg);
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    text-align: center;
}

.footer-disclaimer {
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    color: var(--gray-text);
    font-size: 1.1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: inline-block;
}

.footer-links {
    margin-bottom: 2.5rem;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-license {
    margin-bottom: 2.5rem;
}

.footer-license p {
    color: var(--gray-text);
    font-size: 0.9rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.footer-certifications {
    margin-bottom: 2.5rem;
}

.cert-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cert-images img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.cert-images a img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.cert-images img:hover,
.cert-images a:hover img {
    opacity: 1;
}

.footer-copyright {
    color: var(--gray-text);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Policy Pages Styles */
.policy-page {
    padding: 5rem 0;
    background-color: var(--dark-bg);
    min-height: 100vh;
}

.policy-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.policy-content h1 {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
    background: linear-gradient(45deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.policy-section h3 {
    color: var(--light-text);
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
}

.policy-section p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.policy-section ul li {
    color: var(--gray-text);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.policy-section ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

.support-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.support-info p {
    margin-bottom: 1rem;
}

.support-info p:last-child {
    margin-bottom: 0;
}

.support-info strong {
    color: var(--light-text);
    display: block;
    margin-bottom: 0.5rem;
}

.cookie-types h3 {
    color: var(--light-text);
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .about-content,
    .feature-card {
        margin-bottom: 2rem;
    }

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

    .guidelines-card,
    .support-card {
        margin-bottom: 2rem;
    }

    .support-links {
        gap: 1rem;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links a {
        margin: 0;
    }

    .cert-images {
        gap: 1.5rem;
    }

    .cert-images img {
        height: 35px;
    }

    .policy-content {
        padding: 2rem;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }
}

.register-page {
    padding: 5rem 0;
    background-color: var(--dark-bg);
    min-height: 100vh;
}

.register-content {
    max-width: 600px;
    margin: 0 auto;
}

.register-content h1 {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
    background: linear-gradient(45deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.register-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-label {
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    padding: 0.8rem 1rem;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    color: var(--light-text);
    box-shadow: none;
}

.password-requirements {
    color: var(--gray-text);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.agreements {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.form-check-label {
    color: var(--gray-text);
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.modal-content {
    background-color: var(--darker-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.modal-body h2 {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.modal-body p {
    color: var(--gray-text);
    margin-bottom: 0.5rem;
}

.verification-note {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

@media (max-width: 768px) {
    .register-form {
        padding: 2rem;
    }

    .register-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .hero-section {
        text-align: center;
        padding: 40px 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .countdown {
        justify-content: center;
    }

    .hero-image {
        margin-top: 3rem;
    }

    .navbar-nav {
        text-align: center;
    }

    .btn-register {
        margin: 10px 0;
    }
}