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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0a0a;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Age Gate */
.age-gate {
    display: flex;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: #1a1a1a;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.3), 0 0 40px rgba(139, 92, 246, 0.2);
    animation: slideIn 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.age-gate-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 36px;
    margin: 0 auto 20px;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6), 0 0 60px rgba(139, 92, 246, 0.4);
}

.age-gate-content h2 {
    margin: 0 0 15px 0;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
}

.age-gate-content > p {
    margin: 0 0 30px 0;
    color: #b0b0b0;
    font-size: 16px;
}

.age-gate-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-age-confirm {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5), 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-age-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.8), 0 0 50px rgba(139, 92, 246, 0.5), 0 6px 20px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

.btn-age-exit {
    background: #2a2a2a;
    color: #b0b0b0;
    border: 1px solid #3a3a3a;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-age-exit:hover {
    background: #3a3a3a;
    color: #e0e0e0;
    border-color: #4a4a4a;
}

.age-gate-note {
    margin-top: 20px;
    font-size: 12px;
    color: #6a6a6a;
    font-style: italic;
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container[style*="display: none"] {
    display: none !important;
}

.container[style*="display: flex"] {
    display: flex !important;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 35px;
    margin-bottom: 30px;
    background: #1a1a1a;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.1);
    flex-wrap: wrap;
    gap: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.logo-container {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 200px;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    color: #ffffff;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.3px;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.logo {
    max-height: 80px;
    max-width: 300px;
    object-fit: contain;
}

.logo-placeholder h1 {
    font-size: 24px;
    color: #ffffff;
    font-weight: bold;
    margin: 0;
}

.tagline {
    flex: 1;
    text-align: center;
    min-width: 200px;
}

.tagline p {
    margin: 0;
    font-size: 18px;
    color: #b0b0b0;
    font-weight: 600;
}

.age-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6), 0 2px 8px rgba(59, 130, 246, 0.4);
    flex-shrink: 0;
}

/* Main Content */
.main-content {
    flex: 1;
    background: #1a1a1a;
    border-radius: 16px;
    padding: 45px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.1);
    margin-bottom: 30px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px 0;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 60px rgba(59, 130, 246, 0.3);
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    color: #ffffff;
    margin: 0 0 20px 0;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 22px;
    color: #b0b0b0;
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
}

/* Description Section */
.description-section {
    margin-bottom: 60px;
}

.description {
    font-size: 19px;
    line-height: 1.9;
    color: #e0e0e0;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.description p {
    margin-bottom: 20px;
}

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

/* Info Cards Grid */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: rgba(59, 130, 246, 0.08);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(59, 130, 246, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 50px rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.4);
}

.info-card-icon {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.info-card-content {
    flex: 1;
}

.info-card-title {
    margin: 0 0 15px 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.info-card-text {
    margin: 0 0 12px 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
}

.info-card-note {
    margin: 12px 0 0 0;
    color: #b0b0b0;
    font-size: 14px;
    font-style: italic;
    line-height: 1.6;
}

.license-info {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
}

.eligibility-info {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.2);
}

.eligibility-info:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 50px rgba(139, 92, 246, 0.25);
    border-color: rgba(139, 92, 246, 0.4);
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px 0;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #fff;
    border: none;
    padding: 20px 55px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5), 0 6px 20px rgba(59, 130, 246, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.8), 0 0 60px rgba(139, 92, 246, 0.5), 0 8px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.footer-links {
    margin-bottom: 20px;
}

.footer-license {
    margin: 15px 0;
    padding: 15px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    font-size: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.footer-license p {
    margin: 0;
    color: #ffffff;
}

.footer-link {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #3b82f6;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

.separator {
    margin: 0 15px;
    color: #4a4a4a;
}

.copyright {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    font-size: 14px;
    color: #6a6a6a;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #1a1a1a;
    margin: auto;
    padding: 35px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8), 0 0 60px rgba(59, 130, 246, 0.3);
    animation: slideIn 0.3s ease;
    position: relative;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.success-content {
    text-align: center;
    padding: 50px 30px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 20px;
    font-weight: 800;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6), 0 4px 15px rgba(59, 130, 246, 0.4);
}

.close {
    color: #6a6a6a;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    transition: all 0.3s ease;
}

.close:hover,
.close:focus {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

.modal-content h2 {
    margin-bottom: 25px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
}

.modal-text {
    text-align: left;
    line-height: 1.8;
    color: #e0e0e0;
}

.modal-text h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.modal-text ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.modal-text li {
    margin-bottom: 8px;
}

/* Form Styles */
.registration-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    font-size: 16px;
    background: #2a2a2a;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: #6a6a6a;
}

.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2), 0 0 20px rgba(59, 130, 246, 0.3);
    background: #2f2f2f;
}

.form-hint {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #6a6a6a;
    font-style: italic;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: normal;
    color: #e0e0e0;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #3b82f6;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-submit {
    flex: 1;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5), 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.8), 0 0 50px rgba(139, 92, 246, 0.5), 0 6px 20px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

.btn-cancel {
    flex: 1;
    background: #2a2a2a;
    color: #b0b0b0;
    border: 1px solid #3a3a3a;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: #3a3a3a;
    color: #e0e0e0;
    border-color: #4a4a4a;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.8), 0 0 60px rgba(139, 92, 246, 0.5);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .hero-image {
        min-height: 300px;
    }

    .hero-title {
        font-size: 42px;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
        font-size: 20px;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .header {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        text-align: center;
    }

    .logo-container {
        justify-content: center;
    }

    .logo-text {
        font-size: 22px;
        text-align: center;
        text-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
    }

    .tagline {
        order: 2;
    }

    .age-badge {
        order: 3;
    }

    .main-content {
        padding: 25px 20px;
    }

    .hero-section {
        margin-bottom: 50px;
        padding: 20px 0;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-image {
        min-height: 250px;
    }

    .description-section {
        margin-bottom: 40px;
    }

    .description {
        font-size: 17px;
        text-align: left;
    }

    .info-cards-grid {
        margin-bottom: 40px;
    }

    .info-card {
        padding: 25px;
    }

    .info-card-title {
        font-size: 20px;
    }

    .info-card-text {
        font-size: 16px;
    }

    .cta-section {
        margin-top: 40px;
        padding: 30px 0;
    }

    .btn-primary {
        padding: 15px 40px;
        font-size: 18px;
    }

    .modal-content {
        width: 95%;
        padding: 20px;
    }

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

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .separator {
        display: none;
    }
}

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

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-image {
        min-height: 200px;
    }

    .description {
        font-size: 16px;
    }

    .info-card {
        padding: 20px;
    }

    .info-card-icon {
        font-size: 36px;
    }

    .info-card-title {
        font-size: 18px;
    }

    .age-badge {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-placeholder h1 {
        font-size: 24px;
    }
}

