/* ==========================================
   DISTURBIA MAS - CLEAN SIMPLE DESIGN
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    background: #000000;
}

/* ==========================================
   MAIN CONTAINER
   ========================================== */
.main-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

/* ==========================================
   POSTER
   ========================================== */
.poster-container {
    max-width: 600px;
    width: 100%;
    margin-bottom: 3rem;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.poster-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 
        0 20px 60px rgba(255, 215, 0, 0.3),
        0 0 80px rgba(255, 107, 53, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poster-image:hover {
    transform: scale(1.02);
    box-shadow: 
        0 25px 80px rgba(255, 215, 0, 0.4),
        0 0 100px rgba(255, 107, 53, 0.3);
}

/* ==========================================
   PRICE
   ========================================== */
.price-container {
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease 0.3s both;
}

.price {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    text-align: center;
    letter-spacing: 0.05em;
}

/* ==========================================
   REGISTER BUTTON
   ========================================== */
.button-container {
    animation: fadeIn 1s ease 0.3s both;
}

.register-button {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 900;
    padding: 1.2rem 4rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    border: 3px solid #FFD700;
    border-radius: 10px;
    cursor: pointer;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.register-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: buttonShine 3s infinite;
}

@keyframes buttonShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.register-button:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: none;
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.register-button:active {
    transform: scale(0.98) translateY(-2px);
}

/* ==========================================
   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;
    overflow-y: auto;
}

.modal-content {
    background: #ffffff;
    margin: 5% auto;
    padding: 2.5rem;
    border: none;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

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

.modal-close {
    color: #666;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
}

.modal-close:hover {
    color: #000;
    background: rgba(0, 0, 0, 0.05);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0;
}

#registrationForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#registrationForm input {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #000;
    transition: border 0.2s ease;
}

#registrationForm input:focus {
    outline: none;
    border-color: #ddd;
}

#registrationForm input::placeholder {
    color: #aaa;
}

#registrationForm input[type="date"] {
    color: #000;
}

#registrationForm input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

.gender-group {
    margin: 0.5rem 0;
}

.gender-group > label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.gender-options {
    display: flex;
    gap: 2rem;
}

.gender-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.gender-option input[type="radio"] {
    width: auto;
    margin: 0;
    cursor: pointer;
}

.gender-option span {
    font-size: 1rem;
    color: #000;
}

.event-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #000;
}

.event-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #000;
}

.event-info p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    color: #333;
}

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

.event-info ul {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}

.event-info ul li {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: #333;
}

.swimsuit-offer {
    background: #fff;
    padding: 0.75rem;
    border-radius: 6px;
    margin-top: 0.75rem;
    border: 2px solid #FFD700;
}

.swimsuit-group {
    margin: 0.5rem 0;
}

.swimsuit-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.swimsuit-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #000;
    transition: border 0.2s ease;
    cursor: pointer;
}

.swimsuit-group select:focus {
    outline: none;
    border-color: #000;
}

.submit-button {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.875rem;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.2s ease;
    margin-top: 0.5rem;
}

.submit-button:hover {
    opacity: 0.85;
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 768px) {
    .main-container {
        padding: 1.5rem 1rem;
    }
    
    .poster-container {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .poster-image {
        border-radius: 10px;
    }
    
    .register-button {
        font-size: 1.5rem;
        padding: 1.2rem 3rem;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
        margin: 15% auto;
        width: 95%;
    }
    
    .modal-content h2 {
        font-size: 1.25rem;
    }
    
    .modal-close {
        font-size: 1.5rem;
        right: 15px;
        top: 15px;
    }
    
    #registrationForm input {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .submit-button {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .register-button {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }
    
    #registrationForm input {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .submit-button {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

a:focus,
button:focus,
input:focus {
    outline: 3px solid #FFD700;
    outline-offset: 2px;
}
