.waiver-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
    color: #e0e0e0;
    min-height: 100vh;
}

.waiver-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.waiver-section {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #fbbf24;
}

.waiver-section h2 {
    color: #fbbf24;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.waiver-form {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(251,191,36,0.3);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Enhanced Consent Container */
.consent-container {
    background: linear-gradient(135deg, rgba(251,191,36,0.15), rgba(245,158,11,0.15));
    border: 3px solid #fbbf24;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(251,191,36,0.3);
    transition: all 0.3s ease;
}

.consent-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(251,191,36,0.4);
}

/* Form Check Alignment Fixes */
.consent-container .form-check {
    padding-left: 0;
}

.form-check.d-flex.align-items-center {
    gap: 1rem;
}

/* Giant Visible Checkbox */
.checkbox-giant {
    width: 3.2rem !important;
    height: 3.2rem !important;
    border: 4px solid #fbbf24 !important;
    border-radius: 12px !important;
    margin: 0 !important;
    cursor: pointer;
    flex-shrink: 0;
    background-color: transparent;
}

.checkbox-giant:checked {
    background-color: #f59e0b !important;
    border-color: #f59e0b !important;
    box-shadow: 0 0 25px rgba(251,191,36,0.7);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3e%3cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3e%3c/svg%3e");
    background-size: 1.5rem;
    background-position: center;
    background-repeat: no-repeat;
}

/* Enhanced Form Check Label */
.form-check-label {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    line-height: 1.6;
    cursor: pointer;
    padding: 0.75rem 0;
    border-radius: 12px;
    transition: all 0.2s;
    margin: 0 !important;
    flex-grow: 1;
}

.form-check-label:hover {
    background: rgba(251,191,36,0.1);
    border-radius: 8px;
}

/* Required Badge */
.badge-required {
    background: #dc2626 !important;
    color: white !important;
    font-weight: 900;
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    animation: pulse 2s infinite;
    margin-left: 0.5rem;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(220,38,38,0.7); }
    70% { box-shadow: 0 0 0 10px rgba(220,38,38,0); }
    100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); }
}

/* Form Controls */
.form-control-lg {
    padding: 0.875rem 1.25rem;
    font-size: 1.1rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    transition: all 0.3s;
}

.form-control-lg:focus {
    border-color: #fbbf24;
    box-shadow: 0 0 0 0.25rem rgba(251,191,36,0.25);
}

/* Submit Button */
.waiver-submit {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50px;
    width: 100%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.waiver-submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(251,191,36,0.5);
}

/* More Visible Disabled Button */
.waiver-submit:disabled {
    background: linear-gradient(45deg, #94a3b8, #64748b) !important;
    border: 2px solid #fbbf24 !important;
    cursor: not-allowed;
    opacity: 0.85 !important;
    transform: none !important;
    box-shadow: 0 5px 15px rgba(251,191,36,0.2) !important;
}

/* Error Text */
.text-danger {
    color: #dc2626 !important;
    font-weight: 700;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .waiver-hero { 
        padding: 2.5rem 1rem; 
    }
    .waiver-title { 
        font-size: 2.3rem; 
    }
    .waiver-form { 
        padding: 2rem; 
        margin: 0 0.5rem; 
    }
    .checkbox-giant { 
        width: 2.6rem !important; 
        height: 2.6rem !important; 
    }
    .form-check-label { 
        font-size: 1.2rem !important; 
    }
    .form-check.d-flex.align-items-center {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .waiver-title { 
        font-size: 2rem; 
    }
    .checkbox-giant { 
        width: 2.4rem !important; 
        height: 2.4rem !important; 
    }
    .form-check-label { 
        font-size: 1.1rem !important; 
    }
}
