body {
    background: linear-gradient(135deg, #2c2f33 0%, #23272a 50%, #1e2124 100%);
    min-height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    position: relative;
}

/* Animated starfield background */
.starfield {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right:0;
    pointer-events: none;
}

.star {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transition: opacity 0.3s ease;
    z-index: 1;
}

/* Remove the old twinkle animation since we're using orbital motion now */

.auth-container {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
}

.auth-modal {
    width: 400px;
    max-width: 90vw;
    max-height: calc(100vh - 80px);
    background: #36393f;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    color: #dcddde;
    overflow-y: auto;
}

/* Custom scrollbar for auth modal */
.auth-modal::-webkit-scrollbar {
    width: 8px;
}

.auth-modal::-webkit-scrollbar-track {
    background: rgba(47, 49, 54, 0.5);
    border-radius: 4px;
}

.auth-modal::-webkit-scrollbar-thumb {
    background: #5865f2;
    border-radius: 4px;
}

.auth-modal::-webkit-scrollbar-thumb:hover {
    background: #4752c4;
}

.app-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.app-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.external-app-icon {
    background: #5865f2;
    font-size: 24px;
    color: white;
}

.user-avatar {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="50" fill="%23404040"/><circle cx="50" cy="40" r="15" fill="%23666"/><ellipse cx="50" cy="75" rx="20" ry="12" fill="%23666"/></svg>') center/cover;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: calc(50% + 32px);
    width: 20px;
    height: 2px;
    background: #5865f2;
    opacity: 0.6;
}

.connection-line::before {
    content: '';
    position: absolute;
    right: -4px;
    top: -2px;
    width: 0;
    height: 0;
    border-left: 6px solid #5865f2;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
}

.external-label {
    text-align: center;
    margin-bottom: 16px;
    font-size: 14px;
    color: #b9bbbe;
}

.app-title {
    text-align: center;
    margin-bottom: 8px;
}

.app-name {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bot-badge {
    background: #5865f2;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
}

.access-request {
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: #b9bbbe;
}

.user-info {
    text-align: center;
    margin-bottom: 24px;
    font-size: 14px;
}

.user-info a {
    color: #00b0f4;
    text-decoration: none;
}

.user-info a:hover {
    text-decoration: underline;
}

.permissions-section {
    margin-bottom: 24px;
}

.permissions-title {
    font-size: 12px;
    font-weight: 600;
    color: #b9bbbe;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.permission-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.permission-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.permission-allowed {
    background: #3ba55c;
    color: white;
}

.permission-denied {
    background: #ed4245;
    color: white;
}

.server-section {
    margin-bottom: 20px;
}

.server-label {
    font-size: 12px;
    font-weight: 600;
    color: #b9bbbe;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.server-select {
    width: 100%;
    background: #2f3136;
    border: 1px solid #40444b;
    border-radius: 6px;
    padding: 12px;
    color: #dcddde;
    font-size: 14px;
    margin-bottom: 12px;
}

.server-select:focus {
    outline: none;
    border-color: #5865f2;
}

.permission-requirement {
    font-size: 12px;
    color: #b9bbbe;
    margin-bottom: 24px;
}

.permission-requirement .highlight {
    color: #ffffff;
    font-weight: 500;
}

/* iOS Toggle Switch */
.toggle-section {
    margin-bottom: 24px;
}

.toggle-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.toggle-label {
    font-size: 14px;
    color: #dcddde;
    font-weight: 500;
}

.ios-toggle {
    position: relative;
    display: inline-block;
    width: 51px;
    height: 31px;
}

.ios-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.ios-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #4f545c;
    transition: 0.3s ease;
    border-radius: 31px;
    border: 2px solid #40444b;
}

.ios-slider:before {
    position: absolute;
    content: "";
    height: 23px;
    width: 23px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked + .ios-slider {
    background-color: #5865f2;
    border-color: #5865f2;
}

input:checked + .ios-slider:before {
    transform: translateX(20px);
}

.toggle-description {
    font-size: 12px;
    color: #b9bbbe;
    line-height: 1.4;
}

.action-buttons {
    display: flex;
    gap: 12px;
}

.btn-cancel {
    flex: 1;
    background: transparent;
    border: 1px solid #4f545c;
    color: #dcddde;
    padding: 12px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-cancel:hover {
    background: #4f545c;
    color: #ffffff;
}

.btn-continue {
    flex: 1;
    background: #5865f2;
    border: none;
    color: white;
    padding: 12px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-continue:hover {
    background: #4752c4;
}

.btn-continue:disabled {
    background: #4f545c;
    cursor: not-allowed;
}

/* 2FA Modal Styles */
.tfa-modal {
    position: relative;
}

.tfa-header {
    margin-bottom: 32px;
}

.btn-back {
    background: transparent;
    border: none;
    color: #b9bbbe;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    transition: color 0.2s;
}

.btn-back:hover {
    color: #dcddde;
}

.tfa-title {
    text-align: center;
    margin-bottom: 32px;
}

.tfa-icon {
    width: 64px;
    height: 64px;
    background: #5865f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: white;
}

.tfa-title h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.tfa-title p {
    color: #b9bbbe;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

.tfa-input-section {
    margin-bottom: 32px;
}

.code-inputs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.code-input {
    width: 48px;
    height: 48px;
    background: #2f3136;
    border: 2px solid #40444b;
    border-radius: 8px;
    color: #dcddde;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    transition: border-color 0.2s;
}

.code-input:focus {
    outline: none;
    border-color: #5865f2;
}

.code-input:disabled {
    background: #4f545c;
    color: #72767d;
    cursor: not-allowed;
}

.tfa-info {
    text-align: center;
}

.tfa-info p {
    color: #b9bbbe;
    font-size: 14px;
    margin: 0;
}

.tfa-info a {
    color: #00b0f4;
    text-decoration: none;
}

.tfa-info a:hover {
    text-decoration: underline;
}

/* Animation for modal transition */
.fade-in {
    animation: fadeIn 0.3s ease-in;
}

.fade-out {
    animation: fadeOut 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Confirmation Modal Styles */
.confirmation-modal {
    position: relative;
}

.confirmation-header {
    text-align: center;
    margin-bottom: 32px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #3ba55c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
    animation: successPulse 2s ease-in-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.confirmation-header h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.confirmation-header p {
    color: #b9bbbe;
    font-size: 14px;
    margin: 0;
}

.info-summary {
    margin-bottom: 32px;
}

.summary-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.shared-info-section {
    background: rgba(47, 49, 54, 0.8);
    border: 1px solid #40444b;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.shared-info-section h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    color: #dcddde;
    font-size: 14px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    width: 16px;
    color: #5865f2;
    font-size: 14px;
}

.info-item strong {
    color: #ffffff;
}

.privacy-note {
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #dcddde;
    font-size: 13px;
    margin-top: 16px;
}

.privacy-note i {
    color: #5865f2;
    font-size: 16px;
}

.btn-return {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    padding: 14px;
}

.footer-info {
    text-align: center;
    margin-top: 20px;
}

.footer-info p {
    color: #72767d;
    font-size: 12px;
    margin: 0;
}

/* Registration Form Styles */
.server-select[type="text"],
.server-select[type="email"],
.server-select[type="date"],
.server-select[type="tel"] {
    width: 100%;
    background: #2f3136;
    border: 1px solid #40444b;
    border-radius: 6px;
    padding: 12px;
    color: #dcddde;
    font-size: 14px;
    margin-bottom: 12px;
    transition: border-color 0.2s;
}

.server-select[type="text"]:focus,
.server-select[type="email"]:focus,
.server-select[type="date"]:focus,
.server-select[type="tel"]:focus {
    outline: none;
    border-color: #5865f2;
}

.server-select[type="text"]::placeholder,
.server-select[type="email"]::placeholder,
.server-select[type="tel"]::placeholder {
    color: #72767d;
}

/* Date input styling for dark theme */
.server-select[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.server-select[type="date"]::-webkit-datetime-edit {
    color: #dcddde;
}

.server-select[type="date"]::-webkit-datetime-edit-text {
    color: #72767d;
}

/* Success button styling */
.btn-success {
    background: #3ba55c !important;
    border-color: #3ba55c !important;
}

.btn-success:disabled {
    background: #3ba55c !important;
    border-color: #3ba55c !important;
    opacity: 0.8;
}

/* Phone input container */
.phone-input-container {
    display: flex;
    justify-content: center;
}

/* Responsive adjustments for registration form */
@media (max-width: 480px) {
    .auth-container {
        padding: 20px 10px;
    }
    
    .auth-modal {
        width: 100%;
        max-width: calc(100vw - 20px);
        padding: 24px;
        max-height: calc(100vh - 40px);
    }
    
    .server-select[style*="flex: 1"] {
        flex: 1 !important;
        min-width: 0;
    }
}

@media (max-height: 600px) {
    .auth-container {
        padding: 10px 20px;
    }
    
    .auth-modal {
        max-height: calc(100vh - 20px);
    }
}

/* ID Verification Styles */
.id-upload-section {
    margin-bottom: 32px;
}

.upload-container {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.upload-item {
    flex: 1;
    min-width: 150px;
}

.upload-box {
    border: 2px dashed #40444b;
    border-radius: 8px;
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(47, 49, 54, 0.5);
    position: relative;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-box:hover {
    border-color: #5865f2;
    background: rgba(88, 101, 242, 0.1);
}

.upload-content {
    color: #b9bbbe;
}

.upload-content i {
    font-size: 32px;
    margin-bottom: 8px;
    color: #72767d;
}

.upload-content p {
    margin: 8px 0 4px 0;
    font-weight: 600;
    color: #dcddde;
    font-size: 14px;
}

.upload-content span {
    font-size: 12px;
    color: #72767d;
}

.upload-preview {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 6px;
    overflow: hidden;
}

.upload-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-overlay {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #3ba55c;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.upload-box.uploaded {
    border-color: #3ba55c;
    border-style: solid;
}

.id-requirements, .video-requirements {
    background: rgba(47, 49, 54, 0.8);
    border: 1px solid #40444b;
    border-radius: 8px;
    padding: 16px;
}

.id-requirements h4, .video-requirements h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.id-requirements ul, .video-requirements ul {
    margin: 0;
    padding: 0 0 0 20px;
    color: #b9bbbe;
    font-size: 13px;
}

.id-requirements li, .video-requirements li {
    margin-bottom: 4px;
}

/* Video Verification Styles */
.video-recording-section {
    margin-bottom: 32px;
}

.video-container {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
    aspect-ratio: 16/9;
    max-height: 300px;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #72767d;
    background: rgba(47, 49, 54, 0.5);
}

.video-placeholder i {
    font-size: 48px;
    margin-bottom: 16px;
}

.video-placeholder p {
    margin: 0;
    font-size: 14px;
}

#videoPreview, #recordedVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recording-controls {
    margin-bottom: 24px;
}

.recording-timer {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #ed4245;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(237, 66, 69, 0.1);
    border: 1px solid rgba(237, 66, 69, 0.3);
    border-radius: 8px;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

#timerDisplay {
    font-size: 24px;
    font-weight: 700;
}

.recording-controls .action-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.recording-controls .btn-continue {
    flex: 0 0 auto;
    min-width: 120px;
}

#recordBtn {
    background: #ed4245 !important;
    border-color: #ed4245 !important;
}

#recordBtn:hover {
    background: #c23739 !important;
}

#recordBtn .fas {
    animation: recording-pulse 1s infinite;
}

@keyframes recording-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Mobile adjustments for verification */
@media (max-width: 480px) {
    .upload-container {
        flex-direction: column;
        gap: 12px;
    }
    
    .upload-item {
        min-width: auto;
    }
    
    .upload-box {
        min-height: 100px;
        padding: 16px 12px;
    }
    
    .upload-content i {
        font-size: 24px;
    }
    
    .video-container {
        max-height: 200px;
    }
    
    .recording-controls .action-buttons {
        flex-direction: column;
    }
    
    .recording-controls .btn-continue {
        width: 100%;
    }
}

/* ID Processing Styles */
.processing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7289da, #5865f2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    color: white;
    font-size: 36px;
    transition: all 0.3s ease;
}

.processing-status {
    margin-bottom: 32px;
}

.processing-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
    position: relative;
}

.processing-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #40444b;
    z-index: 1;
}

.processing-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.processing-step.active {
    opacity: 1;
}

.processing-step.completed {
    opacity: 1;
}

.processing-step.completed .step-icon {
    background: #3ba55c;
    color: white;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: #40444b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #72767d;
    font-size: 16px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.processing-step.active .step-icon {
    background: #5865f2;
    color: white;
    animation: processing-pulse 2s infinite;
}

@keyframes processing-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(88, 101, 242, 0.7);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(88, 101, 242, 0);
    }
}

.processing-step span {
    font-size: 12px;
    color: #dcddde;
    font-weight: 500;
    max-width: 80px;
}

.processing-progress {
    margin-top: 24px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #40444b;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #5865f2, #7289da);
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    font-size: 14px;
    color: #b9bbbe;
    font-weight: 500;
}

.id-verified-state {
    text-align: center;
}

.verification-success {
    margin-bottom: 32px;
}

.verification-success .success-icon {
    width: 80px;
    height: 80px;
    background: #3ba55c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    color: white;
    font-size: 36px;
    animation: success-bounce 0.6s ease-out;
}

@keyframes success-bounce {
    0% { 
        transform: scale(0);
        opacity: 0;
    }
    50% { 
        transform: scale(1.2);
        opacity: 1;
    }
    100% { 
        transform: scale(1);
        opacity: 1;
    }
}

.verification-success h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.verification-success p {
    color: #b9bbbe;
    font-size: 14px;
    margin: 0;
}

/* Mobile adjustments for processing */
@media (max-width: 480px) {
    .processing-steps {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .processing-steps::before {
        display: none;
    }
    
    .processing-step {
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
        gap: 12px;
    }
    
    .step-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .processing-step span {
        max-width: none;
        font-size: 14px;
    }
    
    .processing-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .verification-success .success-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

/* Surety Score Modal Styles */
.surety-modal {
    /* Inherits from .auth-modal */
}

.verification-options {
    margin: 24px 0;
}

.option-selector {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.option-item {
    border: 2px solid #40444b;
    border-radius: 8px;
    background: rgba(47, 49, 54, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.option-item:hover {
    border-color: #5865f2;
    background: rgba(88, 101, 242, 0.1);
}

.option-item.selected {
    border-color: #5865f2;
    background: rgba(88, 101, 242, 0.2);
}

.option-radio {
    display: flex;
    align-items: center;
    padding: 16px;
    cursor: pointer;
    margin: 0;
}

.option-radio input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #72767d;
    border-radius: 50%;
    margin-right: 16px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.option-radio input[type="radio"]:checked + .radio-custom {
    border-color: #5865f2;
    background: #5865f2;
}

.option-radio input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.option-content {
    display: flex;
    align-items: center;
    flex: 1;
}

.option-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(88, 101, 242, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: #5865f2;
    font-size: 20px;
    flex-shrink: 0;
}

.option-text {
    flex: 1;
}

.option-text h4 {
    margin: 0 0 4px 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.option-text p {
    margin: 0;
    color: #b9bbbe;
    font-size: 14px;
    line-height: 1.4;
}

.verification-section {
    margin: 24px 0;
    padding: 20px;
    background: rgba(47, 49, 54, 0.8);
    border: 1px solid #40444b;
    border-radius: 8px;
}

.payment-container {
    text-align: center;
}

.payment-info {
    margin-bottom: 24px;
}

.charge-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.charge-amount .currency {
    font-size: 24px;
    color: #3ba55c;
    font-weight: 700;
}

.charge-amount .amount {
    font-size: 36px;
    color: #3ba55c;
    font-weight: 700;
}

.refund-note {
    font-size: 12px;
    color: #72767d;
    display: block;
    margin-top: 4px;
}

.payment-form {
    max-width: 300px;
    margin: 0 auto;
}

.upload-requirements {
    background: rgba(47, 49, 54, 0.8);
    border: 1px solid #40444b;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
}

.upload-requirements h4 {
    color: #ffffff;
    font-size: 14px;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.upload-requirements ul {
    margin: 0;
    padding-left: 20px;
    color: #b9bbbe;
    font-size: 13px;
}

.upload-requirements li {
    margin-bottom: 4px;
} 