* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #667eea;
    --primary-dark: #5568d3;
    --secondary: #764ba2;
    --success: #48bb78;
    --warning: #f6ad55;
    --danger: #f56565;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-tertiary: #edf2f7;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--bg-secondary);
}

/* Auth Pages */
.auth-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    width: 100%;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.auth-left {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.auth-brand h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
}

.auth-brand p {
    font-size: 18px;
    opacity: 0.9;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 60px;
}

.auth-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.auth-feature svg {
    flex-shrink: 0;
    opacity: 0.9;
}

.auth-feature h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.auth-feature p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.5;
}

.auth-right {
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.auth-header {
    margin-bottom: 40px;
}

.auth-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.auth-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

.link {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link:hover {
    color: var(--primary-dark);
}

.btn-primary {
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-full {
    width: 100%;
}

.divider {
    position: relative;
    text-align: center;
    margin: 32px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.divider span {
    position: relative;
    background: white;
    padding: 0 16px;
    color: var(--text-secondary);
    font-size: 14px;
}

.social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 2px solid var(--border);
    border-radius: 10px;
    background: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.social-btn:hover {
    border-color: var(--primary);
    background: var(--bg-secondary);
}

.auth-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.auth-footer p {
    color: var(--text-secondary);
    font-size: 14px;
}

.password-strength {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 4px;
}

.password-strength::after {
    content: '';
    display: block;
    height: 100%;
    width: 0;
    transition: all 0.3s ease;
}

.password-strength.weak::after {
    width: 33%;
    background: var(--danger);
}

.password-strength.medium::after {
    width: 66%;
    background: var(--warning);
}

.password-strength.strong::after {
    width: 100%;
    background: var(--success);
}

/* Responsive */
@media (max-width: 968px) {
    .auth-container {
        grid-template-columns: 1fr;
    }
    
    .auth-left {
        padding: 40px;
    }
    
    .auth-brand h1 {
        font-size: 36px;
    }
    
    .auth-features {
        margin-top: 40px;
        gap: 24px;
    }
    
    .auth-right {
        padding: 40px;
    }
}

@media (max-width: 640px) {
    .auth-body {
        padding: 0;
    }
    
    .auth-container {
        border-radius: 0;
        min-height: 100vh;
    }
    
    .auth-left {
        padding: 32px 24px;
    }
    
    .auth-brand h1 {
        font-size: 32px;
    }
    
    .auth-features {
        gap: 20px;
    }
    
    .auth-feature {
        gap: 16px;
    }
    
    .auth-right {
        padding: 32px 24px;
    }
    
    .auth-header h2 {
        font-size: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .social-buttons {
        grid-template-columns: 1fr;
    }
}


/* Dashboard Layout */
.dashboard-body {
    display: flex;
    min-height: 100vh;
    background: var(--bg-secondary);
}

.sidebar {
    width: 260px;
    background: white;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 100;
}

.sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid var(--border);
}

.sidebar-logo {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 15px;
}

.nav-item:hover {
    background: var(--bg-secondary);
    color: var(--primary);
}

.nav-item.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: var(--primary);
    border-right: 3px solid var(--primary);
}

.nav-item svg {
    flex-shrink: 0;
}

.sidebar-footer {
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.main-content {
    flex: 1;
    margin-left: 260px;
    display: flex;
    flex-direction: column;
}

.topbar {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 16px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: sticky;
    top: 0;
    z-index: 50;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-primary);
}

.topbar-search {
    flex: 1;
    max-width: 500px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: var(--bg-secondary);
    border-radius: 10px;
}

.topbar-search svg {
    color: var(--text-secondary);
}

.topbar-search input {
    flex: 1;
    border: none;
    background: none;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.topbar-btn {
    position: relative;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.topbar-btn:hover {
    color: var(--primary);
}

.topbar-btn .badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--danger);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.user-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.user-email {
    font-size: 12px;
    color: var(--text-secondary);
}

.dashboard-content {
    padding: 32px;
    flex: 1;
}

.welcome-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.welcome-section h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
}

.welcome-section p {
    color: var(--text-secondary);
    font-size: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

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

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-icon.purple {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

.stat-icon.green {
    background: rgba(72, 187, 120, 0.1);
}

.stat-icon.blue {
    background: rgba(66, 153, 225, 0.1);
}

.stat-icon.orange {
    background: rgba(246, 173, 85, 0.1);
}

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

.stat-change {
    font-size: 14px;
    font-weight: 500;
}

.stat-change.positive {
    color: var(--success);
}

.stat-change.neutral {
    color: var(--text-secondary);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 24px;
}

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

.card-header h2 {
    font-size: 20px;
    font-weight: 700;
}

.savings-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.savings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 12px;
}

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

.crypto-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.crypto-icon.btc {
    background: linear-gradient(135deg, #f7931a, #ff6b00);
}

.crypto-icon.eth {
    background: linear-gradient(135deg, #627eea, #4e5ee4);
}

.crypto-icon.usdt {
    background: linear-gradient(135deg, #26a17b, #50af95);
}

.crypto-name {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
}

.crypto-details {
    font-size: 13px;
    color: var(--text-secondary);
}

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

.savings-value {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.savings-earned {
    font-size: 13px;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 8px;
}

.crypto-icon.bnb {
    background: linear-gradient(135deg, #f3ba2f, #f0b90b);
}

.crypto-icon.sol {
    background: linear-gradient(135deg, #9945ff, #14f195);
}

.crypto-icon-sm.bnb {
    background: linear-gradient(135deg, #f3ba2f, #f0b90b);
}

.crypto-icon-sm.sol {
    background: linear-gradient(135deg, #9945ff, #14f195);
}

.progress-bar {
    width: 120px;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 4px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 3px;
}

.progress-text {
    font-size: 12px;
    color: var(--text-secondary);
}

.quick-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.action-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.action-card:hover {
    background: var(--bg-tertiary);
    transform: translateX(4px);
}

.action-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.action-icon.purple {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

.action-icon.green {
    background: rgba(72, 187, 120, 0.1);
}

.action-icon.blue {
    background: rgba(66, 153, 225, 0.1);
}

.action-icon.orange {
    background: rgba(246, 173, 85, 0.1);
}

.action-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.action-desc {
    font-size: 13px;
    color: var(--text-secondary);
}

.table-container {
    overflow-x: auto;
}

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

.transactions-table thead {
    background: var(--bg-secondary);
}

.transactions-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transactions-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.transactions-table tr:last-child td {
    border-bottom: none;
}

.table-crypto {
    display: flex;
    align-items: center;
    gap: 10px;
}

.crypto-icon-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.crypto-icon-sm.btc {
    background: linear-gradient(135deg, #f7931a, #ff6b00);
}

.crypto-icon-sm.eth {
    background: linear-gradient(135deg, #627eea, #4e5ee4);
}

.crypto-icon-sm.usdt {
    background: linear-gradient(135deg, #26a17b, #50af95);
}

.amount {
    font-weight: 600;
}

.amount.positive {
    color: var(--success);
}

.badge-type {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.badge-type.deposit {
    background: rgba(72, 187, 120, 0.1);
    color: var(--success);
}

.badge-type.interest {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary);
}

.badge-type.withdraw {
    background: rgba(245, 101, 101, 0.1);
    color: var(--danger);
}

.badge-status {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.badge-status.completed {
    background: rgba(72, 187, 120, 0.1);
    color: var(--success);
}

.badge-status.pending {
    background: rgba(246, 173, 85, 0.1);
    color: var(--warning);
}

/* Responsive Dashboard */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .topbar {
        padding: 12px 16px;
    }
    
    .topbar-search {
        display: none;
    }
    
    .user-info {
        display: none;
    }
    
    .dashboard-content {
        padding: 20px 16px;
    }
    
    .welcome-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .welcome-section h1 {
        font-size: 24px;
    }
    
    .welcome-section p {
        font-size: 14px;
    }
    
    .welcome-section button,
    .welcome-section a button {
        width: 100%;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
    
    .page-header p {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .card {
        padding: 20px;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .topbar-search {
        display: none;
    }
    
    .savings-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
    }
    
    .savings-stats {
        text-align: left;
        width: 100%;
    }
    
    .progress-bar {
        width: 100%;
    }
    
    .transactions-table {
        font-size: 12px;
    }
    
    .transactions-table th,
    .transactions-table td {
        padding: 10px 8px;
    }
    
    .table-crypto {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .crypto-icon-sm {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .empty-state {
        padding: 40px 20px;
    }
    
    .empty-state svg {
        width: 48px;
        height: 48px;
    }
    
    .empty-state h3 {
        font-size: 18px;
    }
    
    .empty-state p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .topbar {
        padding: 10px 12px;
    }
    
    .topbar-btn {
        padding: 6px;
    }
    
    .user-profile img {
        width: 32px;
        height: 32px;
    }
    
    .dashboard-content {
        padding: 16px 12px;
    }
    
    .welcome-section h1 {
        font-size: 20px;
    }
    
    .stat-card {
        padding: 16px;
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .stat-change {
        font-size: 12px;
    }
    
    .card {
        padding: 16px;
    }
    
    .card-header h2 {
        font-size: 18px;
    }
    
    .savings-item {
        padding: 12px;
    }
    
    .crypto-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .crypto-name {
        font-size: 14px;
    }
    
    .crypto-details {
        font-size: 12px;
    }
    
    .savings-value {
        font-size: 16px;
    }
    
    .action-card {
        padding: 12px;
    }
    
    .action-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .action-title {
        font-size: 14px;
    }
    
    .action-desc {
        font-size: 12px;
    }
    
    .btn-primary,
    .btn-outline {
        padding: 12px 20px;
        font-size: 14px;
    }
}


/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state svg {
    color: var(--text-secondary);
    opacity: 0.3;
    margin-bottom: 24px;
}

.empty-state h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header */
.page-header {
    margin-bottom: 32px;
}

.page-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Crypto Grid */
.crypto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.crypto-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.crypto-card:hover {
    border-color: var(--primary);
    background: white;
}

.crypto-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0 auto 16px;
}

.crypto-card-icon.btc {
    background: linear-gradient(135deg, #f7931a, #ff6b00);
}

.crypto-card-icon.eth {
    background: linear-gradient(135deg, #627eea, #4e5ee4);
}

.crypto-card-icon.usdt {
    background: linear-gradient(135deg, #26a17b, #50af95);
}

.crypto-card-icon.bnb {
    background: linear-gradient(135deg, #f3ba2f, #f0b90b);
}

.crypto-card-icon.sol {
    background: linear-gradient(135deg, #9945ff, #14f195);
}

.crypto-card-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.crypto-card-info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.crypto-card-apy {
    font-size: 14px;
    font-weight: 600;
    color: var(--success);
}

/* Plans Info Grid */
.plans-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.plan-info-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    position: relative;
}

.plan-info-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
}

.plan-info-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.plan-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.plan-info-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.plan-info-apy {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-info-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan-info-features li {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Responsive Deposit Page */
@media (max-width: 968px) {
    .crypto-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plans-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .crypto-grid {
        grid-template-columns: 1fr;
    }
    
    .crypto-card {
        padding: 20px;
    }
    
    .crypto-card-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
}


/* Settings Page */
.settings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.settings-item:last-child {
    border-bottom: none;
}

.settings-label strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.settings-label p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.btn-outline {
    padding: 10px 20px;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(102, 126, 234, 0.05);
}

@media (max-width: 640px) {
    .settings-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .settings-item button {
        width: 100%;
    }
}
