body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 60px;
    padding-bottom: 90px;
    background: linear-gradient(180deg, #000000 0%, #171616 50%, #000000 100%);
    min-height: 100vh;
    width: 100%;
    box-sizing: border-box;
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000000;
    border-radius: 0px 0px 30px 30px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.back-btn {
    position: absolute;
    left: 20px;
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.back-btn:hover {
    opacity: 0.7;
}

.back-btn img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.tutorial-btn {
    position: absolute;
    right: 20px;
    background: transparent;
    border: 2px solid #C9A876;
    color: #C9A876;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.tutorial-btn:hover {
    background: rgba(201, 168, 118, 0.1);
    transform: translateY(-2px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Countdown Section */
.countdown-section {
    padding: 15px 15px 10px 15px;
    text-align: center;
}

.countdown-title {
    font-family: "Inter", sans-serif;
    color: #EDE8BE;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.countdown-container {
    background: #1a1a1a;
    border: 2px solid #8B7355;
    border-radius: 0 30px 30px 30px;
    padding: 18px 25px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: 550px;
}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
    
}

.countdown-number {
    background: #333333;
    border-radius: 12px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Jaro", sans-serif;
    font-size: 50px;
    font-weight: 400;
    color: #d3c20c;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.countdown-number::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background: #1a1a1a;
    z-index: 1;
}

.countdown-number.flip {
    animation: flipUp 0.6s ease-in-out;
}

@keyframes flipUp {
    0% {
        transform: rotateX(0deg);
    }
    50% {
        transform: rotateX(90deg);
    }
    100% {
        transform: rotateX(0deg);
    }
}

.countdown-label {
    font-family: "Inter", sans-serif;
    color: #8B8B8B;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .countdown-container {
        gap: 15px;
        padding: 20px 15px;
    }
    
    .countdown-number {
        width: 85px;
        height: 85px;
        font-size: 75px;
    }
    
    .countdown-label {
        font-size: 11px;
    }
    
    .countdown-title {
        font-size: 14px;
    }
}

/* Waitlist Section */
.waitlist-section {
    padding: 10px 15px 15px 15px;
    display: flex;
    justify-content: center;
}

.waitlist-container {
    background: #2A2A2A;
    border: 2px solid #8B7355;
    border-radius: 25px;
    padding: 15px 20px 15px 20px;
    max-width: 550px;
    width: 100%;
}

.waitlist-title {
    font-family: "Inter", sans-serif;
    color: #C9A876;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1.2px;
    text-align: center;
    margin-bottom: 4px;
    position: relative;
}

.waitlist-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: #C9A876;
    margin: 6px auto 0;
}

/* Submission Status */
.submission-status {
    text-align: center;
    padding: 25px 20px 30px;
    background: rgba(201, 168, 118, 0.05);
    border: 2px solid #8B7355;
    border-radius: 20px;
    margin: 20px 0;
}

/* Status-Specific Styles */
.status-approved {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1) 0%, rgba(0, 150, 63, 0.05) 100%);
    border: 2px solid #00C853;
    border-radius: 20px;
    margin: 20px 0;
}

.status-rejected {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.1) 0%, rgba(200, 20, 50, 0.05) 100%);
    border: 2px solid #FF1744;
    border-radius: 20px;
    margin: 20px 0;
}

.status-pending {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 160, 0, 0.05) 100%);
    border: 2px solid #FFC107;
    border-radius: 20px;
    margin: 20px 0;
}

.status-approved .status-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.status-rejected .status-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.status-pending .status-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.status-approved h2 {
    font-family: "Inter", sans-serif;
    color: #00C853;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.status-rejected h2 {
    font-family: "Inter", sans-serif;
    color: #FF1744;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.status-pending h2 {
    font-family: "Inter", sans-serif;
    color: #FFC107;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.status-approved p {
    font-family: "Inter", sans-serif;
    color: #EDE8BE;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.5;
}

.status-rejected p {
    font-family: "Inter", sans-serif;
    color: #EDE8BE;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.5;
}

.status-pending p {
    font-family: "Inter", sans-serif;
    color: #EDE8BE;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.5;
}

.status-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 168, 118, 0.2);
}

.status-approved .status-details p strong {
    color: #00C853;
    font-size: 16px;
}

.status-rejected .status-details p strong {
    color: #FF1744;
}

.status-pending .status-details p strong {
    color: #FFC107;
}

.status-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: rgba(201, 168, 118, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon svg {
    width: 45px;
    height: 45px;
    color: #C9A876;
}

.status-title {
    font-family: "Inter", sans-serif;
    color: #C9A876;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.status-subtitle {
    font-family: "Inter", sans-serif;
    color: #EDE8BE;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 15px;
}

.status-intro {
    font-family: "Inter", sans-serif;
    color: #EDE8BE;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 25px;
    opacity: 0.9;
}

.next-steps {
    text-align: left;
    margin: 25px 0;
}

.next-steps-title {
    font-family: "Inter", sans-serif;
    color: #C9A876;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.step-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.step-number {
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: rgba(201, 168, 118, 0.15);
    border: 1.5px solid #C9A876;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #C9A876;
    margin-top: 2px;
}

.step-content h5 {
    font-family: "Inter", sans-serif;
    color: #C9A876;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.step-content p {
    font-family: "Inter", sans-serif;
    color: #EDE8BE;
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.status-footer {
    font-family: "Inter", sans-serif;
    color: #EDE8BE;
    font-size: 11px;
    line-height: 1.6;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 115, 85, 0.3);
    opacity: 0.8;
    font-style: italic;
}

.status-message {
    font-family: "Inter", sans-serif;
    color: #EDE8BE;
    font-size: 14px;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0 5px 0;
    gap: 0;
}

.step {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 1.5px solid #8B7355;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #6B6B6B;
    transition: all 0.3s ease;
}

.step.active {
    background: #C9A876;
    border-color: #C9A876;
    color: #2A2A2A;
    transform: scale(1.1);
}

.step.completed {
    background: #8B7355;
    border-color: #8B7355;
    color: #2A2A2A;
}

.step-line {
    width: 30px;
    height: 1.5px;
    background: #8B7355;
    transition: all 0.3s ease;
}

.step-line.active {
    background: #C9A876;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.form-step {
    display: none;
    flex-direction: column;
    gap: 10px;
}

.form-step.active {
    display: flex;
}

.step-subtitle {
    font-family: "Inter", sans-serif;
    color: #C9A876;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-align: center;
    margin: 0 0 4px 0;
}

.step-description {
    font-family: "Inter", sans-serif;
    color: #9B9B9B;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.4px;
    text-align: center;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

/* Checkbox Styles */
.checkbox-group {
    margin: 6px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 1.5px solid #8B7355;
    border-radius: 3px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #C9A876;
    border-color: #C9A876;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: #2A2A2A;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-text {
    font-family: "Inter", sans-serif;
    color: #9B9B9B;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.5;
    text-align: left;
}

.checkbox-label input[type="checkbox"].error + .checkbox-custom {
    border-color: #FF0000;
    animation: shake 0.4s ease-in-out;
}

/* PDF Link Styles */
.pdf-link-container {
    margin: 12px 0;
    text-align: center;
}

.pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(201, 168, 118, 0.1);
    border: 1.5px solid #C9A876;
    border-radius: 25px;
    color: #C9A876;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pdf-link:hover {
    background: rgba(201, 168, 118, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 168, 118, 0.2);
}

.pdf-link svg {
    width: 16px;
    height: 16px;
    color: #C9A876;
}

/* PDF Modal */
.pdf-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.pdf-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.pdf-modal-content {
    width: 100%;
    max-width: 900px;
    height: 90vh;
    max-height: 90vh;
    background: #1a1a1a;
    border-radius: 20px;
    border: 2px solid #8B7355;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

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

.pdf-modal-header {
    padding: 15px 20px;
    background: #000000;
    border-bottom: 2px solid #8B7355;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.pdf-modal-header h3 {
    font-family: "Inter", sans-serif;
    color: #C9A876;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin: 0;
    flex: 1;
}

.pdf-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pdf-download-btn {
    background: transparent;
    border: 1.5px solid #C9A876;
    color: #C9A876;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    text-decoration: none;
}

.pdf-download-btn:hover {
    background: rgba(201, 168, 118, 0.15);
    transform: translateY(-2px);
}

.pdf-download-btn svg {
    width: 20px;
    height: 20px;
}

.pdf-close-btn {
    background: transparent;
    border: none;
    color: #C9A876;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.pdf-close-btn:hover {
    background: rgba(201, 168, 118, 0.1);
    transform: rotate(90deg);
}

.pdf-close-btn svg {
    width: 24px;
    height: 24px;
}

.pdf-viewer {
    flex: 1;
    background: #ffffff;
    overflow: auto;
    position: relative;
    min-height: 0;
}

.pdf-viewer iframe {
    width: 100%;
    height: 100%;
    min-height: 100%;
    border: none;
    display: block;
}

@media (max-width: 600px) {
    .pdf-modal.active {
        padding: 5px;
    }
    
    .pdf-modal-content {
        height: 95vh;
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .pdf-modal-header {
        padding: 12px 15px;
    }
    
    .pdf-modal-header h3 {
        font-size: 13px;
    }
    
    .pdf-header-actions {
        gap: 8px;
    }
    
    .pdf-download-btn {
        padding: 6px;
    }
    
    .pdf-download-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .pdf-close-btn svg {
        width: 20px;
        height: 20px;
    }
}

.acknowledgment-intro {
    font-family: "Inter", sans-serif;
    color: #C9A876;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    margin: 12px 0 8px 0;
}

.final-statement {
    font-family: "Inter", sans-serif;
    color: #9B9B9B;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-align: center;
    margin: 12px 0 8px 0;
    line-height: 1.5;
    font-style: italic;
}

.review-notice {
    font-family: "Inter", sans-serif;
    color: #8B7355;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-align: center;
    margin: 8px 0 0 0;
    line-height: 1.5;
}

/* Capital Notice Styles */
.capital-notice {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 160, 0, 0.05) 100%);
    border: 2px solid #FFC107;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
}

.capital-notice h4 {
    font-family: "Inter", sans-serif;
    color: #FFC107;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.capital-notice ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capital-notice ul li {
    font-family: "Inter", sans-serif;
    color: #EDE8BE;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.capital-notice ul li:before {
    content: "•";
    color: #FFC107;
    font-size: 18px;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: -2px;
}

.capital-notice ul li strong {
    color: #FFC107;
    font-weight: 700;
}

/* Radio Button Styles */
.question-group {
    margin: 10px 0;
    transition: all 0.3s ease;
}

.question-group.error {
    animation: shake 0.4s ease-in-out;
}

.question-group.error .question-label,
.question-group.error .question-text {
    color: #FF0000;
}

.question-label {
    font-family: "Inter", sans-serif;
    color: #C9A876;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.6px;
    display: block;
    margin-bottom: 3px;
}

.question-text {
    font-family: "Inter", sans-serif;
    color: #9B9B9B;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.4;
    margin: 0 0 6px 0;
}

.radio-options {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
}

.radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-custom {
    width: 14px;
    height: 14px;
    min-width: 14px;
    border: 1.5px solid #8B7355;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: #C9A876;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #C9A876;
    position: absolute;
}

.radio-text {
    font-family: "Inter", sans-serif;
    color: #9B9B9B;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.radio-label input[type="radio"].error + .radio-custom {
    border-color: #FF0000;
    animation: shake 0.4s ease-in-out;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.form-group label {
    font-family: "Inter", sans-serif;
    color: #9B9B9B;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: center;
}

.form-group input,
.form-group select {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid #8B7355;
    color: #6B6B6B;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    padding: 5px 8px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: #4A4A4A;
    letter-spacing: 3px;
}

.form-group input:focus,
.form-group select:focus {
    border-bottom-color: #C9A876;
    color: #C9A876;
}

.form-group input.error,
.form-group select.error {
    border-bottom-color: #FF0000 !important;
    border-bottom-width: 2px;
    animation: shake 0.4s ease-in-out;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    75% {
        transform: translateX(10px);
    }
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%238B7355' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center right 10px;
    cursor: pointer;
}

.form-group select option {
    background: #2A2A2A;
    color: #C9A876;
    padding: 10px;
}

.form-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin: 8px auto 0;
}

.back-btn-form {
    background: transparent;
    border: 1.5px solid #8B7355;
    border-radius: 50px;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.back-btn-form span {
    font-family: "Inter", sans-serif;
    color: #8B7355;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.back-btn-form svg {
    width: 18px;
    height: 18px;
    color: #8B7355;
    transition: transform 0.3s ease;
}

.back-btn-form:hover {
    background: rgba(139, 115, 85, 0.1);
    border-color: #C9A876;
}

.back-btn-form:hover span,
.back-btn-form:hover svg {
    color: #C9A876;
}

.back-btn-form:hover svg {
    transform: translateX(-5px);
}

.submit-btn {
    background: #C9A876;
    border: none;
    border-radius: 50px;
    padding: 8px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.submit-btn span {
    font-family: "Inter", sans-serif;
    color: #2A2A2A;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.submit-btn svg {
    width: 18px;
    height: 18px;
    color: #2A2A2A;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    background: #E6C896;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 168, 118, 0.3);
}

.submit-btn:hover svg {
    transform: translateX(5px);
}

@media (max-width: 600px) {
    .waitlist-container {
        padding: 35px 25px 30px 25px;
        border-radius: 35px;
    }
    
    .waitlist-title {
        font-size: 26px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-group input,
    .form-group select {
        font-size: 14px;
    }
    
    .submit-btn span {
        font-size: 18px;
    }
    
    .submission-status {
        padding: 20px 15px 25px;
    }
    
    .status-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    
    .status-icon svg {
        width: 38px;
        height: 38px;
    }
    
    .status-title {
        font-size: 20px;
    }
    
    .status-subtitle {
        font-size: 14px;
    }
    
    .status-intro {
        font-size: 12px;
    }
    
    .next-steps-title {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .step-item {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .step-number {
        width: 26px;
        height: 26px;
        min-width: 26px;
        font-size: 12px;
    }
    
    .step-content h5 {
        font-size: 13px;
    }
    
    .step-content p {
        font-size: 11px;
    }
    
    .status-footer {
        font-size: 10px;
        margin-top: 20px;
        padding-top: 15px;
    }
}

@media (max-width: 400px) {
    .waitlist-section {
        padding: 20px 10px 30px 10px;
    }
    
    .waitlist-container {
        padding: 25px 20px;
    }
    
    .waitlist-title {
        font-size: 22px;
    }
    
    .waitlist-form {
        gap: 22px;
    }
}

@media (max-width: 400px) {
    .countdown-container {
        gap: 10px;
        padding: 15px 10px;
    }
    
    .countdown-number {
        width: 80px;
        height: 80px;
        font-size: 75px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
}

.container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    color: #333;
}

p {
    color: #666;
    line-height: 1.6;
}

/* Bottom Navigation Bar */
.bottom-nav {
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: #010101;
    border: 2px solid #8B7355;
    border-radius: 0 30px 30px 30px;
    padding: 12px 25px 10px 25px;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    min-height: 60px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

body.keyboard-open .bottom-nav {
    transform: translateY(150px);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    position: relative;
    padding-bottom: 8px;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: #C9A876;
    border-radius: 2px 2px 0 0;
    transition: width 0.3s ease;
}

.nav-item.active::after {
    width: 50px;
}

.nav-item img {
    width: 32px;
    height: 32px;
    filter: brightness(1);
    transition: all 0.3s ease;
    object-fit: contain;
}

.nav-item span {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    color: #C9A876;
    font-size: 11px;
    font-weight: 500;
    font-style: normal;
    text-transform: lowercase;
    white-space: nowrap;
}

.nav-item:hover img,
.nav-item.active img {
    filter: brightness(1.2);
    transform: scale(1.1);
}

.nav-item:hover span,
.nav-item.active span {
    color: #E6C896;
}

@media (max-width: 600px) {
    body {
        padding: 0;
        padding-bottom: 100px;
    }

    .bottom-nav {
        gap: 25px;
        padding: 15px 20px;
        bottom: 10px;
        left: 10px;
        right: 10px;
        min-height: 65px;
    }
    
    .nav-item img {
        width: 32px;
        height: 32px;
    }

    .nav-item span {
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    .bottom-nav {
        gap: 15px;
        padding: 12px 15px;
        min-height: 60px;
    }

    .nav-item img {
        width: 28px;
        height: 28px;
    }

    .nav-item span {
        font-size: 10px;
    }
}

/* Tutorial Sidebar */
.tutorial-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: #1a1a1a;
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.tutorial-sidebar.active {
    right: 0;
}

.sidebar-header {
    background: #000000;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #8B7355;
    position: sticky;
    top: 0;
    z-index: 10;
}

.sidebar-header h2 {
    font-family: "Inter", sans-serif;
    color: #C9A876;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.sidebar-close-btn {
    background: transparent;
    border: none;
    color: #C9A876;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.sidebar-close-btn:hover {
    transform: rotate(90deg);
}

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

.tutorial-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(139, 115, 85, 0.3);
}

.tutorial-section:last-child {
    border-bottom: none;
}

.tutorial-section h3 {
    font-family: "Inter", sans-serif;
    color: #C9A876;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.tutorial-section p {
    font-family: "Inter", sans-serif;
    color: #EDE8BE;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.tutorial-section ol,
.tutorial-section ul {
    font-family: "Inter", sans-serif;
    color: #EDE8BE;
    font-size: 14px;
    line-height: 1.8;
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.tutorial-section li {
    margin-bottom: 8px;
}

.tutorial-section strong {
    color: #C9A876;
    font-weight: 600;
}

.video-container {
    width: 100%;
    max-width: 100%;
    margin: 15px 0;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #8B7355;
}

.video-container video {
    width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
    object-fit: contain;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    display: none;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
}

@media (max-width: 600px) {
    .tutorial-sidebar {
        width: 90%;
    }
    
    .sidebar-header h2 {
        font-size: 18px;
    }
    
    .tutorial-section h3 {
        font-size: 14px;
    }
    
    .tutorial-section p,
    .tutorial-section li {
        font-size: 13px;
    }
}

/* Contract Management Section */
.contracts-section {
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contracts-title {
    font-family: "Inter", sans-serif;
    color: #C9A876;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.contracts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.contract-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid #C9A876;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.contract-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C9A876 0%, #EDE8BE 50%, #C9A876 100%);
}

.contract-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 168, 118, 0.3);
    border-color: #EDE8BE;
}

.contract-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(201, 168, 118, 0.2);
}

.contract-id {
    font-family: "Inter", sans-serif;
    color: #C9A876;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.contract-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contract-status.active {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid #22c55e;
}

.contract-status.pending {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid #fbbf24;
}

.contract-info {
    margin-bottom: 15px;
}

.contract-amount {
    font-family: "Inter", sans-serif;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contract-label {
    font-family: "Inter", sans-serif;
    color: #999;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contract-progress {
    margin-top: 15px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.progress-label {
    font-family: "Inter", sans-serif;
    color: #C9A876;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.progress-value {
    font-family: "Inter", sans-serif;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(201, 168, 118, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #C9A876 0%, #EDE8BE 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.contract-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(201, 168, 118, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.detail-item {
    text-align: center;
}

.detail-value {
    font-family: "Inter", sans-serif;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.detail-label {
    font-family: "Inter", sans-serif;
    color: #999;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contract-session-badge {
    margin-top: 10px;
    padding: 8px 12px;
    background: rgba(201, 168, 118, 0.1);
    border-radius: 8px;
    text-align: center;
}

.session-label {
    font-family: "Inter", sans-serif;
    color: #C9A876;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.confirmation-stage-badge {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.confirmation-stage-badge.waiting {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid #fbbf24;
}

.confirmation-stage-badge.confirmed {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid #22c55e;
}

@media (max-width: 768px) {
    .contracts-grid {
        grid-template-columns: 1fr;
    }
    
    .contract-amount {
        font-size: 28px;
    }
}
