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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #F8F8F8;
    color: #161823;
    overflow-x: hidden;
}

.app-container {
    min-height: 100vh;
    padding-bottom: 80px;
    background: #FFFFFF;
}

/* Login/Register Pages */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #FFFFFF;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
}

.back-button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F1F1F2;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: all 0.2s;
}

.back-button:hover {
    background: #E4E4E6;
}

.logo-section {
    text-align: center;
    margin-bottom: 3rem;
}

.logo-icon {
    width: 80px;
    height: 80px;
    background: #FE2C55;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 2px 8px rgba(254, 44, 85, 0.2);
}

.logo-icon::before {
    display: none;
}

.logo-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

.logo-section h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #161823;
}

.logo-section p {
    color: #8A8A8E;
    font-size: 0.95rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #F1F1F2;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0 1rem;
    transition: all 0.2s;
}

.input-group:focus-within {
    border-color: #FE2C55;
    background: #FFFFFF;
}

.input-group svg {
    width: 20px;
    height: 20px;
    color: #8A8A8E;
}

.input-group input,
.input-group select {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.9rem 0 0.9rem 0.75rem;
    color: #161823;
    font-size: 0.95rem;
    outline: none;
}

.input-group input::placeholder {
    color: #A8A8AB;
}

.btn-primary {
    background: #FE2C55;
    color: #FFFFFF;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: none;
    margin-top: 0.5rem;
}

.btn-primary::before {
    display: none;
}

.btn-primary:hover {
    background: #E02648;
    transform: none;
    box-shadow: none;
}

.register-link {
    text-align: center;
    margin-top: 1.5rem;
    color: #8A8A8E;
    font-size: 0.9rem;
}

.register-link a {
    color: #FE2C55;
    text-decoration: none;
    font-weight: 600;
}

/* Home Header */
.home-container {
    background: #F8F8F8;
}

.home-header {
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    padding: 0;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem 0.75rem;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-logo svg {
    width: 24px;
    height: 24px;
    color: #25F4EE;
}

.header-logo span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
}

.header-actions {
    display: flex;
    gap: 0.5rem;
}

.header-icon-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.header-icon-btn:active {
    background: rgba(255, 255, 255, 0.2);
}

.header-icon-btn svg {
    width: 18px;
    height: 18px;
    color: #FFFFFF;
}

/* Balance Card Home */
.balance-card-home {
    padding: 1.5rem 1rem 1.75rem;
    min-height: 140px;
    border-radius: 16px;
    overflow: hidden;
}

.balance-main {
    margin-bottom: 1rem;
}

.balance-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.balance-amount-home {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.balance-actions-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.balance-quick-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.balance-quick-btn:active {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(0.98);
}

.balance-quick-btn svg {
    width: 18px;
    height: 18px;
    color: #25F4EE;
}

.balance-quick-btn span {
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Ticker */
.ticker-container {
    overflow: hidden;
    background: #000000;
    padding: 0.65rem 0;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker {
    display: flex;
    gap: 2.5rem;
    animation: scroll 25s linear infinite;
    white-space: nowrap;
}

.ticker span {
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 500;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Content */
.content {
    padding: 1.25rem 1rem 1rem;
}

.section-header {
    margin-bottom: 1.25rem;
}

.section-header-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.section-header-row h3 {
    margin-bottom: 0;
}

.section-header-info-btn {
    height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: #161823;
    color: #fff;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 0.8rem;
    font-weight: 600;
    transition: transform 0.2s, background 0.2s;
}

.section-header-info-btn:hover {
    background: #FE2C55;
    transform: scale(1.03);
}

.section-header-info-btn:active {
    transform: scale(0.98);
}

.section-header-info-btn svg {
    width: 16px;
    height: 16px;
}

.section-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #161823;
}

.section-header .section-header-row h3 {
    margin-bottom: 0;
}

.section-header p {
    font-size: 0.85rem;
    color: #8A8A8E;
}

/* Modal Rendimentos (estilo TikTok) */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-rendimentos {
    background: #fff;
    border-radius: 16px;
    max-width: 400px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.9);
    transition: transform 0.25s ease;
}

.modal-overlay.active .modal-rendimentos {
    transform: scale(1);
}

.modal-rendimentos-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.25rem 0.75rem;
    border-bottom: 1px solid #f1f3f5;
}

.modal-rendimentos-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #161823;
    margin: 0;
}

.modal-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f3f5;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #161823;
    transition: background 0.2s;
}

.modal-close-btn:hover {
    background: #e9ecef;
}

.modal-close-btn svg {
    width: 20px;
    height: 20px;
}

.modal-rendimentos-body {
    padding: 1.25rem;
    overflow-y: auto;
    max-height: calc(85vh - 80px);
}

.modal-rendimentos-body p,
.modal-rendimentos-body ul {
    font-size: 0.9rem;
    color: #161823;
    line-height: 1.55;
    margin: 0 0 1rem;
}

.modal-rendimentos-body p:last-child {
    margin-bottom: 0;
}

.modal-rendimentos-body ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.modal-rendimentos-body li {
    margin-bottom: 0.5rem;
}

.modal-rendimentos-note {
    font-size: 0.85rem !important;
    color: #6b7280 !important;
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border-left: 3px solid #FE2C55;
}

/* Modal Comunidade Oficial (home) */
.modal-community .modal-community-box {
    background: #fff;
    border-radius: 16px;
    max-width: 380px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.25s ease;
    position: relative;
}

.modal-community.active .modal-community-box {
    transform: scale(1);
}

.modal-community-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background 0.2s;
}

.modal-community-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.modal-community-close svg {
    width: 20px;
    height: 20px;
}

.modal-community-banner {
    width: 100%;
    line-height: 0;
}

.modal-community-banner img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

.modal-community-actions {
    padding: 1.25rem 1.25rem 1.5rem;
}

.modal-community-btn {
    width: 100%;
    padding: 1rem 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.modal-community-btn svg {
    width: 20px;
    height: 20px;
}

.modal-community-dont-show {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #6b7280;
    cursor: pointer;
}

.modal-community-dont-show input {
    width: 18px;
    height: 18px;
}

/* Progress Cards Home */
.progress-cards-home {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.progress-card-home {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.progress-card-home.current {
    background: linear-gradient(135deg, #25F4EE 0%, #1E9B9A 100%);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(37, 244, 238, 0.25);
}

.progress-card-home.premium {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.25);
}

.card-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.85rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    padding: 0.25rem 0.6rem;
    border-radius: 16px;
    font-size: 0.65rem;
    font-weight: 600;
}

.premium-badge {
    background: rgba(0, 0, 0, 0.6);
}

.card-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    position: absolute;
    top: 0.85rem;
    left: 1rem;
}

.progress-card-home.current .card-icon,
.progress-card-home.premium .card-icon {
    background: rgba(255, 255, 255, 0.25);
}

.card-icon svg {
    width: 18px;
    height: 18px;
    color: #161823;
}

.progress-card-home.current .card-icon svg,
.progress-card-home.premium .card-icon svg {
    color: #FFFFFF;
}

.card-info {
    margin-bottom: 0.5rem;
    padding-left: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-info-left {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.card-title {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #161823;
}

.progress-card-home.current .card-title,
.progress-card-home.premium .card-title {
    color: #FFFFFF;
}

.card-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: #161823;
    line-height: 1;
    margin-bottom: 0;
}

.progress-card-home.current .card-percentage,
.progress-card-home.premium .card-percentage {
    color: #FFFFFF;
}

.card-subtitle {
    font-size: 0.7rem;
    color: #8A8A8E;
}

.progress-card-home.current .card-subtitle,
.progress-card-home.premium .card-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.card-progress {
    margin-top: 0;
    padding-left: 48px;
}

.card-progress-bar {
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.35rem;
    position: relative;
}

.progress-card-home.current .card-progress-bar,
.progress-card-home.premium .card-progress-bar {
    background: rgba(255, 255, 255, 0.25);
}

.card-progress-fill {
    height: 100%;
    background: #25F4EE;
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.progress-card-home.current .card-progress-fill {
    background: #FFFFFF;
}

.progress-card-home.premium .card-progress-fill {
    background: #FFFFFF;
}

.card-progress-label {
    font-size: 0.65rem;
    color: #8A8A8E;
}

.progress-card-home.current .card-progress-label,
.progress-card-home.premium .card-progress-label {
    color: rgba(255, 255, 255, 0.7);
}

/* Page Header */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #FFFFFF;
    border-bottom: 1px solid #E8E8E8;
    box-shadow: none;
    backdrop-filter: none;
}

.page-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #161823;
}

.header-btn {
    width: 40px;
    height: 40px;
    background: #F1F1F2;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.header-btn:hover {
    background: #E4E4E6;
}

.header-btn svg {
    width: 20px;
    height: 20px;
    color: #161823;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
}

.product-card {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #FE2C55;
}

.product-card.featured {
    border-color: #FFB800;
    box-shadow: 0 2px 8px rgba(255, 184, 0, 0.15);
}

.product-card.featured:hover {
    box-shadow: 0 4px 12px rgba(255, 184, 0, 0.25);
}

.product-image {
    height: 140px;
    background: #F8F8F8;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card.featured .product-image {
    background: #FFF9F0;
}

.product-tag {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: #FFFFFF;
    backdrop-filter: none;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid #E8E8E8;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    color: #FE2C55;
}

.product-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #FFB800;
    color: #FFFFFF;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: none;
}

.product-info {
    padding: 0.85rem;
}

.product-info h3 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: #161823;
    font-weight: 600;
}

.product-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #161823;
    margin-bottom: 0.4rem;
}

.product-stats {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
    color: #8A8A8E;
    font-size: 0.8rem;
}

.product-stats svg {
    width: 14px;
    height: 14px;
}

.product-info .btn-primary {
    width: 100%;
    padding: 0.65rem;
    font-size: 0.85rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.stat-card {
    background: #F8F8F8;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
}

.stat-card svg {
    width: 28px;
    height: 28px;
    color: #FE2C55;
    margin-bottom: 0.65rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #161823;
}

.stat-label {
    color: #8A8A8E;
    font-size: 0.8rem;
}

/* My Products List */
.my-products-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.my-product-item {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.my-product-icon {
    width: 48px;
    height: 48px;
    background: #F8F8F8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.my-product-icon svg {
    width: 22px;
    height: 22px;
    color: #FE2C55;
}

.my-product-info {
    flex: 1;
}

.my-product-info h3 {
    font-size: 0.95rem;
    margin-bottom: 0.45rem;
    color: #161823;
    font-weight: 600;
}

.my-product-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.45rem;
    font-size: 0.8rem;
}

.my-product-meta span {
    color: #8A8A8E;
}

.earnings {
    color: #FE2C55 !important;
    font-weight: 600;
}

.my-product-progress {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.progress-bar-small {
    flex: 1;
    height: 4px;
    background: #E8E8E8;
    border-radius: 10px;
    overflow: hidden;
}

.my-product-progress span {
    font-size: 0.7rem;
    color: #8A8A8E;
}

.my-product-status svg {
    width: 22px;
    height: 22px;
    color: #00C853;
}

/* Referral Card */
.referral-card {
    background: #F8F8F8;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    margin-bottom: 0.75rem;
}

.referral-title {
    color: #8A8A8E;
    font-size: 0.85rem;
    margin-bottom: 0.85rem;
    font-weight: 500;
}

.referral-code {
    background: #FFFFFF;
    border: 2px dashed #E8E8E8;
    border-radius: 10px;
    padding: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 0.5rem;
}

.referral-code:hover {
    border-color: #FE2C55;
    background: #FFF4F5;
}

.referral-code span {
    font-size: 1.35rem;
    font-weight: 700;
    color: #161823;
    letter-spacing: 1.5px;
}

.referral-code svg {
    width: 18px;
    height: 18px;
    color: #8A8A8E;
}

.referral-hint {
    color: #A8A8AB;
    font-size: 0.75rem;
}

/* Affiliate Claim Card */
.affiliate-claim-card {
    background: linear-gradient(135deg, #25F4EE 0%, #1E9B9A 100%);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 16px rgba(37, 244, 238, 0.25);
}

.claim-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.claim-info {
    flex: 1;
}

.claim-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.claim-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.claim-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.claim-btn:hover {
    background: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.claim-btn.disabled {
    background: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    opacity: 0.7;
}

.claim-btn.disabled:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.claim-btn svg {
    width: 20px;
    height: 20px;
    color: #25F4EE;
}

.claim-btn span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #161823;
}

.claim-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
}

.claim-timer svg {
    width: 16px;
    height: 16px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 2.5rem 1rem;
}

.empty-state svg {
    width: 56px;
    height: 56px;
    color: #DBDBDB;
    margin-bottom: 0.85rem;
}

.empty-state p {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #161823;
}

.empty-state span {
    color: #8A8A8E;
    display: block;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

/* Transaction List */
.transaction-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.transaction-item {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    padding: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.transaction-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transaction-item.income .transaction-icon {
    background: #E8F9F3;
}

.transaction-item.expense .transaction-icon {
    background: #FFF0F3;
}

.transaction-icon svg {
    width: 18px;
    height: 18px;
}

.transaction-item.income .transaction-icon svg {
    color: #00C853;
}

.transaction-item.expense .transaction-icon svg {
    color: #FE2C55;
}

.transaction-info {
    flex: 1;
}

.transaction-info h3 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    color: #161823;
    font-weight: 600;
}

.transaction-date {
    color: #8A8A8E;
    font-size: 0.75rem;
}

.transaction-amount {
    font-size: 1rem;
    font-weight: 700;
}

.transaction-item.income .transaction-amount {
    color: #00C853;
}

.transaction-item.expense .transaction-amount {
    color: #FE2C55;
}

/* Balance Card Large */
.balance-card-large {
    background: #F8F8F8;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.25rem;
    border: 1px solid #E8E8E8;
}

.balance-amount-large {
    font-size: 2.25rem;
    font-weight: 700;
    margin-top: 0.5rem;
    color: #161823;
}

/* Action Buttons */
.action-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.action-btn {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
    transition: all 0.2s;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.action-btn.deposit:hover {
    background: #E8F9F3;
    border-color: #00C853;
}

.action-btn.withdraw:hover {
    background: #FFF4F5;
    border-color: #FE2C55;
}

.action-btn svg {
    width: 28px;
    height: 28px;
}

.action-btn.deposit svg {
    color: #00C853;
}

.action-btn.withdraw svg {
    color: #FE2C55;
}

.action-btn span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #161823;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #FFFFFF;
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid #E8E8E8;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    border-bottom: 1px solid #E8E8E8;
}

.modal-header h2 {
    font-size: 1.15rem;
    color: #161823;
    font-weight: 700;
}

.modal-close {
    width: 32px;
    height: 32px;
    background: #F1F1F2;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #E4E4E6;
}

.modal-close svg {
    width: 18px;
    height: 18px;
    color: #161823;
}

.modal-body {
    padding: 1.25rem;
}

.modal-body .input-group {
    margin-bottom: 0.85rem;
}

.modal-body .input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #161823;
    font-size: 0.85rem;
    font-weight: 600;
}

.modal-body .input-group input:not([type="checkbox"]),
.modal-body .input-group select {
    width: 100%;
}

/* PIX Info */
.pix-info {
    text-align: center;
    margin: 1.25rem 0;
}

.pix-qr {
    margin-bottom: 1rem;
}

.qr-placeholder {
    width: 180px;
    height: 180px;
    background: #F8F8F8;
    border: 2px dashed #E8E8E8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.qr-placeholder svg {
    width: 64px;
    height: 64px;
    color: #DBDBDB;
}

.pix-key {
    background: #F8F8F8;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    padding: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 0.5rem;
}

.pix-key:hover {
    background: #FFF4F5;
    border-color: #FE2C55;
}

.pix-key span {
    color: #161823;
    font-weight: 600;
    font-size: 0.9rem;
}

.pix-key svg {
    width: 16px;
    height: 16px;
    color: #8A8A8E;
}

.pix-hint {
    color: #8A8A8E;
    font-size: 0.8rem;
}

/* Profile */
.profile-header {
    text-align: center;
    padding: 1.5rem 1rem;
    background: #FFFFFF;
    border-bottom: 1px solid #E8E8E8;
}

.profile-avatar {
    width: 72px;
    height: 72px;
    background: #F8F8F8;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.85rem;
    border: 2px solid #E8E8E8;
}

.profile-avatar svg {
    width: 36px;
    height: 36px;
    color: #8A8A8E;
}

.profile-header h2 {
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
    color: #161823;
    font-weight: 700;
}

.profile-header p {
    color: #8A8A8E;
    font-size: 0.9rem;
}

/* Menu List */
.menu-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-item {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s;
}

.menu-item:hover {
    background: #F8F8F8;
}

.menu-item-left {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.menu-item-left svg {
    width: 20px;
    height: 20px;
    color: #161823;
}

.menu-item-left span {
    font-size: 0.95rem;
    color: #161823;
    font-weight: 500;
}

.menu-item > svg {
    width: 18px;
    height: 18px;
    color: #DBDBDB;
}

/* Support Options */
.support-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.support-option {
    background: #F8F8F8;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    padding: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    color: #161823;
    transition: all 0.2s;
}

.support-option:hover {
    background: #FFF4F5;
    border-color: #FE2C55;
}

.support-option svg {
    width: 28px;
    height: 28px;
    color: #FE2C55;
    flex-shrink: 0;
}

.support-option h3 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    color: #161823;
    font-weight: 600;
}

.support-option p {
    color: #8A8A8E;
    font-size: 0.8rem;
}

/* Buy Modal */
.buy-product-preview {
    text-align: center;
    margin-bottom: 1.5rem;
}

.buy-product-image {
    width: 120px;
    height: 120px;
    background: #F8F8F8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.85rem;
    overflow: hidden;
}

.buy-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.buy-product-preview h3 {
    font-size: 1.1rem;
    color: #161823;
    font-weight: 700;
}

.buy-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.buy-info-item {
    background: #F8F8F8;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    padding: 0.85rem;
    text-align: center;
}

.buy-info-item.highlight {
    background: #E8F9F3;
    border-color: #00C853;
}

.buy-info-label {
    color: #8A8A8E;
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
}

.buy-info-item.highlight .buy-info-label {
    color: #00A843;
}

.buy-info-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #161823;
}

.buy-info-item.highlight .buy-info-value {
    color: #00C853;
}

.buy-total-card {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    margin-bottom: 1.25rem;
}

.buy-total-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-bottom: 0.65rem;
    font-weight: 500;
}

.buy-total-breakdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.buy-plus {
    color: #25F4EE;
    font-weight: 700;
}

.buy-total-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

/* Roulette */
.roulette-container {
    padding: 0;
}

.roulette-balance {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.25rem;
}

.roulette-balance-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.roulette-balance-amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: #25F4EE;
    letter-spacing: -0.5px;
}

.roulette-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #F8F8F8;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #161823;
    font-weight: 600;
}

.roulette-info svg {
    width: 18px;
    height: 18px;
    color: #FE2C55;
}

.roulette-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    overflow: hidden;
    padding: 1.5rem 0;
}

.roulette-pointer {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background: #FE2C55;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(254, 44, 85, 0.4);
}

.roulette-pointer svg {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
}

.roulette-track {
    display: flex;
    gap: 0.75rem;
    padding: 0 50%;
    transform: translateX(0);
}

.roulette-item {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #161823;
    position: relative;
    transition: all 0.2s;
}

.roulette-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #25F4EE, #FE2C55);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: -1;
}

.roulette-item:nth-child(3n+1) {
    border-color: #25F4EE;
}

.roulette-item:nth-child(3n+2) {
    border-color: #FE2C55;
}

.roulette-item:nth-child(3n) {
    border-color: #FFB800;
}

.roulette-btn {
    width: 100%;
    padding: 1.1rem;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.roulette-btn.disabled {
    background: #DBDBDB;
    cursor: not-allowed;
}

.roulette-btn.disabled:hover {
    background: #DBDBDB;
    transform: none;
}

.roulette-rules {
    background: #F8F8F8;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 1.25rem;
}

.roulette-rules h3 {
    font-size: 1rem;
    margin-bottom: 0.85rem;
    color: #161823;
    font-weight: 700;
}

.roulette-rules ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.roulette-rules li {
    padding: 0.5rem 0;
    color: #8A8A8E;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.roulette-rules li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #FE2C55;
    font-weight: 700;
}

.prize-celebration {
    text-align: center;
    padding: 2rem 1rem;
}

.prize-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: pulse 1s ease-in-out infinite;
}

.prize-icon svg {
    width: 40px;
    height: 40px;
    color: #FFFFFF;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.prize-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00C853;
    margin-bottom: 0.5rem;
}

.prize-celebration p {
    color: #8A8A8E;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-top: 1px solid #E8E8E8;
    display: flex;
    justify-content: space-around;
    padding: 0.5rem 0 0.65rem;
    z-index: 100;
    backdrop-filter: none;
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.05);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    text-decoration: none;
    color: #A8A8AB;
    transition: all 0.2s;
    flex: 1;
}

.nav-item svg {
    width: 23px;
    height: 23px;
}

.nav-item span {
    font-size: 0.65rem;
    font-weight: 500;
}

.nav-item.active {
    color: #000000;
}

.nav-item.active svg {
    filter: none;
}