/* CSS 变量 - 与主题保持一致 */
:root {
    /* 暗黑主题(默认) */
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #1a1a1a;
    --bg-hover: rgba(26, 26, 26, 0.8);
    --bg-overlay: rgba(0, 0, 0, 0.95);
    --bg-panel: rgba(10, 10, 10, 0.9);
    --bg-glass: rgba(10, 10, 10, 0.7);

    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #999999;
    --text-disabled: #666666;

    --border-primary: #1a1a1a;
    --border-secondary: #333333;

    --accent-primary: #3b82f6;
    --accent-hover: #2563eb;
    --accent-secondary: #3b82f6;
    --accent-gradient: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.3);

    --error-color: #f43f5e;
    --success-color: #10b981;
    --warning-color: #f59e0b;

    --shadow-primary: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px var(--accent-glow);
}

/* 亮色主题 */
[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-tertiary: #e8e8e8;
    --bg-hover: rgba(0, 0, 0, 0.05);
    --bg-overlay: rgba(255, 255, 255, 0.98);
    --bg-panel: rgba(255, 255, 255, 0.95);
    --bg-glass: rgba(255, 255, 255, 0.8);

    --text-primary: #000000;
    --text-secondary: #333333;
    --text-muted: #666666;
    --text-disabled: #999999;

    --border-primary: #e0e0e0;
    --border-secondary: #d0d0d0;

    --accent-primary: #3b82f6;
    --accent-hover: #2563eb;
    --accent-secondary: #3b82f6;
    --accent-gradient: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.2);

    --error-color: #ef4444;
    --success-color: #22c55e;
    --warning-color: #f59e0b;

    --shadow-primary: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 15px rgba(59, 130, 246, 0.15);
}

/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB',
                 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    transition: background-color 0.3s ease;
}

/* 主题切换按钮 */
.theme-toggle {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-primary);
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary);
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: var(--shadow-glow);
}

/* 主布局 */
.auth-layout {
    display: flex;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* 左侧展示区 - 固定深色模式 */
.left-section {
    flex: 1;
    background: #0a0a0a; /* 固定深色背景 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

/* 横幅容器 */
.banner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

/* 横幅文字区域 */
.banner-text-box {
    margin-bottom: 40px;
}

.banner-text-box h1 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff; /* 固定白色 */
    margin-bottom: 16px;
}

.banner-text-box p {
    font-size: 16px;
    color: #e0e0e0; /* 固定浅灰色 */
    line-height: 1.6;
}

/* 横幅图片区域 */
.banner-image-container {
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-image-container picture {
    display: block;
    width: 100%;
}

.banner-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* 右侧表单区 */
.right-section {
    flex: 0 0 45%;
    min-width: 500px;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 40px;
}

/* 覆盖最小宽度限制 - 在小屏设备上 */
@media (max-width: 768px) {
    .right-section {
        min-width: unset !important;
    }
}

.form-container {
    width: 100%;
    max-width: 400px;
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-header {
    margin-bottom: 32px;
}

.form-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-header p {
    font-size: 14px;
    color: var(--text-muted);
}

/* 表单 */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
}

.form-group label i {
    font-size: 14px;
    color: var(--accent-primary);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"] {
    width: 100%;
    padding: 11px 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--accent-glow);
    background: var(--bg-primary);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

/* 密码输入框 */
.password-input {
    position: relative;
}

.password-input input {
    padding-right: 48px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: var(--accent-primary);
}

/* 手机号输入 */
.phone-input {
    position: relative;
    display: flex;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
}

.phone-input input {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
}

.send-code-btn {
    padding: 11px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-sizing: border-box;
}

.send-code-btn:hover:not(:disabled) {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

.send-code-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 密码强度 */
.password-strength {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.strength-bar {
    flex: 1;
    height: 4px;
    background: var(--bg-tertiary);
    border-radius: 2px;
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    border-radius: 2px;
    transition: all 0.3s ease;
    width: 0;
}

.strength-fill[data-strength="0"] { width: 0; background: transparent; }
.strength-fill[data-strength="1"] { width: 25%; background: var(--error-color); }
.strength-fill[data-strength="2"] { width: 50%; background: var(--warning-color); }
.strength-fill[data-strength="3"] { width: 75%; background: #3b82f6; }
.strength-fill[data-strength="4"] { width: 100%; background: var(--success-color); }

.strength-text {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
}

/* 表单选项 */
.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.remember-me,
.agreement {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    user-select: none;
}

.remember-me input,
.agreement input {
    display: none;
}

.checkmark {
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-secondary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.remember-me input:checked ~ .checkmark,
.agreement input:checked ~ .checkmark {
    background: var(--accent-gradient);
    border-color: var(--accent-primary);
}

.remember-me input:checked ~ .checkmark::after,
.agreement input:checked ~ .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.forgot-password,
.link {
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.forgot-password:hover,
.link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* 提交按钮 */
.submit-btn {
    width: 100%;
    padding: 13px;
    background: var(--text-primary);
    border: none;
    border-radius: 10px;
    color: var(--bg-primary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
    box-sizing: border-box;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0.9;
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* 分割线 */
.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 12px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-primary);
}

/* 社交登录 */
.social-login {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--border-primary);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.social-btn.wechat:hover {
    background: #07c160;
    color: white;
    border-color: #07c160;
}

.social-btn.qq:hover {
    background: #12b7f5;
    color: white;
    border-color: #12b7f5;
}

.social-btn.github:hover {
    background: #333;
    color: white;
    border-color: #333;
}

/* 表单底部 */
.form-footer {
    text-align: center;
    padding-top: 18px;
    border-top: 1px solid var(--border-primary);
}

.form-footer p {
    color: var(--text-secondary);
    font-size: 13px;
}

/* 响应式设计 */

/* 超大屏幕 (1920px+) */
@media (min-width: 1920px) {
    .left-section {
        padding: 100px;
    }

    .right-section {
        flex: 0 0 42%;
    }

    .banner-text-box h1 {
        font-size: 42px;
    }

    .banner-text-box p {
        font-size: 18px;
    }
}

/* 大屏幕优化 (1440px - 1919px) */
@media (max-width: 1919px) and (min-width: 1440px) {
    .left-section {
        padding: 80px;
    }

    .right-section {
        flex: 0 0 45%;
    }

    .banner-text-box h1 {
        font-size: 40px;
    }

    .banner-text-box p {
        font-size: 17px;
    }
}

/* 中等屏幕 (1200px - 1439px) */
@media (max-width: 1439px) and (min-width: 1200px) {
    .left-section {
        padding: 60px;
    }

    .right-section {
        flex: 0 0 45%;
    }
}

/* 小屏笔记本 (1024px - 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
    .left-section {
        padding: 50px;
    }

    .right-section {
        flex: 0 0 48%;
    }

    .banner-text-box h1 {
        font-size: 32px;
    }

    .banner-text-box p {
        font-size: 15px;
    }
}

/* 平板和小屏设备 (900px - 1023px) - 左侧开始变小 */
@media (max-width: 1023px) and (min-width: 900px) {
    .left-section {
        padding: 40px 30px;
    }

    .right-section {
        flex: 0 0 50%;
    }

    .banner-text-box h1 {
        font-size: 28px;
    }

    .banner-text-box p {
        font-size: 14px;
    }
}

/* 隐藏左侧临界点 (768px - 899px) - 直接隐藏左侧 */
@media (max-width: 899px) and (min-width: 768px) {
    .left-section {
        display: none;
    }

    .right-section {
        flex: 1;
        width: 100%;
        min-width: auto;
        max-width: 100%;
        min-height: 100vh;
        background: var(--bg-secondary);
        box-sizing: border-box;
    }

    .form-container {
        width: 100%;
        max-width: 450px;
        box-sizing: border-box;
    }
}

/* 平板竖屏和手机横屏 (481px - 767px) */
@media (max-width: 767px) and (min-width: 481px) {
    body {
        overflow-y: auto;
        overflow-x: hidden;
    }

    .auth-layout {
        flex-direction: column;
        min-height: 100vh;
        width: 100%;
    }

    /* 隐藏左侧展示区 */
    .left-section {
        display: none;
    }

    .right-section {
        flex: 1;
        width: 100%;
        min-width: auto;
        max-width: 100%;
        min-height: 100vh;
        padding: 60px 40px;
        background: var(--bg-secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .form-container {
        width: 100%;
        max-width: 480px;
        box-sizing: border-box;
    }

    .theme-toggle {
        top: 20px;
        right: 20px;
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .form-header h2 {
        font-size: 28px;
    }

    .form-header p {
        font-size: 14px;
    }

    .social-btn {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
}

/* 手机端 (最大 480px) */
@media (max-width: 480px) {
    body {
        overflow-y: auto;
        overflow-x: hidden;
    }

    .auth-layout {
        flex-direction: column;
        min-height: 100vh;
        width: 100%;
    }

    /* 完全隐藏左侧展示区 */
    .left-section {
        display: none;
    }

    .right-section {
        flex: 1;
        width: 100%;
        min-width: auto;
        max-width: 100%;
        min-height: 100vh;
        padding: 40px 20px;
        background: var(--bg-secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .form-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .theme-toggle {
        top: 16px;
        right: 16px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .form-header {
        margin-bottom: 32px;
    }

    .form-header h2 {
        font-size: 24px;
    }

    .form-header p {
        font-size: 13px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="password"] {
        padding: 12px 14px;
        font-size: 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .phone-input {
        flex-direction: row;
        gap: 8px;
    }

    .phone-input input {
        flex: 1;
        min-width: 0;
    }

    .send-code-btn {
        padding: 12px 16px;
        font-size: 13px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .submit-btn {
        padding: 14px;
        font-size: 15px;
        margin-bottom: 24px;
    }

    .social-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .divider {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .social-login {
        margin-bottom: 24px;
    }

    .form-footer {
        padding-top: 16px;
    }

    .form-footer p {
        font-size: 13px;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 24px;
    }

    .forgot-password {
        font-size: 13px;
    }

    .remember-me,
    .agreement {
        font-size: 13px;
    }
}

/* 超小手机端 (最大 360px) */
@media (max-width: 360px) {
    .right-section {
        padding: 30px 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .form-header h2 {
        font-size: 22px;
    }

    .form-container {
        width: 100%;
        box-sizing: border-box;
    }

    .phone-input {
        flex-direction: column;
        width: 100%;
    }

    .phone-input input {
        width: 100%;
    }

    .send-code-btn {
        width: 100%;
        padding: 12px 14px;
    }

    .social-login {
        gap: 10px;
    }

    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* 横屏优化 */
@media (max-height: 600px) and (orientation: landscape) {
    .right-section {
        padding: 30px 20px;
        min-height: auto;
    }

    .form-header {
        margin-bottom: 24px;
    }

    .form-header h2 {
        font-size: 22px;
        margin-bottom: 4px;
    }

    .form-header p {
        font-size: 13px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .submit-btn {
        margin-bottom: 20px;
    }

    .divider {
        margin-bottom: 16px;
    }

    .social-login {
        margin-bottom: 20px;
    }
}

/* 消息提示样式 */
.message-toast {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 16px 24px;
    background: var(--bg-panel);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    box-shadow: var(--shadow-primary);
    animation: slideDown 0.3s ease-out;
}

.message-toast.success {
    border-left: 4px solid var(--success-color);
}

.message-toast.error {
    border-left: 4px solid var(--error-color);
}

.message-toast.info {
    border-left: 4px solid var(--accent-primary);
}

.message-toast i {
    font-size: 18px;
}

.message-toast.success i {
    color: var(--success-color);
}

.message-toast.error i {
    color: var(--error-color);
}

.message-toast.info i {
    color: var(--accent-primary);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* 交易所注册卡片样式 */
.exchange-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.exchange-card {
   display: flex;
    align-items: center;
    justify-content: center;  /* 添加这一行 */
    gap: 16px;
    padding: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.exchange-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
    border-color: var(--accent-primary);
    background: var(--bg-hover);
}

.exchange-card:active {
    transform: translateY(0);
}

.card-image {
    flex-shrink: 0;
    width: 100px;
/*    height: 100px;*/
    border-radius: 8px;
    overflow: hidden;
/*    background: var(--bg-tertiary);*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    flex: 1;
    min-width: 0;
}

.card-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
/*    margin: 0 0 8px 0;*/
    transition: color 0.3s ease;
}

.exchange-card:hover .card-content h4 {
    color: var(--accent-primary);
}

.card-content p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* 响应式设计 - 卡片 */
@media (max-width: 480px) {
    .exchange-cards {
        gap: 12px;
        margin-bottom: 24px;
    }

    .exchange-card {
        padding: 12px;
        gap: 12px;
    }

    .card-image {
        width: 80px;
        height: 80px;
    }

    .card-content h4 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .card-content p {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .card-image {
        width: 70px;
        height: 70px;
    }

    .card-content h4 {
        font-size: 13px;
    }

    .card-content p {
        font-size: 11px;
    }
}


/* 二维码弹窗样式 */
.qrcode-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.qrcode-modal.show {
    display: flex;
}

.qrcode-modal-content {
    position: relative;
    background: var(--bg-panel);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 32px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

.qrcode-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.qrcode-close-btn:hover {
    background: var(--bg-tertiary);
    transform: rotate(90deg);
}

.qrcode-container {
    text-align: center;
}

.qrcode-container h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.qrcode-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.qrcode-image svg {
    width: 100%;
    height: 100%;
}

.qrcode-container p {
    font-size: 14px;
    color: var(--text-muted);
}

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

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