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

:root {
    --gold: #D4AF37;
    --dark-brown: #1a1410;
    --black: #0a0a0a;
    --light-gold: #f4e4b7;
    --text-white: #ffffff;
    --text-gray: #b8b8b8;
    --spacing-unit: 8px;
}

html {
    height: 100%;
    overflow: hidden;
    position: fixed;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-brown) 100%);
    color: var(--text-white);
    overflow: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100vh;
    width: 100vw;
    position: fixed;
}

.screen {
    display: none;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    overflow: hidden;
}

.screen.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
    animation: fadeIn 0.3s ease forwards;
}

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

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: calc(var(--spacing-unit) * 3);
    text-align: center;
}

.logo-container {
    position: relative;
    margin-bottom: calc(var(--spacing-unit) * 6);
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(60px);
    animation: pulse 3s ease-in-out infinite;
}

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

.brand-logo {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    position: relative;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.tagline {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-gray);
    margin-bottom: calc(var(--spacing-unit) * 6);
    letter-spacing: 1px;
}

.primary-btn {
    background: linear-gradient(135deg, var(--gold) 0%, #c9a030 100%);
    color: var(--black);
    border: none;
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 6);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    letter-spacing: 0.5px;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

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

.primary-btn.large {
    padding: calc(var(--spacing-unit) * 2.5) calc(var(--spacing-unit) * 8);
    font-size: 1.2rem;
}

.primary-btn.full-width {
    width: 100%;
}

.secondary-btn {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 4);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: calc(var(--spacing-unit) * 1);
}

.secondary-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.onboarding-content {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: calc(var(--spacing-unit) * 6) calc(var(--spacing-unit) * 3);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.progress-dots {
    display: flex;
    justify-content: center;
    gap: calc(var(--spacing-unit) * 2);
    margin-bottom: calc(var(--spacing-unit) * 6);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
}

.onboarding-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: calc(var(--spacing-unit) * 4);
    color: var(--gold);
    line-height: 1.2;
}

.onboarding-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.form-content {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding: calc(var(--spacing-unit) * 6) calc(var(--spacing-unit) * 3);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--gold);
}

.form-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: calc(var(--spacing-unit) * 5);
    line-height: 1.6;
}

.form-group {
    margin-bottom: calc(var(--spacing-unit) * 3);
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: calc(var(--spacing-unit));
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    padding: calc(var(--spacing-unit) * 2);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.main-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: calc(var(--spacing-unit) * 2);
    padding-bottom: calc(var(--spacing-unit) * 3);
    -webkit-overflow-scrolling: touch;
    width: 100%;
    box-sizing: border-box;
}

.page-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 6);
    padding-top: calc(var(--spacing-unit) * 3);
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--gold);
}

.subtitle {
    color: var(--text-gray);
    font-size: 1rem;
}

.status-badge {
    display: inline-block;
    padding: calc(var(--spacing-unit)) calc(var(--spacing-unit) * 3);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.content-section {
    margin-bottom: calc(var(--spacing-unit) * 6);
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    font-weight: 700;
    margin-bottom: calc(var(--spacing-unit) * 3);
    color: var(--light-gold);
    line-height: 1.3;
}

.section-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: calc(var(--spacing-unit) * 2.5);
}

.disclaimer-text {
    background: rgba(212, 175, 55, 0.05);
    padding: calc(var(--spacing-unit) * 2);
    border-left: 3px solid var(--gold);
    border-radius: 8px;
}

.feed-grid {
    display: grid;
    gap: calc(var(--spacing-unit) * 3);
    margin-top: calc(var(--spacing-unit) * 4);
}

.feed-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.feed-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
}

.card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: calc(var(--spacing-unit) * 3);
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--gold);
}

.card-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 2);
    margin: calc(var(--spacing-unit) * 5) 0;
}

.cta-button {
    display: flex;
    align-items: center;
    padding: calc(var(--spacing-unit) * 3);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    transform: translateX(4px);
}

.cta-icon {
    font-size: 2rem;
    margin-right: calc(var(--spacing-unit) * 2);
}

.cta-text {
    flex: 1;
    text-align: left;
}

.cta-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: calc(var(--spacing-unit) * 0.5);
}

.cta-subtitle {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.benefits-list {
    display: grid;
    gap: calc(var(--spacing-unit) * 3);
    margin-top: calc(var(--spacing-unit) * 4);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: calc(var(--spacing-unit) * 3);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.benefit-icon {
    font-size: 2rem;
    margin-right: calc(var(--spacing-unit) * 2);
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: calc(var(--spacing-unit));
}

.benefit-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.final-cta {
    text-align: center;
    padding: calc(var(--spacing-unit) * 6) calc(var(--spacing-unit) * 3);
    background: rgba(212, 175, 55, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: calc(var(--spacing-unit) * 6);
}

.final-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.final-cta p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.profile-hero {
    text-align: center;
    padding: calc(var(--spacing-unit) * 6) calc(var(--spacing-unit) * 3);
    margin-bottom: calc(var(--spacing-unit) * 5);
}

.profile-status {
    display: inline-block;
    padding: calc(var(--spacing-unit) * 4);
    background: rgba(212, 175, 55, 0.05);
    border-radius: 20px;
    border: 2px solid var(--gold);
}

.status-icon {
    font-size: 3rem;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.profile-status h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: calc(var(--spacing-unit));
}

.status-message {
    font-size: 1rem;
    color: var(--text-gray);
}

.progress-section {
    background: rgba(255, 255, 255, 0.02);
    padding: calc(var(--spacing-unit) * 4);
    border-radius: 16px;
    margin-bottom: calc(var(--spacing-unit) * 5);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.progress-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.progress-item {
    display: flex;
    align-items: center;
    padding: calc(var(--spacing-unit) * 2) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    margin-right: calc(var(--spacing-unit) * 2);
    font-weight: 700;
    font-size: 0.9rem;
}

.profile-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: calc(var(--spacing-unit) * 2);
    margin: calc(var(--spacing-unit) * 4) 0;
}

.disclaimer-footer {
    text-align: center;
    margin-top: calc(var(--spacing-unit) * 6);
}

.bottom-nav {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 12px 0;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    height: 70px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 8px 12px;
    border-radius: 12px;
    min-width: 60px;
    flex: 1;
    max-width: 80px;
}

.nav-item:active {
    transform: scale(0.95);
}

.nav-item:hover {
    color: var(--gold);
}

.nav-item.active {
    color: var(--gold);
}

.nav-item.active .nav-icon {
    transform: scale(1.1);
}

.nav-icon {
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

.nav-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: capitalize;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: calc(var(--spacing-unit) * 3);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--black) 100%);
    padding: calc(var(--spacing-unit) * 6);
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid var(--gold);
    box-shadow: 0 10px 50px rgba(212, 175, 55, 0.3);
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.modal-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.modal-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: calc(var(--spacing-unit) * 4);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .onboarding-content,
    .form-content {
        padding: calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 2);
    }

    .nav-label {
        font-size: 0.65rem;
    }

    .nav-icon {
        font-size: 1.3rem;
    }

    .profile-actions {
        flex-direction: column;
    }

    .secondary-btn {
        width: 100%;
    }
}

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

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

.app-header {
    background: rgba(212, 175, 55, 0.05);
    padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 2);
    border-radius: 16px;
    margin-bottom: calc(var(--spacing-unit) * 3);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.app-header h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: calc(var(--spacing-unit));
}

.app-header p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.dashboard-grid {
    display: grid;
    gap: calc(var(--spacing-unit) * 2);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: calc(var(--spacing-unit) * 3);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: calc(var(--spacing-unit));
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: calc(var(--spacing-unit) * 3);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.info-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.info-card p:last-child {
    margin-bottom: 0;
}

.cta-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: calc(var(--spacing-unit) * 4);
    text-align: center;
    margin: calc(var(--spacing-unit) * 3) 0;
}

.cta-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.cta-card p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: calc(var(--spacing-unit) * 3);
    line-height: 1.6;
}

.cta-link {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 5);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.compact-cta {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: calc(var(--spacing-unit) * 2.5);
    margin: calc(var(--spacing-unit) * 2.5) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.compact-cta-text {
    flex: 1;
}

.compact-cta-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: calc(var(--spacing-unit) * 0.5);
}

.compact-cta-text p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.compact-cta-button {
    background: var(--gold);
    color: var(--black);
    padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.compact-cta-button:hover {
    transform: scale(1.05);
}

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

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

.promo-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: calc(var(--spacing-unit) * 3);
    margin-bottom: calc(var(--spacing-unit) * 3);
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.promo-badge {
    display: inline-block;
    background: var(--gold);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: calc(var(--spacing-unit) * 0.75) calc(var(--spacing-unit) * 1.5);
    border-radius: 20px;
    margin-bottom: calc(var(--spacing-unit) * 2);
    position: relative;
    z-index: 1;
}

.promo-main {
    position: relative;
    z-index: 1;
    margin-bottom: calc(var(--spacing-unit) * 2.5);
}

.promo-main h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: calc(var(--spacing-unit));
    line-height: 1.2;
}

.promo-main p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.promo-action {
    position: relative;
    z-index: 1;
}

.promo-btn {
    display: inline-block;
    background: var(--gold);
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 4);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.promo-btn:hover {
    background: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

@media (max-width: 480px) {
    .promo-card {
        padding: calc(var(--spacing-unit) * 2.5);
    }

    .promo-main h3 {
        font-size: 1.3rem;
    }

    .promo-btn {
        width: 100%;
        text-align: center;
    }
}

.balance-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: calc(var(--spacing-unit) * 3);
    margin-bottom: calc(var(--spacing-unit) * 3);
    text-align: center;
    position: relative;
    overflow: visible;
}

@media (min-width: 480px) {
    .balance-card {
        padding: calc(var(--spacing-unit) * 4);
    }
}

.balance-card.locked::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(212, 175, 55, 0.03) 10px,
        rgba(212, 175, 55, 0.03) 20px
    );
    pointer-events: none;
    border-radius: 18px;
    overflow: hidden;
}

.balance-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(var(--spacing-unit) * 2);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.balance-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-gray);
    margin: 0;
}

.lock-icon {
    font-size: 1.5rem;
}

.balance-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: calc(var(--spacing-unit) * 1);
    letter-spacing: 1px;
}

.balance-amount.blurred {
    filter: blur(8px);
    user-select: none;
}

.balance-subtitle {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.activation-btn {
    margin-top: calc(var(--spacing-unit) * 2);
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .balance-amount {
        font-size: 2.5rem;
    }

    .balance-header h3 {
        font-size: 1rem;
    }
}

.progress-item.pending {
    opacity: 0.7;
}

.progress-item.pending .check-icon {
    background: rgba(212, 175, 55, 0.3);
    color: var(--text-gray);
}
