:root {
    --primary-color: #6366F1;
    --secondary-color: #4F46E5;
    --accent-color: #EC4899;
    --text-color: #1E293B;
    --light-bg: #F8FAFC;
    --gradient-start: #6366F1;
    --gradient-end: #EC4899;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--light-bg);
}

.topbar {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 0;
}

.topbar .age-disclaimer {
    position: relative;
    padding-left: 24px;
}

.topbar .age-disclaimer::before {
    content: "⚠️";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.navbar {
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand img {
    height: 48px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    position: relative;
    transition: color 0.3s;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.register-btn {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white !important;
    border-radius: 12px;
    margin-left: 1rem;
    padding: 0.75rem 2rem !important;
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.2);
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px -1px rgba(99, 102, 241, 0.3);
}

.register-btn::after {
    display: none;
}

.hero-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366F1' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-section h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: #64748B;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.join-now-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    text-decoration: none;
    padding: 1.25rem 3rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
}

.join-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-end), var(--gradient-start));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.join-now-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px -3px rgba(99, 102, 241, 0.4);
}

.join-now-btn:hover::before {
    opacity: 1;
}

.hero-image-container {
    position: relative;
    text-align: center;
}

.hero-image-container::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 50%;
    z-index: -1;
}

.hero-image-container img {
    max-width: 110%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(99, 102, 241, 0.2));
}

.next-draw-section {
    padding: 4rem 0;
    background-color: white;
    border-radius: 30px 30px 0 0;
    margin-top: -30px;
    position: relative;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}

.next-draw-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.countdown-timer {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.next-draw-mobile {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.next-draw-mobile h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.age-disclaimer-section {
    background-color: white;
}

.disclaimer-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.disclaimer-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-box {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-box h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-section {
    background-color: white;
    position: relative;
}

.about-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.about-image {
    position: relative;
    padding: 2rem;
}

.quality-badge {
    position: absolute;
    bottom: 10%;
    right: 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 16px -4px rgba(99, 102, 241, 0.5);
    transform: rotate(5deg);
}

.quality-badge i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.quality-badge span {
    font-size: 1.125rem;
    font-weight: 600;
    white-space: nowrap;
}

.steps-section {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    padding: 5rem 0;
}

.steps-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.4);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-section h1 {
        font-size: 2.75rem;
        text-align: center;
    }

    .hero-description {
        text-align: center;
        font-size: 1.125rem;
    }

    .join-now-btn {
        display: block;
        text-align: center;
        margin: 0 auto;
        max-width: 250px;
    }

    .navbar-nav {
        background: white;
        border-radius: 16px;
        padding: 1rem;
        margin-top: 1rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .register-btn {
        margin: 1rem auto;
        display: inline-block;
        width: 200px;
        text-align: center;
    }

    .countdown-timer {
        font-size: 2.5rem;
    }

    .disclaimer-card {
        padding: 2rem;
    }

    .about-content {
        text-align: center;
        margin-bottom: 3rem;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-item i {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        padding: 1rem;
    }

    .experience-badge span {
        font-size: 1.25rem;
    }

    .step-card {
        margin-bottom: 2rem;
    }
}

.faq-section {
    background-color: white;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    background-color: white;
    color: var(--text-color);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(99, 102, 241, 0.1);
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: all 0.3s ease;
}

.accordion-body {
    padding: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4B5563;
}

.responsible-section {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
}

.guidelines-card, .support-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.guidelines-card h3, .support-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
}

.guidelines-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guidelines-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.guidelines-list li i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.support-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.support-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.support-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
}

.contact-section {
    background-color: white;
}

.contact-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
}

.contact-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-text {
    font-size: 1.2rem;
    color: #4B5563;
    margin-bottom: 2rem;
}

.contact-email {
    display: inline-block;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.response-time {
    color: #6B7280;
    font-size: 0.95rem;
}

.register-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-control {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 2px solid #E5E7EB;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-check-label {
    font-size: 0.95rem;
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-check-label a:hover {
    color: var(--secondary-color);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.register-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.register-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.2);
}

.success-icon {
    font-size: 4rem;
    color: #10B981;
}

.modal-content {
    border-radius: 20px;
    border: none;
}

.modal-body h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.success-close-btn {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.success-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.2);
}

.page-header {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
}

.page-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-item.active {
    color: var(--text-color);
}

.content-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.25rem;
}

.content-section p {
    color: #4B5563;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.disclaimer-section:last-child {
    margin-bottom: 0 !important;
}

.footer {
    background-color: #1E293B;
    color: white;
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.age-warning-bar {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    font-weight: 600;
}

.age-warning-bar i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.license-info {
    color: #94A3B8;
    font-size: 0.95rem;
    max-width: 800px;
    margin: 0 auto;
}

.footer-links {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-license {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.license-text {
    color: #94A3B8;
    font-size: 0.9rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.footer-certifications {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cert-img {
    height: 40px;
    margin: 0.5rem;
    filter: grayscale(1) brightness(1.2);
    transition: all 0.3s ease;
}

.cert-img:hover {
    filter: grayscale(0) brightness(1);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
    color: #94A3B8;
}

@media (max-width: 767.98px) {
    .footer-links .col-md-auto {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        display: block;
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        margin: 0.25rem 0;
    }

    .cert-img {
        height: 35px;
        margin: 0.75rem;
    }
}