@import url('normalize.css');
@import url('fonts.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --background: #000000;
    --foreground: #ffffff;
    --card: #0a0a0a;
    --card-foreground: #ffffff;
    --popover: #0a0a0a;
    --popover-foreground: #ffffff;
    --primary: #fff;
    --primary-foreground: #000000;
    --secondary: #111111;
    --secondary-foreground: #ffffff;
    --muted: #111111;
    --muted-foreground: #888888;
    --accent: #111111;
    --accent-foreground: #ffffff;
    --destructive: #ff3e3e;
    --destructive-foreground: #ffffff;
    --border: #222222;
    --input: #111111;
    --ring: #00c3ff;
    --radius: 8px;
    --growth: #00ff88;
    --growth-foreground: #000000;
    --decline: #ff3e3e;
    --decline-foreground: #ffffff;
    --neon-glow: 0 0 10px rgba(0, 195, 255, 0.7), 0 0 20px rgba(0, 195, 255, 0.4);
    --neon-text-glow: 0 0 5px rgba(0, 195, 255, 0.7);
    --fluid-min-width: 320;
    --fluid-max-width: 2560;
    --fluid-screen: 100vw;
    --fluid-bp: calc((var(--fluid-screen) - var(--fluid-min-width) / 16 * 16px) / (var(--fluid-max-width) - var(--fluid-min-width)));
    --space-unit: calc(4px + 0.5vw);
    --space-xs: calc(var(--space-unit) * 0.5);
    --space-s: calc(var(--space-unit) * 1);
    --space-m: calc(var(--space-unit) * 2);
    --space-l: calc(var(--space-unit) * 3);
    --space-xl: calc(var(--space-unit) * 4);
    --space-xxl: calc(var(--space-unit) * 6);
}

/* --- Базовый сброс и общие стили --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Graphik', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.5;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    background-size: 50px 50px;
    background-position: center center;
}

.hidden {
    display: none !important;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.footer__logo-img {
    max-width: 190px;
    max-height: 40px;
}

/* Базовые стили для ссылок удалены - используются конкретные классы */

.text-primary {
    color: var(--ring);
    text-shadow: var(--neon-text-glow);
}

.text-muted {
    color: var(--muted-foreground);
}

.text-growth {
    color: var(--growth);
}

.text-decline {
    color: var(--decline);
}

.font-bold {
    font-weight: 700;
}

.text-right {
    text-align: right;
}

/* Auth Pages (Register & Login) */
.auth-container {
    display: grid;
    min-height: 85vh;
    grid-template-columns: 1fr;
}


.auth-sidebar {
    position: relative;
    display: none;
    flex-direction: column;
    background-color: var(--background);
    padding: 40px;
    color: white;
    border-right: 1px solid rgba(0, 195, 255, 0.2);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .auth-sidebar {
        display: flex;
    }
}

.auth-sidebar-overlay {
    position: absolute;
    inset: 0;
    background-color: #000000;
}

.auth-sidebar-gradient {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to bottom right, rgba(0, 195, 255, 0.2), transparent);
    opacity: 0.7;
}

.auth-sidebar-content {
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.auth-logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
}

.auth-quote {
    margin-top: auto;
}

.auth-quote blockquote {
    margin-bottom: 8px;
    border-left: 2px solid var(--primary);
    padding-left: 16px;
}

.auth-quote p {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.auth-quote footer {
    font-size: 14px;
    color: var(--muted-foreground);
}

.auth-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: var(--background);
}

@media (min-width: 1024px) {
    .auth-content {
        padding: 32px;
    }
}

.auth-form-container {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.auth-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.auth-header__title {
    color: rgba(255, 255, 255, 1);

    font-size: 50px;
    font-weight: 500;
    line-height: 60px;
    text-align: center;
    margin-bottom: 30px;
}

.auth-header p {
    font-size: 14px;
    color: var(--muted-foreground);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 350px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-group__label {
    color: rgba(255, 255, 255, 1);

    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-align: left;
}

input,
select,
textarea {
    padding: 12px 16px;
    background-color: var(--input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--foreground);
    font-size: 14px;
    width: 100%;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group__input {
    width: 100%;
    padding: 14px 16px;
    background-color: rgba(40, 40, 40, 0.5);
    border: 1px solid #282828;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 195, 255, 0.3);
}

.form-group__input:focus {
    border-color: rgba(139, 92, 246, 0.5);
    background-color: rgba(50, 50, 50, 0.6);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
}

.form-group__input::placeholder {
    color: #7d7d7d;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

.form-description {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.form-group__error,
.auth-form__error {
    color: rgba(255, 104, 104, 1);
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    height: 44px;
    padding: 0 20px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--neon-glow);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-outline {
    background-color: transparent;
    border-color: var(--border);
    color: var(--foreground);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 5px rgba(0, 195, 255, 0.5);
}

.btn-block {
    width: 100%;
}

.btn i {
    margin-right: 8px;
}

.btn-loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.terms-text {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-align: center;
    padding: 0 32px;
}

.terms-text a {
    text-decoration: none;
    color: var(--primary);
    text-shadow: var(--neon-text-glow);
}

.terms-text a:hover {
    text-decoration: underline;
}

.auth-alt-action {

    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
}

.auth-alt-action__text {
    color: #7d7d7d;
}

.auth-alt-action__link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 100;
    transition: all 0.3s ease;
}

.auth-alt-action__link:hover {
    color: #a89aff;
    text-decoration: none;
}

/* Анимированные фоновые орбы */
.login-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
}

.login-orb--primary {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(78, 47, 191, 0.6) 0%, transparent 70%);
    top: -200px;
    left: -150px;
    animation: loginPulse 10s ease-in-out infinite;
}

.login-orb--secondary {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.5) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation: loginPulse 12s ease-in-out infinite 3s;
}

.login-orb--accent {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: loginPulse 8s ease-in-out infinite 1.5s;
}

@keyframes loginPulse {

    0%,
    100% {
        opacity: 0.15;
        transform: scale(1);
    }

    50% {
        opacity: 0.35;
        transform: scale(1.15);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 5px rgba(0, 195, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 15px rgba(0, 195, 255, 0.7);
    }

    100% {
        box-shadow: 0 0 5px rgba(0, 195, 255, 0.5);
    }
}

/* --- Шапка сайта (Header) --- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    width: 100%;
    font-family: 'Graphik', sans-serif;
    position: relative;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    font-family: 'Graphik';
}

.logo-text {
    margin-right: 4px;
    font-weight: 300;
}

.logo-badge {
    background-color: #ffffff;
    color: #000000;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.header-slogan {
    margin-left: -50px;
}

.earnings-info-text {
    color: rgba(255, 255, 255, 1);


    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}

/* --- Переключатель языков (с динамическими значениями) --- */
.language-selector {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(188, 188, 188, 0.14);
    backdrop-filter: blur(4px);
    padding: 17px 15px;
    cursor: pointer;
    font-size: 14px;
    gap: 5px;
    color: white;
    user-select: none;
    border-radius: 16px;
    z-index: 10000;
}

.language-selector:focus,
.language-selector:focus-visible {
    background: rgba(188, 188, 188, 0.14);
    outline: none;
}

.selected-language {
    color: rgba(255, 255, 255, 1);

    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
}

.globe-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 2px;
    transition: transform 0.3s ease;
}

.dropdown-arrow svg {
    margin-top: 2px;
}

.language-selector.active .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: rgba(188, 188, 188, 0.14);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10001;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-option.active {
    background: rgba(255, 255, 255, 0.15);
    font-weight: 500;
}

/* --- Инфо по доходу --- */
.earnings-info {
    text-align: center;
    color: white;
    line-height: 1.4;


    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
}

.earnings-amount {
    color: #00ff85;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(0, 255, 133, 0.3);


    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
}

/* --- Форма входа (login-container) --- */
.login-container {
    max-width: 400px;
    margin: 0 auto;
    margin-top: auto;
    margin-bottom: auto;
    text-align: center;
    line-height: 1px;
    animation: fadeInUp 0.8s ease-out;
    z-index: 1;
}

h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #a89aff 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.form-group__link {
    color: rgba(125, 125, 125, 1);
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.form-group__link:hover {
    color: #a89aff;
    text-decoration: none;
}

.sign-in-btn {
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: auto;
    display: block;
    margin: 30px auto 0;
    position: relative;
    overflow: hidden;

    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
}

.sign-in-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
    transition: left 0.5s ease;
}

.sign-in-btn:hover::before {
    left: 100%;
}

.sign-in-btn:hover {
    background-color: #e6e6e6;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.sign-in-btn:active {
    transform: translateY(-1px);
}

.signup-prompt {
    margin-top: 20px;
    font-size: 14px;
    color: #bcbcbc;
    animation: fadeIn 0.8s ease-out 0.3s backwards;
}

.signup-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.signup-link:hover {
    color: #a89aff;
    text-decoration: none;
}

.sign-in-btn__text {
    display: inline-block;
}

.sign-in-btn__loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sign-in-btn__loader-text {
    display: inline-block;
}

/* --- Эффект свечения (Glow effect) --- */
.glow-effect {
    position: absolute;
    top: -379px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* --- Неоновый круг --- */
.circle__neon {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
}

.circle__neon img {
    max-width: 1100px;
    display: block;
}

/* --- Стили для модального окна (Code Verification) --- */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(3px);
    animation: fadeIn 0.3s ease-out;
}

.modal[style*="display: block"],
.modal[style*="display:flex"],
.modal[style*="display: flex"] {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.modal-content {
    margin: 0;
    padding: 30px;
    line-height: 24px;
    width: max-content;
    height: max-content;
    max-width: 500px;
    max-height: 90vh;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    animation: slideDown 0.3s ease-out;
    border-radius: 19px;
    background: rgba(6, 6, 6, 1);
    position: relative;
}

.modal-content h2 {
    margin-top: 10px;
    margin-bottom: 20px;

    color: rgba(255, 255, 255, 1);


    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
    text-align: center;
}

.resend-container {
    color: rgba(35, 152, 255, 1);


    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    text-align: center;
    margin-bottom: 15px;
}

.modal-content p {
    color: rgba(255, 255, 255, 1);


    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;

    max-width: 70%;
    margin: 0 auto;
}

/* Форма восстановления пароля */
.forgot-form {
    margin-top: 30px;
}

.forgot-form__group {
    margin-top: 0;
}

.forgot-form__success {
    display: none;
    color: #00ff85;
    text-align: center;
    margin: 15px 0;
    font-size: 14px;
}

.forgot-form__error {
    margin: 15px;
}

.email-display {
    font-weight: 500;
    color: #fff;
}

.code-input-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 30px 0;
}

.code-digit {
    width: 48px;
    height: 48px;
    border: 1px solid #333;
    background-color: #1e1e1e;
    border-radius: 8px;
    font-size: 20px;
    text-align: center;
    color: #fff;
    transition: all 0.2s ease;
}

.code-digit:focus {
    border-color: white;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 112, 243, 0.2);
}

.back-link {
    display: block;
    width: max-content;
    margin: 30px auto 0;
    text-decoration: none;
    border-radius: 41px;
    background: rgba(18, 18, 18, 1);
    padding: 10px 20px;

    color: rgba(150, 150, 150, 1);


    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
}

.back-link:hover {
    text-decoration: underline;
}

button#resend-button {
    background: transparent;
    color: #2398FF;
    border: none;
    cursor: pointer;
}

span#resend-timer {
    font-family: 'Graphik', sans-serif;
    color: rgba(125, 125, 125, 1);
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    text-align: left;

    #timer {
        color: rgba(125, 125, 125, 1);

        font-size: 14px;
        font-weight: 500;
        line-height: 17px;
    }
}

.fa-spin {
    animation: spin 1s linear infinite;
}

.btn-primary {
    animation: pulse 3s infinite;
}

/* Profile Setup Page */
.profile-setup-header {
    margin-bottom: 32px;
    padding-top: 40px;
}

.profile-setup-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: var(--neon-text-glow);
}

.profile-setup-header p {
    color: var(--muted-foreground);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Card Styles */
.card {
    background-color: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-content {
    padding: 1.5rem;
    flex: 1;
}

.alert {
    display: flex;
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 16px;
    align-items: flex-start;
}

.alert i {
    margin-right: 12px;
    margin-top: 2px;
}

.alert h4 {
    font-weight: 600;
    margin-bottom: 4px;
}

.alert-error {
    background-color: rgba(255, 62, 62, 0.1);
    color: #ff3e3e;
    border: 1px solid rgba(255, 62, 62, 0.2);
}

.alert-success {
    margin-top: 16px;
    background-color: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

/* Dashboard Styles */
.dashboard-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 195, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.8);
}

.header-content {
    display: flex;
    height: 64px;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.header-nav {
    display: none;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .header-nav {
        display: flex;
    }
}

.avatar-button {
    position: relative;
    height: 36px;
    width: 36px;
    border-radius: 9999px;
    top: 30%;
    background: none;
    border: 1px solid var(--primary);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 195, 255, 0.5);
}

.avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    width: 36px;
    border-radius: 9999px;
    background-color: var(--secondary);
    color: var(--primary);
    font-weight: 600;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    width: 224px;
    background-color: var(--popover);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 195, 255, 0.2);
    z-index: 50;
    overflow: hidden;
}

.dropdown-header {
    padding: 12px 16px;
    font-weight: 400;
    border-bottom: 1px solid var(--border);
}

.dropdown-user-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
}

.dropdown-user-email {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    line-height: 1;
}

@media screen and (min-width: 1600px) {
    .refresh-btn {
        font-size: 18px;
        padding: 9px 12px;
    }
}

@media screen and (min-width: 1440px) {
    .dropdown-menu {
        width: 288px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 195, 255, 0.3);
        top: calc(100% + 16px);
        right: 16px;
    }

    .auto-refresh-container {
        font-size: 16px;
    }

    .dropdown-header {
        padding: 20px 24px;
        font-size: 1.125rem;
    }

    .dropdown-user-name {
        font-size: 17px;
    }

    .dropdown-user-email {
        font-size: 0.9375rem;
    }
}

.dropdown-divider {
    height: 1px;
    background-color: var(--border);
    margin: 0.25rem 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: rgba(0, 195, 255, 0.1);
    color: var(--primary);
    text-decoration: none;
}

.dashboard-content {
    padding: 24px 0;
}

.dashboard-header-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .dashboard-header-actions {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.dashboard-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-shadow: var(--neon-text-glow);
}

.dashboard-actions {
    display: flex;
    gap: 0.75rem;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    padding-right: 2rem;
    width: 180px;
    background-color: var(--input);
    border: 1px solid var(--border);
    color: var(--foreground);
}

.select-wrapper select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 195, 255, 0.3);
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--foreground);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    padding: 1.25rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 195, 255, 0.2);
}

.stat-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.stat-card-header h3 {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted-foreground);
}

.stat-card-header i {
    font-size: 20px;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-description {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.tabs {
    margin-bottom: 24px;
}

.tabs-list {
    display: flex;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.tab-button {
    padding: 12px 20px;
    background: none;
    border: none;
    color: var(--muted-foreground);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.tab-button:hover {
    color: var(--foreground);
}

.tab-button.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    text-shadow: var(--neon-text-glow);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.card-header {
    padding: 24px 24px 8px;
    border-bottom: 1px solid rgba(0, 195, 255, 0.1);
}

.card-title {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 12px;
}

.badge-growth {
    background-color: var(--growth);
    color: var(--growth-foreground);
}

.badge-decline {
    background-color: var(--decline);
    color: var(--decline-foreground);
}

.card-description {
    font-size: 14px;
    color: var(--muted-foreground);
}

.chart-container {
    height: 730px;
    margin-bottom: 24px;
    padding: 16px 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
}

.data-table th {
    font-weight: 500;
    color: var(--muted-foreground);
    border-bottom: 1px solid var(--border);
}

.data-table tbody tr {
    border-top: 1px solid var(--border);
    transition: background-color 0.2s;
}

.data-table tbody tr:hover {
    background-color: rgba(0, 195, 255, 0.05);
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
    color: var(--muted-foreground);
}

.empty-state p {
    margin-bottom: 16px;
}

.loading-state {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    color: var(--muted-foreground);
}

.loading-state i {
    font-size: 2rem;
    color: var(--primary);
}

/* Utility Classes */
.capitalize {
    text-transform: capitalize;
}

/* Growth and Decline Gradients */
.growth-gradient {
    background: linear-gradient(to right, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0));
}

.decline-gradient {
    background: linear-gradient(to right, rgba(255, 62, 62, 0.2), rgba(255, 62, 62, 0));
}

/* Dashboard Layout */
.dashboard {
    display: flex;
    min-height: 100vh;
    max-width: 100vw;
}

/* Sidebar Styles */
.sidebar {
    width: 250px;
    background-color: #0a0a0a;
    border-right: 1px solid #222;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid #222;
}

.sidebar-header h1 {
    font-size: 20px;
    font-weight: bold;
}

.sidebar-nav {
    padding: 20px 10px;
    flex: 1;
    overflow: auto;
}

.sidebar-footer {
    padding: 15px;
    border-top: 1px solid #222;
}

.logout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background-color: transparent;
    border: 1px solid #333;
    border-radius: 4px;
    color: #999;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.logout-btn:hover {
    background-color: #111;
    color: #fff;
}

/* Main Content Styles */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main-header {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    border-bottom: 1px solid #222;
    background-color: #0a0a0a;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.icon-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.icon-btn:hover {
    background-color: #111;
    color: #fff;
}

/* Content Area */
.content {
    flex: 1;
    padding: 24px;
    overflow: auto;
}

.welcome-section {
    margin-bottom: 24px;
}

.welcome-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 8px;
}

.welcome-subtitle {
    color: #999;
}

/* Status Cards */
.status-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.card-footer {
    padding: 16px;
    border-top: 1px solid #222;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.verified {
    background-color: #22c55e;
}

.not-verified {
    background-color: #ef4444;
}

/* Separator */
.separator {
    height: 1px;
    background-color: #222;
    margin: 24px 0;
}

/* Signals Access Section */
.signals-access {
    margin-bottom: 24px;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-description {
    color: #999;
    margin-bottom: 16px;
}

/* Buttons */
.primary-btn {
    background-color: var(--primary);
    color: black;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.outline-btn {
    background-color: transparent;
    color: #fff;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.outline-btn:hover {
    background-color: #222;
}

@media screen and (min-width: 1440px) {
    .content {
        padding: 48px;
    }

    .dropdown-user-name {
        font-size: 24px;
    }

    a.dropdown-item {
        font-size: 14px;
    }

    .welcome-title {
        font-size: 36px;
    }

    .welcome-subtitle {
        font-size: 1.125rem;
    }

    .status-cards {
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
        gap: 32px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-description {
        font-size: 16px;
    }

    .card-content,
    .card-header,
    .card-footer {
        padding: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-description {
        font-size: 16px;
    }

    .primary-btn {
        font-size: 16px;
        padding: 10px 20px;
    }

    .outline-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 1024px) {
    .register-container {
        padding-bottom: 100px;
    }

    .earnings-info {
        padding-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        left: -250px;
        top: 0;
        bottom: 0;
        z-index: 100;
        transition: left 0.3s ease;
    }

    .sidebar.active {
        left: 0;
    }

    .menu-toggle {
        display: block;
    }

    .status-cards {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }

    .sidebar {
        width: clamp(250px, 15vw, 350px);
    }

    .sidebar-nav {
        padding: var(--space-l) var(--space-m);
    }

    .nav-item {
        padding: var(--space-s) var(--space-m);
        font-size: clamp(16px, 16px + 0.2vw, 18px) !important;
    }

    body {
        font-size: clamp(1rem, 0.8rem + 0.4vw, 1.2rem);
    }

    .dashboard-title {
        font-size: clamp(2rem, 1.5rem + 1vw, 3rem);
    }

    .auth-header h1 {
        font-size: clamp(1.75rem, 1.5rem + 0.5vw, 2.5rem);
        line-height: 1.2;
    }

    .stat-value {
        font-size: clamp(1.75rem, 1.5rem + 0.5vw, 2.25rem);
    }

    :root {
        --neon-glow: 0 0 clamp(10px, 1vw, 20px) rgba(0, 195, 255, 0.7),
            0 0 clamp(20px, 2vw, 40px) rgba(0, 195, 255, 0.4);
        --neon-text-glow: 0 0 clamp(5px, 0.5vw, 10px) rgba(0, 195, 255, 0.7);
    }
}

@media (min-width: 2200px) {
    .container {
        max-width: min(85vw, 2400px);
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }

    .status-cards {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }

    p,
    .card-description,
    .section-description {
        max-width: 80ch;
    }

    .auth-header h1 {
        font-size: clamp(2.5rem, 2rem + 0.3vw, 3rem);
        line-height: 1.3;
    }
}

@media (min-width: 3440px) {
    .auth-header h1 {
        font-size: clamp(3rem, 2.5rem + 0.2vw, 3.5rem);
        line-height: 1.4;
        letter-spacing: -0.02em;
    }
}

/* Improved image handling */
img,
svg {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Aspect ratio utility classes */
.aspect-ratio-16-9 {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
}

.aspect-ratio-4-3 {
    aspect-ratio: 4/3;
    width: 100%;
    height: auto;
}

.aspect-ratio-1-1 {
    aspect-ratio: 1/1;
    width: 100%;
    height: auto;
}

/* Enhanced responsive grid system */
.responsive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: var(--space-m);
}

@media (min-width: 768px) {
    .responsive-grid {
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 350px), 1fr));
    }
}

@media (min-width: 1200px) {
    .responsive-grid {
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 400px), 1fr));
    }
}

/* Viewport-based sizing utilities */
.vw-100 {
    width: 100vw;
}

.vh-100 {
    height: 100vh;
}

.vmin-100 {
    min-height: 100vmin;
    min-width: 100vmin;
}

/* Improved form element scaling */
input,
select,
textarea,
button {
    font-size: max(16px, 1rem);
}

/* Responsive padding and margin utilities */
.p-responsive {
    padding: var(--space-m);
}

.m-responsive {
    margin: var(--space-m);
}

.py-responsive {
    padding-top: var(--space-m);
    padding-bottom: var(--space-m);
}

.px-responsive {
    padding-left: var(--space-m);
    padding-right: var(--space-m);
}

.trading-pair-selector label {
    font-size: 19px;
    color: #999;
    width: 71%;
}

.trading-pair-dropdown {
    font-size: 18px;
}

.signal-strength {
    font-size: 18px;
}

.ls-switcher {
    position: relative;
    right: 1rem;
    top: 1rem;
    z-index: 99;
    width: 200px;
    margin-bottom: 30px;
    user-select: none;
}

.header-right {
    display: flex;
    gap: 20px;
}

.ls-current {
    display: flex;
    align-items: center;
    margin-left: 49%;
    gap: 10px;
    background-color: transparent;
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ls-globe {
    font-size: 18px;
}

.ls-label {
    flex-grow: 1;
    font-weight: 500;
}

.ls-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.ls-switcher.open .ls-arrow {
    transform: rotate(180deg);
}

.ls-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background-color: black;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    list-style: none;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    z-index: 10;
}

.ls-switcher.open .ls-dropdown {
    max-height: 300px;
    opacity: 1;
}

.ls-dropdown li {
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ls-dropdown li:hover {
    background-color: #333;
}

.ls-dropdown li.active {
    background-color: #4a6cf7;
    color: white;
}

.rtl {
    direction: rtl;
    text-align: right;
}

.ls-content {
    background-color: #2a2a2a;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ls-section {
    display: none;
}

.ls-section.active {
    display: block;
}

@media (max-width: 768px) {
    .ls-switcher {
        width: 100%;
    }

    .signal-info-cards {
        flex-direction: column;
    }

    .ls-container {
        margin-top: 9%;
    }

    .ls-current {
        margin-left: 0;
        margin-top: 4%;
    }
}

@media (max-width: 640px) {
    .form-row {
        flex-direction: column;
    }
}

.ls-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    margin-top: 5%;
}

/* ============================================
   АДАПТИВНЫЕ СТИЛИ ДЛЯ СТРАНИЦЫ LOGIN
   ============================================ */

/* --- Мобильные устройства (до 576px) --- */
@media (max-width: 575px) {
    .container {
        padding: 0 16px;
    }

    /* Header адаптив */
    header {
        flex-wrap: wrap;
        padding: 16px 0;
        gap: 12px;
    }

    .footer__logo-img {
        max-width: 120px;
        height: auto;
    }

    .header-slogan {
        order: 3;
        width: 100%;
        text-align: center;
        font-size: 14px;
        margin-left: 0;
        margin-top: 8px;
    }

    .language-selector {
        padding: 12px 12px;
        font-size: 12px;
        gap: 4px;
    }

    .globe-icon img,
    .dropdown-arrow img {
        width: 14px;
        height: 14px;
    }

    .selected-language {
        font-size: 14px;
    }

    /* Earnings info */
    .earnings-info {
        font-size: 14px;
        padding: 12px 0;
        margin: 8px 0;
    }

    .earnings-amount {
        font-size: 16px;
    }

    /* Login container */
    .login-container {
        margin-top: auto;
        margin-bottom: auto;
    }

    .auth-form-container {
        max-width: 100%;
    }

    .auth-form {
        width: 100%;
    }

    .auth-header h1 {
        font-size: 24px;
        margin-bottom: 0;
    }

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

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

    input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .sign-in-btn {
        padding: 14px 20px;
        font-size: 14px;
        width: 100%;
    }

    .auth-alt-action {
        font-size: 13px;
        margin-top: 16px;
    }

    /* Модальные окна */
    .modal-content {
        margin: 0;
        padding: 24px 16px;
        max-width: 90%;
        border-radius: 8px;
    }

    .modal-content h2 {
        font-size: 20px;
    }

    .modal-content p {
        font-size: 14px;
    }

    .code-input-container {
        gap: 6px;
        margin: 20px 0;
    }

    .code-digit {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* Фоновые орбы */
    .login-orb--primary {
        width: 300px;
        height: 300px;
        top: -100px;
        left: -100px;
    }

    .login-orb--secondary {
        width: 250px;
        height: 250px;
        bottom: -80px;
        right: -80px;
    }

    .login-orb--accent {
        width: 200px;
        height: 200px;
    }

    /* Эффекты свечения */
    .glow-effect {
        top: -200px;
    }

    .glow-effect img {
        max-width: 300px;
    }

    .circle__neon img {
        max-width: 100%;
    }
}

/* --- Планшеты (576px - 768px) --- */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        padding: 0 24px;
    }

    header {
        padding: 20px 0;
    }

    .footer__logo-img {
        max-width: 140px;
    }

    .header-slogan {
        font-size: 15px;
        margin-left: -30px;
    }

    .language-selector {
        padding: 14px 14px;
    }

    .earnings-info {
        font-size: 15px;
    }

    .login-container {
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
        margin-top: auto;
        margin-bottom: auto;
    }

    .auth-form-container {
        padding: 32px 24px;
    }

    .auth-header h1 {
        font-size: 28px;
    }

    .modal-content {
        max-width: 400px;
        padding: 28px 20px;
    }

    .code-digit {
        width: 44px;
        height: 44px;
    }

    .login-orb--primary {
        width: 400px;
        height: 400px;
    }

    .login-orb--secondary {
        width: 350px;
        height: 350px;
    }

    .login-orb--accent {
        width: 250px;
        height: 250px;
    }
}

/* --- Небольшие десктопы (768px - 992px) --- */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        padding: 0 32px;
    }

    header {
        padding: 22px 0;
    }

    .header-slogan {
        font-size: 13px;
        margin-left: -40px;
    }

    .login-container {
        max-width: 480px;
    }

    .auth-header h1 {
        font-size: 30px;
    }

    .modal-content {
        max-width: 420px;
    }
}

/* --- Средние десктопы (992px - 1200px) --- */
@media (min-width: 992px) and (max-width: 1199px) {
    .header-slogan {
        margin-left: -45px;
    }

    .login-container {
        max-width: 500px;
    }
}

/* --- Большие экраны (1200px+) --- */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }

    .header {
        padding: 25px 0;
    }

    .header-slogan {
        font-size: 16px;
        margin-left: -50px;
    }

    .login-container {
        max-width: 500px;
    }
}

/* --- Очень большие экраны (1600px+) --- */
@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }

    .login-container {
        max-width: 550px;
    }

    .auth-header h1 {
        font-size: 36px;
    }

    .modal-content {
        max-width: 500px;
        padding: 40px;
    }
}

/* --- Адаптив для RTL языков --- */
[dir="rtl"] header {
    flex-direction: row-reverse;
}

[dir="rtl"] .header-slogan {
    margin-left: 0;
    margin-right: -50px;
}

@media (max-width: 575px) {
    [dir="rtl"] .header-slogan {
        margin-right: 0;
    }
}

[dir="rtl"] .language-dropdown {
    left: auto;
    right: 0;
}

/* --- Адаптив для модальных окон на всех экранах --- */
@media (max-width: 767px) {
    .modal {
        padding: 16px;
    }

    .modal-content {
        margin: 0;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-content svg {
        width: 35px;
        height: 37px;
    }

    #resend-timer {
        font-size: 13px;
    }

    button#resend-button {
        font-size: 13px;
        padding: 8px 12px;
    }
}

/* --- Адаптив для формы входа --- */
@media (max-width: 767px) {
    .form-group-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .form-group__link {
        text-align: left;
        font-size: 12px;
    }

    .error-message {
        font-size: 12px;
    }
}

/* --- Адаптив для контейнера кода --- */
@media (max-width: 575px) {
    .code-input-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .code-digit {
        flex: 0 0 calc(16.666% - 5px);
        max-width: 40px;
    }
}

/* --- Адаптив для фоновых элементов --- */
@media (max-width: 991px) {
    .glow-effect {
        display: none;
    }
}

@media (max-width: 575px) {
    .circle__neon {
        width: 100%;
    }
}

/* --- Улучшение читаемости на маленьких экранах --- */
@media (max-width: 575px) {
    body {
        font-size: 14px;
    }

    .auth-alt-action {
        line-height: 1.6;
    }

    .signup-link {
        display: inline-block;
        margin-top: 4px;
    }
}

@media (max-width: 767px) {
    .login-container {
        margin-left: auto;
        margin-right: auto;
        margin-top: auto;
        margin-bottom: auto;
        padding-bottom: 100px;
    }

    .auth-form-container {
        padding: 20px 16px;
    }

    .auth-header h1 {
        font-size: 22px;
        margin-bottom: 0;
    }

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

    header {
        padding: 12px 0;
    }

    .earnings-info {
        padding: 8px 0;
        margin: 4px 0;
    }
}

/* Register Container Styles */
.register-container {
    max-width: 600px;
    margin: 0 auto;
    margin-top: auto;
    margin-bottom: auto;
    text-align: center;
    width: 100%;
    padding: 0 20px 100px 20px;
}

.register-container__title {
    font-weight: 600;
    margin-bottom: 15px;

    color: rgba(255, 255, 255, 1);
    font-size: 50.61px;
    line-height: 61px;
    text-align: center;
}

.register-container__subtitle {
    color: rgba(125, 125, 125, 1);
    max-width: 70%;
    margin: 0 auto 30px;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
}

/* Register Form Styles */
.register-form {
    display: flex;
    flex-direction: column;
}

.register-form__row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.register-form__row .register-form__group {
    flex: 1;
}

.register-form__group {
    text-align: left;
    margin-bottom: 20px;
}

.register-form__label {
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-align: left;
}

.register-form__input {
    border: 1px solid rgba(40, 40, 40, 1);
    background: rgba(27, 27, 27, 1);

    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 10px;
}

.register-form__input:focus {
    border-color: #7d7d7d;
}

.register-form__input::placeholder {
    color: #7d7d7d;
}

.register-form__password-container {
    position: relative;
}

.register-form__toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #7d7d7d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-form__eye-icon {
    width: 20px;
    height: 20px;
}

.register-form__button {
    border-radius: 9px;
    background: rgba(255, 255, 255, 1);
    padding: 10px 20px;
    cursor: pointer;
    margin: 10px auto 0;
    transition: background-color 0.3s;
    width: max-content;

    color: rgba(27, 27, 27, 1);


    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
}

.register-form__button:hover {
    background-color: #e6e6e6;
}

.register-form__error {
    color: #ff4444;
    font-size: 12px;
    margin-top: 4px;
    display: none;
    min-height: 16px;
}

.register-form__error:not(:empty),
.register-form__error.show {
    display: block;
}

.register-form__input.error {
    border-color: #ff4444;
}

.register-container__prompt {
    margin-top: 15px;
    color: rgba(125, 125, 125, 1);

    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
}

.register-container__link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.register-container__link:hover {
    text-decoration: underline;
}

.register-container__terms {
    margin: 20px auto 0;
    color: rgba(125, 125, 125, 1);
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    text-align: center;
    max-width: 50%;
}

.register-container__terms-link,
.register-container__privacy-link {
    color: #ffffff;
    text-decoration: none;
}

.register-container__terms-link:hover,
.register-container__privacy-link:hover {
    text-decoration: underline;
}

.register-help-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1b1b1b;
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    z-index: 100;
    text-decoration: none;
    transition: all 0.3s ease;
}

.register-help-button:hover {
    background-color: #2a2a2a;
    text-decoration: underline;
}

/* Responsive styles for register */
@media (max-width: 768px) {
    .register-container {
        padding: 0 20px 100px 20px;
    }

    .earnings-info-text {
        display: none;
    }

    .register-form__row {
        flex-direction: column;
        gap: 0;
    }

    .register-container__title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .register-container__title {
        font-size: 24px;
    }

    .register-container__subtitle {
        font-size: 13px;
    }

    .register-container__terms {
        max-width: 90%;
    }

    .register-container__subtitle {
        margin: 0 auto 15px;
    }

    .earnings-info,
    .header-slogan {
        display: none;
    }
}

/* Verify Email Page Styles */
.verify-email-page {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.verify-email-page .profile-setup-header {
    margin-bottom: 30px;
    padding-top: 0;
}

.verify-email-page .profile-setup-header h1 {
    font-weight: 600;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 1);
    font-size: 50.61px;
    line-height: 61px;
    text-align: center;
}

.verify-email-page .profile-setup-header p {
    color: rgba(125, 125, 125, 1);
    max-width: 70%;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
}

.verify-email-page .card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    text-align: left;
}

.verify-email-page .form-group {
    text-align: left;
}

.verify-email-page .form-group label {
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-align: left;
    display: block;
    margin-bottom: 8px;
}

.verify-email-page .form-group input {
    border: 1px solid rgba(40, 40, 40, 1);
    background: rgba(27, 27, 27, 1);
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.verify-email-page .form-group input:focus {
    border-color: #7d7d7d;
}

.verify-email-page .form-group input::placeholder {
    color: #7d7d7d;
}

.verify-email-page .error-message {
    color: #ff4444;
    font-size: 14px;
    margin-top: 5px;
    min-height: 16px;
}

.verify-email-page .btn-primary {
    width: 100%;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 1);
    color: rgba(0, 0, 0, 1);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.verify-email-page .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.verify-email-page .btn-primary:hover {
    background: rgba(230, 230, 230, 1);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.verify-email-page .btn-primary:hover::before {
    left: 100%;
}

.verify-email-page .btn-primary:active {
    transform: scale(0.98);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.1s ease;
}

.verify-email-page .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.verify-email-page .btn-primary:disabled:hover {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 1);
}

.verify-email-page .verify-form__error {
    color: #ff4444;
    font-size: 12px;
    margin-top: 4px;
    margin-bottom: 16px;
    display: none;
    min-height: 16px;
    text-align: left;
}

.verify-email-page .verify-form__error:not(:empty),
.verify-email-page .verify-form__error.show {
    display: block;
}

.verify-email-page .verify-form__error--success {
    color: #00ff88;
}

@media (max-width: 768px) {
    .verify-email-page {
        padding: 0 20px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .verify-email-page .profile-setup-header h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .verify-email-page {
        padding: 0 15px;
    }

    .verify-email-page .profile-setup-header h1 {
        font-size: 24px;
    }

    .verify-email-page .profile-setup-header p {
        font-size: 13px;
    }

    .earnings-info,
    .header-slogan {
        display: none;
    }
}