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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
    min-height: 100vh;
    padding: 20px;
}

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

/* Header Section */
.header-section {
    text-align: center;
    margin-bottom: 30px;
    
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Logo Image - Increased size */
.logo-image {
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block !important;
    visibility: visible !important;
}

/* Fallback CSS Logo Heart - Increased size */
.logo-heart {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff0000 0%, #ff6b6b 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    display: block;
}

.logo-heart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    background: #ffeb3b;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.logo-text {
    text-align: left;
}

.nextera {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    letter-spacing: 1px;
}

.presents {
    font-size: 12px;
    color: #000;
    margin-top: -5px;
}

.main-logo {
    display: flex;
    flex-direction: column;
    margin-top: 5px;
}

.sing {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.dilse {
    font-size: 20px;
    font-weight: bold;
    color: #ff0000;
    text-shadow: 1px 1px 3px rgba(255, 0, 0, 0.3);
    margin-top: -5px;
}

.tagline {
    font-size: 14px;
    color: #000;
    margin-top: 5px;
    font-style: italic;
}

/* Form Container */
.form-container {
    background: #2c2c2c;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #444;
}

.form-header h2 {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-header h3 {
    color: #fff;
    font-size: 16px;
    font-weight: normal;
}

/* Steps Indicator */
.steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 0 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: #555;
    z-index: 0;
}

.step:last-child::after {
    display: none;
}

.step.active .step-number {
    background: #ff0000;
    color: #fff;
}

.step.completed .step-number {
    background: #4caf50;
    color: #fff;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #555;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
}

.step-label {
    color: #aaa;
    font-size: 11px;
    text-align: center;
}

.step.active .step-label {
    color: #fff;
}

/* Form Content */
.form-content {
    color: #fff;
}

.info-text {
    margin-bottom: 20px;
    padding: 15px;
    background: #333;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.mobile-input-wrapper {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 5px;
    overflow: hidden;
}

.country-code {
    padding: 12px 15px;
    background: #e0e0e0;
    color: #333;
    font-weight: bold;
    border-right: 1px solid #ccc;
}

.form-group input[type="tel"],
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group select {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: #f5f5f5;
    color: #333;
    font-size: 16px;
    outline: none;
}

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

.help-text {
    display: block;
    color: #aaa;
    font-size: 12px;
    margin-top: 5px;
}

.error-message {
    background: #f44336;
    color: #fff;
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 14px;
    display: none;
}

.success-message {
    background: #4caf50;
    color: #fff;
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 14px;
    display: none;
}

.success-message.show {
    display: block !important;
}

/* Radio Buttons */
.radio-group {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.radio-option label {
    color: #fff;
    font-weight: normal;
    cursor: pointer;
    margin: 0;
}

/* Buttons */
.btn-proceed,
.btn-payment {
    background: #dc2626 !important;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    width: auto;
    max-width: 300px;
    margin: 20px auto;
    display: block;
    transition: background 0.3s ease;
}

.btn-proceed:hover,
.btn-payment:hover {
    background: #b91c1c !important;
}

.btn-proceed:disabled {
    background: #666;
    cursor: not-allowed;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    background: #555;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #666;
}

.button-group {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

/* Info Box */
.info-box {
    background: #333;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 25px;
}

.info-box h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}

.detail-row {
    color: #fff;
    margin-bottom: 10px;
    font-size: 14px;
}

.detail-row strong {
    color: #ffeb3b;
}

/* Editable Fields */
.editable-field {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.editable-field label {
    min-width: 150px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}

.editable-field input,
.editable-field select {
    flex: 1;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: 10px;
    border: none;
    background: #f5f5f5;
    color: #333;
    font-size: 14px;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Payment Terms */
.payment-terms {
    background: #333;
    padding: 20px;
    border-radius: 5px;
    margin-top: 25px;
}

.payment-terms h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}

.payment-terms ul {
    list-style: none;
    padding: 0;
}

.payment-terms li {
    color: #fff;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    line-height: 1.6;
}

.payment-terms li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.payment-terms .benefits-list li {
    padding-left: 0;
}

.payment-terms .benefits-list li::before {
    display: none;
}

.payment-terms .benefits-list strong {
    display: block;
    font-size: 15px;
    margin-bottom: 6px;
}

.payment-terms .benefits-list span {
    display: block;
    color: #e5e5e5;
    font-size: 13px;
    line-height: 1.6;
}

/* Support Section */
.support-section {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.support-section h4 {
    color: #333;
    margin-bottom: 10px;
}

.support-section p {
    color: #666;
    margin-bottom: 5px;
    font-size: 14px;
}

.support-section a {
    color: #ff0000;
    text-decoration: none;
}

.support-section a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    text-align: center;
    color: #333;
    font-size: 12px;
    padding: 15px 0;
}

/* Success/Failure Pages */
.success-container,
.failure-container {
    text-align: center;
    padding: 40px 20px;
    color: #fff;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #4caf50;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 20px;
}

.failure-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f44336;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 20px;
}

.success-container h2,
.failure-container h2 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 24px;
}

.payment-details {
    background: #333;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
    text-align: left;
}

.payment-details p {
    color: #fff;
    margin-bottom: 10px;
    font-size: 14px;
}

.payment-details strong {
    color: #ffeb3b;
}

.success-message-text {
    color: #4caf50;
    font-weight: bold;
    margin-top: 15px;
}


/* Payment Success Highlights */

.payment-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-field {
    background: #f7f9ff;
    border-radius: 8px;
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
}

.payment-field + .payment-field {
    margin-top: 2px;
}

.field-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 4px;
}

.field-value {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.amount-field {
    background: #ecfdf5;
    border: 1px solid #34d399;
}

.amount-field .field-value {
    color: #047857;
    font-size: 16px;
}

.audition-id-box {
    background: #fff7e6;
    border-left: 4px solid #f59e0b;
    padding: 14px 16px;
    border-radius: 10px;
    margin: 12px 0;
    color: #8c4a0c;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.audition-id-label {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.audition-id-value {
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: #b45309;
    background: rgba(255, 255, 255, 0.75);
    padding: 6px 10px;
    border-radius: 6px;
    text-align: center;
    word-break: break-word;
}

.important-info-box {
    background: #eff6ff;
    border-left: 4px solid #2563eb;
    padding: 14px 16px;
    border-radius: 10px;
    margin: 12px 0;
    color: #0f172a;
    font-size: 14px;
    line-height: 1.6;
}

.important-info-box strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    color: #0f172a;
}

/* Responsive */
@media (max-width: 768px) {
    .audition-id-value {
        font-size: 18px;
        letter-spacing: 1.4px;
    }

    .logo-section {
        flex-direction: column;
    }
    
    .logo-text {
        text-align: center;
    }
    
    .logo-image {
        max-height: 150px;
    }
    
    .logo-heart {
        width: 100px;
        height: 100px;
    }
    
    .logo-heart::before {
        width: 60px;
        height: 60px;
    }
    
    .steps-indicator {
        padding: 0 10px;
    }
    
    .step-label {
        font-size: 10px;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .editable-field {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .editable-field label {
        min-width: auto;
    }
}
