/* ለጠቅላላው ገጽ የሚሆን መሰረታዊ ስታይል */
body {
    background-color: #121620;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 15px;
}

/* ዋናው ኮንቴይነር */
.container {
    max-width: 450px;
    margin: 0 auto;
}

/* Header ክፍል እና አርማ (Logo) */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 25px;
    height: 35px;
    background: linear-gradient(135deg, #f3cd64, #b8860b);
    border-radius: 6px;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.2;
}

/* አዝራሮች (Buttons) */
.btn-login {
    background: linear-gradient(135deg, #f3cd64, #b8860b);
    color: #121620;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.btn-register {
    background-color: #1a202e;
    color: #a0aec0;
    border: 1px solid #334155;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
}

/* የናቪጌሽን ታቦች (Home / Guide) */
.nav-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    border: 1px solid #2d3748;
}

.tab.active {
    background-color: #1a202e;
    color: #f3cd64;
    border: 1px solid #f3cd64;
}

/* ካርዶች (Cards - Withdrawal, Deposit, Top Earners) */
.card {
    background-color: #1a202e;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #232d3f;
}

.card-title {
    font-size: 0.95rem;
    color: #a0aec0;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

/* የዋጋ ዝርዝር መጋጠሚያ (Row) */
.rate-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #232d3f;
}

.rate-row:last-child {
    border-bottom: none;
}

.rate-label {
    color: #a0aec0;
}

.rate-value {
    font-weight: bold;
    color: #f3cd64;
}

/* አድራሻ ማመንጫ ትልቅ አዝራር (Generate Button) */
.btn-generate {
    width: 100%;
    background: linear-gradient(180deg, #f3cd64 0%, #b8860b 100%);
    color: #121620;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.2);
}

/* የደረጃ ሰንጠረዥ (Leaderboard/Top Withdrawals) */
.user-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #232d3f;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rank-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border: 1px solid #f3cd64;
    color: #f3cd64;
}

.username {
    font-size: 0.9rem;
    font-weight: 500;
}

.user-sub {
    font-size: 0.75rem;
    color: #718096;
}

.amount-gold {
    color: #f3cd64;
    font-weight: bold;
    text-align: right;
}

/* Footer ክፍል */
.footer {
    text-align: center;
    font-size: 0.75rem;
    color: #4a5568;
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
}
