@charset "UTF-8";
.r10reg-container {
    max-width: 600px;
    margin: 10px auto;
}

.r10reg-header {
    margin-bottom: 12px;
}

.r10reg-logo {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

.r10reg-subtitle {
    margin-top: 4px;
    color: #979AAE;
    font-size: 14px;
}

.r10reg-subtitle {
    color: #979AAE;
    font-size: 14px;
}

body.night .r10reg-subtitle {
    color: #979AAE;
}

.r10reg-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.3s;
}

body.night .r10reg-card {
    background: #383B50;
}

.r10reg-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.r10reg-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: #E2E6E9;
    z-index: 0;
}

body.night .r10reg-progress::before {
    background: #494C62;
}

.r10reg-progress-line {
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: #38A9FF;
    z-index: 1;
    transition: width 0.4s ease;
}

.r10reg-step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.r10reg-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F5F8FA;
    border: 2px solid #E2E6E9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #979AAE;
    transition: all 0.3s;
    margin-bottom: 8px;
}

body.night .r10reg-step-circle {
    background: #383B50;
    border-color: #494C62;
}

.r10reg-step-indicator.active .r10reg-step-circle {
    background: #38A9FF;
    border-color: #38A9FF;
    color: white;
    transform: scale(1.1);
}

.r10reg-step-indicator.completed .r10reg-step-circle {
    background: #2BD768;
    border-color: #2BD768;
    color: white;
}

.r10reg-step-label {
    font-size: 12px;
    color: #979AAE;
    text-align: center;
}

.r10reg-step-indicator.active .r10reg-step-label {
    color: #38A9FF;
    font-weight: 600;
}

body.night .r10reg-step-indicator.active .r10reg-step-label {
    color: #38A9FF;
}

.r10reg-form-step {
    display: none;
    animation: r10reg-fadeIn 0.4s ease;
}

.r10reg-form-step.active {
    display: block;
}

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

.r10reg-step-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #3F4257;
}

body.night .r10reg-step-title {
    color: #D6D8E6;
}

.r10reg-step-desc {
    color: #979AAE;
    margin-bottom: 32px;
    font-size: 14px;
}

.r10reg-form-group {
    margin-bottom: 24px;
}

#turnstileWidget {
    transform-origin: center;
}

.r10reg-birthdate-inputs {
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr;
    gap: 12px;
}

.r10reg-idcard-container .r10reg-idcard-placeholder {
    width: 100%;
    width: calc(100% + 80px);
    margin-left: -40px;
    margin-bottom: 16px;
}

.r10reg-idcard-container span.r10reg-info.r10reg-idcard-placeholder {
    padding: 0 16px;
    text-align: center;
    display: block;
    color: #38A9FF;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: -10px;
}

.r10reg-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #515365;
    font-size: 14px;
}

body.night .r10reg-label {
    color: #D6D8E6;
}

.r10reg-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E2E6E9;
    border-radius: 8px;
    font-size: 15px;
    background: white;
    color: #515365;
    transition: all 0.2s;
}

.r10reg-input[type="text"],
.r10reg-input[type="email"],
.r10reg-input[type="password"],
.r10reg-input[type="tel"],
.r10reg-input[type="date"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select.r10reg-input {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23515365' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
    cursor: pointer;
}

body.night select.r10reg-input {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D6D8E6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

select.r10reg-input optgroup {
    font-weight: 600;
    font-size: 13px;
    color: #38A9FF;
    padding: 8px 0 4px 0;
}

select.r10reg-input option {
    padding: 8px 12px;
    color: #515365;
}

body.night .r10reg-input {
    background: #323448;
    border-color: #494C62;
    color: #D6D8E6;
}

.r10reg-input:focus {
    outline: none;
    border-color: #38A9FF;
    box-shadow: 0 0 0 3px rgba(56, 169, 255, 0.1);
}

.r10reg-input.error {
    border-color: #EE0743;
}

.r10reg-input.success {
    border-color: #2BD768;
}

.r10reg-input.warning {
    border-color: orange;
}

.r10reg-error {
    color: #EE0743;
    font-size: 13px;
    margin-top: 6px;
    display: none;
}

.r10reg-success {
    color: #2BD768;
    font-size: 13px;
    margin-top: 6px;
    display: none;
}

.r10reg-warning {
    color: orange;
    font-size: 13px;
    margin-top: 6px;
    display: none;
}

.r10reg-account-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.r10reg-account-type {
    padding: 24px;
    border: 2px solid #E2E6E9;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

body.night .r10reg-account-type {
    background: #323448;
    border-color: #494C62;
}

.r10reg-account-type:hover {
    border-color: #38A9FF;
    transform: translateY(-2px);
}

.r10reg-account-type.selected {
    border-color: #38A9FF;
    background: rgba(56, 169, 255, 0.1);
}

.r10reg-account-type-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.r10reg-account-type-icon svg {
    width: 42px;
    height: 42px;
}

.r10reg-account-type-title {
    font-weight: 600;
    margin-bottom: 4px;
    color: #3F4257;
}

body.night .r10reg-account-type-title {
    color: #D6D8E6;
}

.r10reg-account-type-desc {
    font-size: 13px;
    color: #979AAE;
}

.r10reg-verify-code {
    display: flex;
    gap: 12px;
}

.r10reg-verify-code input {
    flex: 1;
}

.r10reg-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 15px;
}

.r10reg-btn-primary {
    background: #38A9FF;
    color: white;
}

.r10reg-btn-primary:hover {
    background: #2B8ED9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(56, 169, 255, 0.3);
}

.r10reg-btn-primary:disabled {
    background: #979AAE;
    cursor: not-allowed;
    transform: none;
}

.r10reg-btn-full {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.r10reg-btn-secondary {
    background: transparent;
    color: #38A9FF;
    border: 2px solid #38A9FF;
}

.r10reg-btn-secondary:hover {
    background: rgba(56, 169, 255, 0.1);
}

.r10reg-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.r10reg-actions button {
    flex: 1;
}

.r10reg-photo-upload {
    display: flex;
    gap: 12px;
}

.r10reg-photo-upload button {
    flex: 1;
}

.r10reg-photo-preview {
    margin-top: 16px;
    text-align: center;
}

.r10reg-photo-preview img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid #E2E6E9;
}

body.night .r10reg-photo-preview img {
    border-color: #494C62;
}

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

.r10reg-switch {
    position: relative;
    width: 48px;
    height: 26px;
    background: #E2E6E9;
    border-radius: 13px;
    cursor: pointer;
    transition: background 0.3s;
}

body.night .r10reg-switch {
    background: #494C62;
}

.r10reg-switch.active {
    background: #38A9FF;
}

.r10reg-switch-handle {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.r10reg-switch.active .r10reg-switch-handle {
    transform: translateX(22px);
}

.r10reg-checkbox {
    display: flex;
    align-items: start;
    gap: 12px;
    cursor: pointer;
}

.r10reg-checkbox-input {
    width: 20px;
    height: 20px;
    border: 2px solid #E2E6E9;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s;
}

body.night .r10reg-checkbox-input {
    border-color: #494C62;
}

.r10reg-checkbox-input.checked {
    background: #38A9FF;
    border-color: #38A9FF;
}

.r10reg-checkbox-input.checked::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.r10reg-checkbox-label {
    font-size: 14px;
    line-height: 1.5;
}

.r10reg-checkbox-label a {
    color: #38A9FF;
    text-decoration: none;
}

.r10reg-terms {
    background: white;
    border: 2px solid #E2E6E9;
    border-radius: 8px;
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 24px;
    font-size: 13px;
    line-height: 1.4;
    text-align: left !important;
}

.r10reg-terms p {
    margin: 8px 0 0 0;
}

body.night .r10reg-terms {
    background: #323448;
    border-color: #494C62;
}

.r10reg-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E2E6E9;
    border-radius: 8px;
    font-size: 15px;
    background: white;
    color: #515365;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    transition: all 0.2s;
}

body.night .r10reg-textarea {
    background: #323448;
    border-color: #494C62;
    color: #D6D8E6;
}

.r10reg-textarea:focus {
    outline: none;
    border-color: #38A9FF;
    box-shadow: 0 0 0 3px rgba(56, 169, 255, 0.1);
}

.r10reg-success-icon {
    text-align: center;
    margin-bottom: 8px;
    animation: r10reg-scaleIn 0.5s ease;
}

.r10reg-success-icon svg {
    width: 100px;
    height: auto;
}

@keyframes r10reg-scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.r10reg-success-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2BD768;
}

.r10reg-success-message {
    text-align: center;
    color: #979AAE;
    margin-bottom: 32px;
    font-size: 16px;
}

.r10reg-theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F5F8FA;
    border: 2px solid #E2E6E9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
}

body.night .r10reg-theme-toggle {
    background: #383B50;
    border-color: #494C62;
}

.r10reg-theme-toggle:hover {
    transform: scale(1.1);
}

.r10reg-input-group {
    position: relative;
}

.r10reg-input-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

.r10reg-input-icon svg,
.r10reg-input-icon img {
    width: 20px;
    height: 20px;
}

.r10reg-info {
    font-size: 13px;
    color: #979AAE;
    margin-top: 6px;
}

input[type="file"] {
    display: none;
}

.r10reg-video-container {
    margin-top: 16px;
    text-align: center;
}

#r10reg-camera-preview {
    max-width: 100%;
    border-radius: 8px;
    border: 2px solid #E2E6E9;
}

body.night #r10reg-camera-preview {
    border-color: #494C62;
}

.r10reg-camera-actions {
    margin-top: 12px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.r10reg-camera-actions button {
    flex: 1;
}

/* Invitation Modal Styles */
.r10reg-invitation-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999999999;
    overflow-y: auto;
    animation: r10reg-fadeIn 0.3s ease;
    padding: 20px;
}

.r10reg-invitation-overlay.active {
    display: flex;
}

.r10reg-invitation-modal {
    display: flex;
    position: relative;
    max-width: 1100px;
    width: 100%;
    min-height: min-content;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin: auto;
}

body.night .r10reg-invitation-modal {
    background: #383B50;
}

.r10reg-invitation-right {
    flex: 1;
    background: #494C62 url('https://cdn.r10.net/modern/kayit/css/m-bg.svg') no-repeat center center;
    background-size: cover;
    padding: 60px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.r10reg-invitation-right::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: r10reg-pulse 15s infinite;
}

@keyframes r10reg-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

.r10reg-invitation-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 400px;
}

.r10reg-invitation-logo {
    font-size: 48px;
    font-weight: bold;
    color: white;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.r10reg-invitation-right .r10reg-invitation-logo {
    background: url(https://cdn.r10.net/modern/img/logo/svg/dark.svg?v=1);
    background-repeat: no-repeat;
    width: 240px;
    height: 80px;
    text-indent: -9999pt;
    overflow: hidden;
}

.r10reg-mobile-selection .r10reg-invitation-logo {
    background: url(https://cdn.r10.net/modern/img/logo/svg/light.svg?v=1) center center;
    background-repeat: no-repeat;
    width: 97%;
    height: 80px;
    text-indent: -9999pt;
    overflow: hidden;
}

.r10reg-invitation-title {
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.r10reg-invitation-desc {
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.6;
}

.r10reg-invite-input {
    background: rgba(255,255,255,0.95) !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    color: #515365 !important;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.r10reg-invite-input:focus {
    background: white !important;
    border-color: white !important;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3) !important;
}

.r10reg-invite-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.r10reg-invite-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.3);
}

.r10reg-invite-divider span {
    background: #494C62;
    background: rgb(69 72 89 / 75%);
    color: white;
    padding: 0 20px;
    position: relative;
    font-size: 14px;
    font-weight: 500;
}

.r10reg-invite-footer {
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
}

.r10reg-invitation-left {
    flex: 1;
    background: white;
    padding: 60px 50px;
    overflow-y: auto;
}

body.night .r10reg-invitation-left {
    background: #2D2F3F;
}

.r10reg-invitation-form {
    max-width: 450px;
}

.r10reg-invitation-form-title {
    font-size: 28px;
    font-weight: 600;
    color: #3F4257;
    margin-bottom: 8px;
}

body.night .r10reg-invitation-form-title {
    color: #D6D8E6;
}

.r10reg-invitation-form-desc {
    color: #979AAE;
    margin-bottom: 32px;
    font-size: 15px;
}

@media (max-width: 968px) {
    .r10reg-invitation-modal {
        flex-direction: column;
        max-height: 95vh;
    }

    .r10reg-invitation-form {
        max-width: 100%;
    }

    .r10reg-invitation-right {
        padding: 40px 30px;
    }

    .r10reg-invitation-left {
        padding: 40px 30px;
    }

    .r10reg-invitation-logo {
        font-size: 36px;
    }

    .r10reg-invitation-title {
        font-size: 24px;
    }

    .r10reg-invitation-form-title {
        font-size: 24px;
    }
}

.r10reg-container.hidden {
    display: none;
}

body main div.container .r10reg-invitation-overlay {
    display: flex !important;
    position: static;
    background: transparent;
    padding: 24px 0;
    animation: none;
}
body main div.container .r10reg-invitation-overlay .r10reg-invitation-modal {
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 0;
    max-height: none !important;
}

.grecaptcha-badge {
    width: 1px !important;
    visibility: hidden !important;
}


.r10reg-mobile-selection {
    display: none;
}

.r10reg-mobile-selection-title {
    color: #3F4257;
    font-size: 22px;
    margin-bottom: 30px;
}

#r10reg-invitation-close-btn {
    position: absolute;
    right: 8px;
    top: 8px;
    z-index: 999999999;
    border: none;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    padding: 4px;
    background: #494C62;
    height: 32px;
    line-height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .r10reg-container {
        margin: 0;
        padding: 0;
    }

    .r10reg-card {
        padding: 20px 16px;
        border-radius: 0;
        box-shadow: none;
    }

    .r10reg-header {
        text-align: center;
        margin-top: 20px;
    }

    .r10reg-logo {
        font-size: 28px;
    }

    .r10reg-step-title {
        font-size: 20px;
        text-align: center;
    }

    .r10reg-step-desc {
        font-size: 13px;
        text-align: center;
        margin-bottom: 24px;
    }

    .r10reg-progress {
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .r10reg-progress::before,
    .r10reg-progress-line {
        top: 14px;
    }

    .r10reg-step-circle {
        width: 30px;
        height: 30px;
        font-size: 12px;
        margin-bottom: 4px;
        background: white;
    }

    .r10reg-step-label {
        font-size: 10px;
        display: none;
    }
    
    .r10reg-step-indicator.active .r10reg-step-label {
        display: block;
        position: absolute;
        top: 34px;
        width: 100px;
        left: 50%;
        transform: translateX(-50%);
    }

    .r10reg-account-type-icon {
        margin-bottom: 0;
        font-size: 24px;
    }

    .r10reg-account-type-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .r10reg-account-type-title {
        font-size: 15px;
    }
    
    .r10reg-account-type-desc {
        font-size: 12px;
    }

    .r10reg-input,
    .r10reg-textarea,
    select.r10reg-input,
    .r10reg-invite-input {
        padding: 8px 10px !important;
        font-size: 13px !important;
        height: auto;
        min-height: 36px;
    }
    .iti--allow-dropdown input.iti__tel-input, .iti--allow-dropdown input.iti__tel-input[type=text], .iti--allow-dropdown input.iti__tel-input[type=tel], .iti--show-selected-dial-code input.iti__tel-input, .iti--show-selected-dial-code input.iti__tel-input[type=text], .iti--show-selected-dial-code input.iti__tel-input[type=tel] {
        padding-right: 6px !important;
        padding-left: 52px !important;
    }
    .iti--fullscreen-popup.iti--container {
        top: 60px !important;
    }

    .r10reg-invite-input {
        font-size: 14px !important; 
        letter-spacing: 1px;
    }

    .r10reg-textarea {
        min-height: 80px;
    }

    .r10reg-birthdate-inputs {
        gap: 8px;
    }

    .r10reg-label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .r10reg-form-group {
        margin-bottom: 16px;
    }

    .r10reg-btn {
        padding: 12px 10px !important;
        font-size: 12px !important;
        min-height: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    .r10reg-actions {
        margin-top: 16px;
        flex-direction: column-reverse;
        gap: 8px;
    }

    .r10reg-actions button {
        width: 100%;
    }

    .r10reg-terms {
        max-height: 150px;
        padding: 12px;
        font-size: 12px;
    }

    .r10reg-photo-upload {
        flex-direction: column;
    }
    
    .r10reg-checkbox-input {
        width: 18px;
        height: 18px;
    }
    
    .r10reg-switch {
        width: 40px;
        height: 22px;
    }
    
    .r10reg-switch-handle {
        width: 16px;
        height: 16px;
    }
    
    .r10reg-switch.active .r10reg-switch-handle {
        transform: translateX(18px);
    }

    .r10reg-mobile-selection {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
        background: white;
        height: 100%;
        width: 100%;
    }

    .r10reg-invitation-form {
        width: 100%;
    }

    .r10reg-mobile-selection-content {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .r10reg-mobile-select-btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px !important;
        margin-bottom: 16px;
        border-radius: 16px;
        text-align: left;
        height: auto !important;
        min-height: auto !important;
        transition: transform 0.2s, box-shadow 0.2s;
    }
    
    .r10reg-mobile-select-btn:active {
        transform: scale(0.98);
    }

    .r10reg-mobile-btn-icon {
        font-size: 24px;
        margin-right: 16px;
    }

    .r10reg-mobile-btn-text {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .r10reg-mobile-btn-text strong {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .r10reg-mobile-btn-text span {
        font-size: 12px;
        opacity: 0.8;
        font-weight: normal;
    }

    .r10reg-mobile-btn-arrow {
        font-size: 20px;
        opacity: 0.5;
    }

    #btnMobileApply {
        background: linear-gradient(135deg, #38A9FF 0%, #0077CC 100%);
        box-shadow: 0 10px 25px rgba(56, 169, 255, 0.35);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    #btnMobileApply::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
        pointer-events: none;
    }

    #btnMobileCode {
        background: white;
        border: 1px solid #E2E6E9;
        color: #3F4257;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }
    
    .r10reg-mobile-btn-icon svg {
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }
    
    #btnMobileCode .r10reg-mobile-btn-icon svg {
        color: #38A9FF;
    }

    .r10reg-mobile-back-btn {
        display: flex !important;
        align-items: center;
        gap: 8px;
        background: none;
        border: none;
        padding: 10px 0;
        font-size: 15px;
        font-weight: 600;
        color: #38A9FF;
        cursor: pointer;
        margin-bottom: 24px;
        text-align: left;
        width: auto !important;
        transition: opacity 0.2s;
    }
    
    .r10reg-mobile-back-btn:hover {
        opacity: 0.8;
    }

    .r10reg-invitation-left,
    .r10reg-invitation-right {
        display: none;
    }

    .r10reg-invitation-modal.show-left .r10reg-invitation-left {
        display: block;
    }
    
    .r10reg-invitation-modal.show-left .r10reg-mobile-selection {
        display: none !important;
    }

    .r10reg-invitation-modal.show-right .r10reg-invitation-right {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .r10reg-invitation-modal.show-right .r10reg-mobile-selection {
        display: none !important;
    }
    
    #btnBackToSelectRight {
        color: rgba(255, 255, 255, 0.9) !important;
        margin-bottom: 20px;
        z-index: 100;
        position: relative;
        display: flex !important;
        align-items: center;
        gap: 8px;
        width: fit-content !important;
        cursor: pointer !important;
        margin-right: auto;
    }
    
    #btnBackToSelectRight:hover {
        color: white !important;
        opacity: 1;
    }

    .r10reg-invitation-right::before {
        pointer-events: none;
    }
}

.r10reg-mobile-selection,
.r10reg-mobile-back-btn {
    display: none;
}