@import '_content/Blazored.Modal/Blazored.Modal.bundle.scp.css';
@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';

/* _content/RoofBirdsGame/Components/DashboardTab.razor.rz.scp.css */
.dashboard-container[b-z92qj7qnxf] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
}

.card[b-z92qj7qnxf] {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.card-content[b-z92qj7qnxf] {
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.stats-grid[b-z92qj7qnxf] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .stats-grid[b-z92qj7qnxf] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-container[b-z92qj7qnxf] {
        overflow-y: auto;
        height: auto;
        min-height: calc(100vh - 120px);
        padding-bottom: 40px;
        gap: 15px;
    }
    
    .stats-grid[b-z92qj7qnxf] {
        grid-template-columns: 1fr;
        margin-bottom: 20px;
    }
    
    .card-content[b-z92qj7qnxf] {
        padding: 15px;
    }
}

.stat-card[b-z92qj7qnxf] {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100px;
}

.stat-card:hover[b-z92qj7qnxf] {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.stat-icon[b-z92qj7qnxf] {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

.stat-icon img[b-z92qj7qnxf] {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.stat-info[b-z92qj7qnxf] {
    flex: 1;
    overflow: hidden;
}

.stat-info h3[b-z92qj7qnxf] {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: #ccc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stat-value[b-z92qj7qnxf] {
    font-size: 1.8rem;
    font-weight: bold;
    color: gold;
    margin: 0;
}

.actions-section[b-z92qj7qnxf] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .actions-section[b-z92qj7qnxf] {
        grid-template-columns: 1fr;
    }
}

.action-card[b-z92qj7qnxf] {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.action-card:hover[b-z92qj7qnxf] {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.action-card h3[b-z92qj7qnxf] {
    margin: 0 0 10px 0;
    color: gold;
    font-size: 1.2rem;
}

.action-card p[b-z92qj7qnxf] {
    color: #ccc;
    margin-bottom: 15px;
}

.action-buttons[b-z92qj7qnxf] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.action-btn[b-z92qj7qnxf] {
    background-color: gold;
    color: #121212;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 100px;
    text-align: center;
}

.action-btn:hover:not(:disabled)[b-z92qj7qnxf] {
    background-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.action-btn:disabled[b-z92qj7qnxf] {
    background-color: #555;
    cursor: not-allowed;
}

.action-form[b-z92qj7qnxf] {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    margin-top: auto;
}

.action-form .form-control[b-z92qj7qnxf] {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px;
    border-radius: 5px;
}

.conversion-preview[b-z92qj7qnxf] {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 10px;
}

.gold-value[b-z92qj7qnxf] {
    color: gold;
    font-weight: bold;
}

.egg-value[b-z92qj7qnxf] {
    color: #f5f5dc;
    font-weight: bold;
}

/* Progress Bar Styles */
.progress-container[b-z92qj7qnxf] {
    margin-bottom: 15px;
}

.progress[b-z92qj7qnxf] {
    height: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-bar[b-z92qj7qnxf] {
    height: 100%;
    background-color: #4CAF50;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.progress-text[b-z92qj7qnxf] {
    text-align: center;
    font-size: 14px;
    color: #ccc;
}

.ready-text[b-z92qj7qnxf] {
    color: #4CAF50;
    font-weight: bold;
}

.error-message[b-z92qj7qnxf] {
    background-color: #dc3545;
    color: white;
    padding: 12px 16px;
    margin: 10px 0;
    border-radius: 8px;
    border-left: 4px solid #b71c1c;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

.collect-btn[b-z92qj7qnxf] {
    background-color: #4CAF50;
    font-weight: bold;
    width: 100%;
    margin-bottom: 0;
    padding: 12px;
}

.collect-btn:hover:not(:disabled)[b-z92qj7qnxf] {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.collect-btn.disabled[b-z92qj7qnxf] {
    background-color: #555;
    cursor: not-allowed;
}

/* Referral Card Styles */
.referral-card[b-z92qj7qnxf] {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.referral-card h3[b-z92qj7qnxf] {
    margin: 0 0 8px 0;
    color: gold;
    font-size: 1.2rem;
}

.referral-card p[b-z92qj7qnxf] {
    color: #ccc;
    margin-bottom: 15px;
}

.referral-card-content[b-z92qj7qnxf] {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.referral-link-container[b-z92qj7qnxf] {
    flex: 1;
    min-width: 250px;
    display: flex;
    gap: 10px;
}

.referral-info[b-z92qj7qnxf] {
    flex: 1;
    min-width: 250px;
}

.referral-link[b-z92qj7qnxf] {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.copy-btn[b-z92qj7qnxf] {
    background-color: #4CAF50;
    min-width: 80px;
}

.copy-btn:hover[b-z92qj7qnxf] {
    background-color: #45a049;
}

.referral-info p[b-z92qj7qnxf] {
    margin: 5px 0;
    font-size: 0.9rem;
}

.info-label[b-z92qj7qnxf] {
    color: #ccc;
}

.info-value[b-z92qj7qnxf] {
    color: white;
    font-weight: bold;
    margin-left: 5px;
}

.info-earnings[b-z92qj7qnxf] {
    color: #f5f5dc;
    font-size: 0.8rem;
    margin-left: 5px;
}

.summary-btn[b-z92qj7qnxf] {
    width: 100%;
    background-color: #007bff;
    display: block;
    padding: 12px;
    font-weight: bold;
}

.summary-btn:hover[b-z92qj7qnxf] {
    background-color: #0069d9;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

@media (max-width: 576px) {
    .dashboard-container[b-z92qj7qnxf] {
        padding-bottom: 60px;
    }
    
    .referral-link-container[b-z92qj7qnxf],
    .referral-info[b-z92qj7qnxf] {
        min-width: 100%;
    }
    
    .summary-btn[b-z92qj7qnxf] {
        padding: 15px;
        font-size: 1.1rem;
    }
}

/* Referral Summary Modal Styles */
.modal-overlay[b-z92qj7qnxf] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-container[b-z92qj7qnxf] {
    background-color: #1e1e1e;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

@media (max-width: 576px) {
    .modal-container[b-z92qj7qnxf] {
        width: 95%;
        max-height: 80vh;
    }
    
    .referral-summary-table[b-z92qj7qnxf] {
        font-size: 0.9rem;
    }
    
    .referral-summary-table th[b-z92qj7qnxf],
    .referral-summary-table td[b-z92qj7qnxf] {
        padding: 8px 5px;
    }
}

.modal-close[b-z92qj7qnxf] {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #ccc;
    font-size: 24px;
    cursor: pointer;
}

.modal-close:hover[b-z92qj7qnxf] {
    color: white;
}

.modal-header[b-z92qj7qnxf] {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2[b-z92qj7qnxf] {
    margin: 0;
    color: gold;
    font-size: 1.5rem;
}

.modal-content[b-z92qj7qnxf] {
    padding: 20px;
}

.modal-actions[b-z92qj7qnxf] {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.close-btn[b-z92qj7qnxf] {
    background-color: #6c757d;
    min-width: 120px;
}

.close-btn:hover[b-z92qj7qnxf] {
    background-color: #5a6268;
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.4);
}

.referral-summary-info[b-z92qj7qnxf] {
    margin-bottom: 20px;
}

.referral-summary-info p[b-z92qj7qnxf] {
    margin: 5px 0;
    color: #ccc;
}

.referral-summary-table[b-z92qj7qnxf] {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    color: #ccc;
}

.referral-summary-table th[b-z92qj7qnxf],
.referral-summary-table td[b-z92qj7qnxf] {
    padding: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.referral-summary-table th[b-z92qj7qnxf] {
    background-color: rgba(0, 0, 0, 0.3);
    color: gold;
    font-weight: bold;
}

.referral-summary-table tr:nth-child(odd)[b-z92qj7qnxf] {
    background-color: rgba(255, 255, 255, 0.05);
}

.referral-summary-table tr:hover[b-z92qj7qnxf] {
    background-color: rgba(255, 215, 0, 0.1);
} 
/* _content/RoofBirdsGame/Components/MarketTab.razor.rz.scp.css */
.store-container[b-n1qunelofp] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.store-item[b-n1qunelofp] {
    background-color: rgba(30, 30, 30, 0.8);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-item:hover[b-n1qunelofp] {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.store-item-image[b-n1qunelofp] {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.store-item-info[b-n1qunelofp] {
    padding: 15px;
}

.store-item-name[b-n1qunelofp] {
    font-size: 1.2rem;
    color: #fff;
    margin: 0 0 5px 0;
}

.store-item-description[b-n1qunelofp] {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.store-item-stats[b-n1qunelofp] {
    margin-bottom: 15px;
}

.store-item-stat[b-n1qunelofp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.stat-label[b-n1qunelofp] {
    color: #ccc;
}

.stat-value[b-n1qunelofp] {
    font-weight: bold;
    color: #4caf50;
}

.store-item-price[b-n1qunelofp] {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.price-value[b-n1qunelofp] {
    font-weight: bold;
    color: gold;
    font-size: 1.2rem;
}

.buy-btn[b-n1qunelofp] {
    width: 100%;
    padding: 10px;
    background-color: gold;
    color: #121212;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.buy-btn:hover:not(:disabled)[b-n1qunelofp] {
    background-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.buy-btn:disabled[b-n1qunelofp] {
    background-color: #555;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.section-title[b-n1qunelofp] {
    color: #fff;
    margin: 30px 0 20px 0;
    font-size: 1.5rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.my-feeds-section[b-n1qunelofp] {
    margin-bottom: 40px;
    background-color: rgba(20, 20, 20, 0.5);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.my-feeds-section .section-title[b-n1qunelofp] {
    margin-top: 0;
    color: gold;
}

.feeds-grid[b-n1qunelofp] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.feed-inventory-item[b-n1qunelofp] {
    background-color: rgba(30, 30, 30, 0.8);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.feed-inventory-item:hover[b-n1qunelofp] {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.feed-count-badge[b-n1qunelofp] {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: gold;
    color: #121212;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.feed-image[b-n1qunelofp] {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.feed-info[b-n1qunelofp] {
    width: 100%;
    text-align: center;
}

.feed-name[b-n1qunelofp] {
    font-size: 1.1rem;
    color: #fff;
    margin: 0 0 10px 0;
}

.feed-stats[b-n1qunelofp] {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.5;
}

/* Notification Styles */
.notification[b-n1qunelofp] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
    z-index: 1000;
    animation: slideInRight-b-n1qunelofp 0.3s ease-in-out;
}

.notification.success[b-n1qunelofp] {
    background-color: #28a745;
    border-left: 4px solid #1b5e20;
    color: white;
}

.notification.error[b-n1qunelofp] {
    background-color: #dc3545;
    border-left: 4px solid #b71c1c;
    color: white;
}

.notification.info[b-n1qunelofp] {
    background-color: #17a2b8;
    border-left: 4px solid #01579b;
    color: white;
}

.notification.warning[b-n1qunelofp] {
    background-color: #ffc107;
    border-left: 4px solid #e65100;
    color: #212529;
}

.notification-close[b-n1qunelofp] {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 10px;
    opacity: 0.7;
}

.notification-close:hover[b-n1qunelofp] {
    opacity: 1;
}

@keyframes slideInRight-b-n1qunelofp {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
} 
/* _content/RoofBirdsGame/Components/MyBirdsTab.razor.rz.scp.css */
.empty-state[b-hn42uo1ral] {
    text-align: center;
    padding: 40px;
    color: #a3aed0;
}

.empty-icon[b-hn42uo1ral] {
    width: 100px;
    height: 100px;
    opacity: 0.5;
    margin-bottom: 20px;
}

.empty-state h3[b-hn42uo1ral] {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.empty-state p[b-hn42uo1ral] {
    color: #888;
}

.birds-container[b-hn42uo1ral] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 10px;
}

.bird-card[b-hn42uo1ral] {
    background-color: #2a3950;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bird-card:hover[b-hn42uo1ral] {
    transform: translateY(-5px);
}

.bird-card.dead[b-hn42uo1ral] {
    opacity: 0.6;
    filter: grayscale(100%);
}

.bird-image[b-hn42uo1ral] {
    width: 100%;
    height: 150px;
    object-fit: contain;
    background-color: #1e293b;
    padding: 10px;
}

.bird-info[b-hn42uo1ral] {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bird-name[b-hn42uo1ral] {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: #ffffff;
}

.bird-type[b-hn42uo1ral] {
    color: #a3aed0;
    margin: 0 0 10px 0;
    font-size: 0.9rem;
}

.bird-stats[b-hn42uo1ral] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.bird-stat[b-hn42uo1ral] {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
}

.stat-label[b-hn42uo1ral] {
    color: #a3aed0;
}

.stat-value[b-hn42uo1ral] {
    color: #ffffff;
    font-weight: bold;
}

.bird-hunger[b-hn42uo1ral] {
    margin-top: auto;
    margin-bottom: 15px;
}

.hunger-label[b-hn42uo1ral] {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #a3aed0;
    margin-bottom: 5px;
}

.hunger-bar[b-hn42uo1ral] {
    height: 10px;
    background-color: #1e293b;
    border-radius: 5px;
    overflow: hidden;
}

.hunger-fill[b-hn42uo1ral] {
    height: 100%;
    background-color: #4CAF50;
    border-radius: 5px;
    transition: width 0.3s ease;
}

.feed-btn[b-hn42uo1ral] {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.feed-btn:hover:not(:disabled)[b-hn42uo1ral] {
    background-color: #45a049;
}

.feed-btn:disabled[b-hn42uo1ral] {
    background-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.feed-icon[b-hn42uo1ral] {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.feed-selection[b-hn42uo1ral] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.feed-option[b-hn42uo1ral] {
    background-color: rgba(42, 57, 80, 0.5);
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feed-option:hover[b-hn42uo1ral] {
    background-color: rgba(52, 69, 99, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feed-option.selected[b-hn42uo1ral] {
    border-color: #4CAF50;
    background-color: rgba(52, 69, 99, 0.8);
}

.feed-image[b-hn42uo1ral] {
    width: 100%;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.feed-option:hover .feed-image[b-hn42uo1ral] {
    transform: scale(1.05);
}

.feed-details h3[b-hn42uo1ral] {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    color: white;
}

.feed-details p[b-hn42uo1ral] {
    margin: 5px 0;
    color: #a3aed0;
    font-size: 0.9rem;
}

.modal-actions[b-hn42uo1ral] {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 25px;
}

.modal-actions button[b-hn42uo1ral] {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary[b-hn42uo1ral] {
    background-color: #4CAF50;
    color: white;
}

.btn-primary:hover:not(:disabled)[b-hn42uo1ral] {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.btn-secondary[b-hn42uo1ral] {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-secondary:hover[b-hn42uo1ral] {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-primary:disabled[b-hn42uo1ral] {
    background-color: rgba(76, 175, 80, 0.5);
    cursor: not-allowed;
}

/* Notification Styles */
.notification[b-hn42uo1ral] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
    z-index: 1000;
    animation: slideInRight-b-hn42uo1ral 0.3s ease-in-out;
}

.notification.success[b-hn42uo1ral] {
    background-color: #28a745;
    border-left: 4px solid #1b5e20;
    color: white;
}

.notification.error[b-hn42uo1ral] {
    background-color: #dc3545;
    border-left: 4px solid #b71c1c;
    color: white;
}

.notification.info[b-hn42uo1ral] {
    background-color: #17a2b8;
    border-left: 4px solid #01579b;
    color: white;
}

.notification.warning[b-hn42uo1ral] {
    background-color: #ffc107;
    border-left: 4px solid #e65100;
    color: #212529;
}

.notification-close[b-hn42uo1ral] {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 10px;
    opacity: 0.7;
}

.notification-close:hover[b-hn42uo1ral] {
    opacity: 1;
}

@keyframes slideInRight-b-hn42uo1ral {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Modal Styles - Modern ve Responsive */
.modal-overlay[b-hn42uo1ral] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
    backdrop-filter: blur(5px);
    animation: fadeIn-b-hn42uo1ral 0.3s ease;
}

.modal-container[b-hn42uo1ral] {
    background: linear-gradient(135deg, #2a3950 0%, #1e293b 100%);
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: slideUp-b-hn42uo1ral 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-close[b-hn42uo1ral] {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close:hover[b-hn42uo1ral] {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-header[b-hn42uo1ral] {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.modal-header h2[b-hn42uo1ral] {
    margin: 0;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-content[b-hn42uo1ral] {
    padding: 25px;
}

.modal-content p[b-hn42uo1ral] {
    color: #a3aed0;
    margin-top: 0;
    margin-bottom: 20px;
}

/* Animasyonlar */
@keyframes fadeIn-b-hn42uo1ral {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-hn42uo1ral {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Ayarlamalar */
@media (max-width: 768px) {
    .modal-container[b-hn42uo1ral] {
        max-width: 95%;
    }
    
    .feed-selection[b-hn42uo1ral] {
        grid-template-columns: 1fr;
    }
    
    .modal-actions[b-hn42uo1ral] {
        flex-direction: column;
    }
    
    .modal-actions button[b-hn42uo1ral] {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .modal-header h2[b-hn42uo1ral] {
        font-size: 1.3rem;
    }
    
    .modal-content[b-hn42uo1ral] {
        padding: 15px;
    }
    
    .feed-option[b-hn42uo1ral] {
        padding: 10px;
    }
}

/* Add new styles for the birds header */
.birds-header[b-hn42uo1ral] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 10px;
}

.section-title[b-hn42uo1ral] {
    margin: 0;
    font-size: 1.5rem;
    color: #ffffff;
}

.expand-collection-btn[b-hn42uo1ral] {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expand-collection-btn:hover[b-hn42uo1ral] {
    background-color: #45a049;
    transform: translateY(-2px);
}

/* Coupon input styles */
.coupon-input-container[b-hn42uo1ral] {
    margin: 20px 0;
}

.coupon-input[b-hn42uo1ral] {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.coupon-input:focus[b-hn42uo1ral] {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.3);
}

.coupon-input[b-hn42uo1ral]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive styles */
@media (max-width: 768px) {
    .birds-header[b-hn42uo1ral] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .expand-collection-btn[b-hn42uo1ral] {
        align-self: flex-end;
    }
} 
/* _content/RoofBirdsGame/Components/StoreTab.razor.rz.scp.css */
.store-container[b-w6g36fxyhp] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.store-item[b-w6g36fxyhp] {
    background-color: rgba(30, 30, 30, 0.8);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-item:hover[b-w6g36fxyhp] {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.store-item-image[b-w6g36fxyhp] {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.store-item-info[b-w6g36fxyhp] {
    padding: 15px;
}

.store-item-name[b-w6g36fxyhp] {
    font-size: 1.2rem;
    color: #fff;
    margin: 0 0 5px 0;
}

.store-item-description[b-w6g36fxyhp] {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 15px;
    height: 40px;
    overflow: hidden;
}

.store-item-price[b-w6g36fxyhp] {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.price-value[b-w6g36fxyhp] {
    font-weight: bold;
    color: gold;
    font-size: 1.2rem;
}

.buy-btn[b-w6g36fxyhp] {
    width: 100%;
    padding: 10px;
    background-color: gold;
    color: #121212;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.buy-btn:hover:not(:disabled)[b-w6g36fxyhp] {
    background-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.buy-btn:disabled[b-w6g36fxyhp] {
    background-color: #555;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Modal Styles */
.modal-overlay[b-w6g36fxyhp] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-container[b-w6g36fxyhp] {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 30px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: slideIn 0.3s ease-in-out;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.modal-header[b-w6g36fxyhp] {
    margin-bottom: 20px;
    text-align: center;
}

.modal-header h2[b-w6g36fxyhp] {
    color: gold;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.modal-close[b-w6g36fxyhp] {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover[b-w6g36fxyhp] {
    color: gold;
}

.modal-content[b-w6g36fxyhp] {
    margin-bottom: 20px;
    background:initial !important;
}

.modal-actions[b-w6g36fxyhp] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.btn[b-w6g36fxyhp] {
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary[b-w6g36fxyhp] {
    background-color: gold;
    color: #121212;
}

.btn-secondary[b-w6g36fxyhp] {
    background-color: #444;
    color: #fff;
}

.btn:hover:not(:disabled)[b-w6g36fxyhp] {
    transform: translateY(-2px);
}

.btn:disabled[b-w6g36fxyhp] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Notification Styles */
.notification[b-w6g36fxyhp] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
    z-index: 1000;
    animation: slideInRight-b-w6g36fxyhp 0.3s ease-in-out;
}

.notification.success[b-w6g36fxyhp] {
    background-color: #28a745;
    border-left: 4px solid #1b5e20;
    color: white;
}

.notification.error[b-w6g36fxyhp] {
    background-color: #dc3545;
    border-left: 4px solid #b71c1c;
    color: white;
}

.notification.info[b-w6g36fxyhp] {
    background-color: #17a2b8;
    border-left: 4px solid #01579b;
    color: white;
}

.notification.warning[b-w6g36fxyhp] {
    background-color: #ffc107;
    border-left: 4px solid #e65100;
    color: #212529;
}

.notification-close[b-w6g36fxyhp] {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 10px;
    opacity: 0.7;
}

.notification-close:hover[b-w6g36fxyhp] {
    opacity: 1;
}

@keyframes slideInRight-b-w6g36fxyhp {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
} 
/* _content/RoofBirdsGame/Components/TransactionsTab.razor.rz.scp.css */
.empty-state[b-r7ubcz92de] {
    text-align: center;
    padding: 50px 0;
}

.empty-icon[b-r7ubcz92de] {
    width: 100px;
    height: 100px;
    opacity: 0.5;
    margin-bottom: 20px;
}

.empty-state h3[b-r7ubcz92de] {
    color: #ccc;
    margin-bottom: 10px;
}

.empty-state p[b-r7ubcz92de] {
    color: #888;
}

.loading[b-r7ubcz92de] {
    text-align: center;
    padding: 20px;
    color: #ccc;
}

.transactions-container[b-r7ubcz92de] {
    overflow-x: auto;
}

.transactions-table[b-r7ubcz92de] {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
}

.transactions-table th[b-r7ubcz92de],
.transactions-table td[b-r7ubcz92de] {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.transactions-table th[b-r7ubcz92de] {
    background-color: rgba(0, 0, 0, 0.3);
    color: #ccc;
    font-weight: 500;
}

.transactions-table tr:hover[b-r7ubcz92de] {
    background-color: rgba(255, 255, 255, 0.05);
}

.transactions-table tr.egg-production[b-r7ubcz92de] {
    background-color: rgba(76, 175, 80, 0.1);
}

.transactions-table tr.bird-purchase[b-r7ubcz92de] {
    background-color: rgba(255, 152, 0, 0.1);
}

.transactions-table tr.feed-purchase[b-r7ubcz92de] {
    background-color: rgba(33, 150, 243, 0.1);
}

.transactions-table tr.egg-conversion[b-r7ubcz92de] {
    background-color: rgba(156, 39, 176, 0.1);
}

.transactions-table tr.gold-purchase[b-r7ubcz92de] {
    background-color: rgba(255, 215, 0, 0.1);
}

.amount[b-r7ubcz92de] {
    font-weight: bold;
    text-align: right;
}

.amount.positive[b-r7ubcz92de] {
    color: #4caf50;
}

.amount.positive img[b-r7ubcz92de] {
    width: 16px;
    height: 16px;
}

.amount.negative[b-r7ubcz92de] {
    color: #f44336;
}

.currency-icon[b-r7ubcz92de] {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-left: 5px;
} 
/* _content/RoofBirdsGame/Components/WalletsTab.razor.rz.scp.css */
/* Presale bilgileri için stiller */
.presale-info-panel[b-8tlwxv8iju] {
    background-color: #1a1e2c;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2c3347;
}

.presale-title[b-8tlwxv8iju] {
    color: #f8c12c;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.presale-progress-container[b-8tlwxv8iju] {
    margin-bottom: 20px;
}

.presale-progress[b-8tlwxv8iju] {
    margin-bottom: 10px;
}

.progress-container[b-8tlwxv8iju] {
    height: 20px;
    background-color: #2c3347;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar[b-8tlwxv8iju] {
    height: 100%;
    background: linear-gradient(90deg, #f8c12c, #ff9b05);
    border-radius: 10px;
    transition: width 0.5s ease-in-out;
}

.progress-info[b-8tlwxv8iju] {
    display: flex;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.price-info-container[b-8tlwxv8iju] {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
}

.price-card[b-8tlwxv8iju] {
    background-color: #2c3347;
    border-radius: 8px;
    padding: 12px;
    flex: 1;
    text-align: center;
    border: 1px solid #3c445c;
    transition: transform 0.2s;
}

.price-card:hover[b-8tlwxv8iju] {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.price-header[b-8tlwxv8iju] {
    color: #f8c12c;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.price-value[b-8tlwxv8iju] {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .price-info-container[b-8tlwxv8iju] {
        flex-direction: column;
        gap: 10px;
    }
    
    .price-card[b-8tlwxv8iju] {
        padding: 10px;
    }
}

/* Mevcut stiller ile birleştir */
.wallet-tab[b-8tlwxv8iju] {
    padding: 20px;
}

.wallet-content[b-8tlwxv8iju] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wallet-section[b-8tlwxv8iju] {
    display: flex;
    gap: 20px;
}

@media (max-width: 992px) {
    .wallet-section[b-8tlwxv8iju] {
        flex-direction: column;
    }
}

.wallet-column[b-8tlwxv8iju] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wallet-panel[b-8tlwxv8iju] {
    background-color: #1a1e2c;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.wallet-panel-header[b-8tlwxv8iju] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.wallet-panel-header h2[b-8tlwxv8iju] {
    margin: 0;
    font-size: 1.5rem;
    color: #ffffff;
}

.add-wallet-btn[b-8tlwxv8iju] {
    padding: 0.5rem 1rem;
    background-color: var(--success-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.add-wallet-btn:hover[b-8tlwxv8iju] {
    filter: brightness(1.1);
}

.add-wallet-form[b-8tlwxv8iju] {
    background-color: var(--card-bg-secondary);
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.form-group[b-8tlwxv8iju] {
    margin-bottom: 1rem;
}

    .form-group label[b-8tlwxv8iju] {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
        color: var( --light-text);
    }

.form-control[b-8tlwxv8iju] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--input-bg);
    color: var( --light-text);
}

.form-check[b-8tlwxv8iju] {
    display: flex;
    align-items: center;
}

.form-check-input[b-8tlwxv8iju] {
    margin-right: 0.5rem;
}

.form-actions[b-8tlwxv8iju] {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1rem;
}

.cancel-btn[b-8tlwxv8iju] {
    padding: 0.5rem 1rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cancel-btn:hover[b-8tlwxv8iju] {
    filter: brightness(1.1);
}

.save-btn[b-8tlwxv8iju] {
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.save-btn:hover[b-8tlwxv8iju] {
    filter: brightness(1.1);
}

.save-btn:disabled[b-8tlwxv8iju] {
    background-color: var(--disabled-color);
    cursor: not-allowed;
    filter: none;
}

.wallet-list[b-8tlwxv8iju] {
    overflow-y: auto;
    flex: 1;
}

.wallet-item[b-8tlwxv8iju] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    background-color: var(--card-bg-secondary);
    cursor: pointer;
    transition: background-color 0.2s;
}

.wallet-item:hover[b-8tlwxv8iju] {
    background-color: var(--hover-color);
}

.wallet-item.selected[b-8tlwxv8iju] {
    background-color: var(--selected-color);
    border-left: 4px solid var(--accent-color);
}

.wallet-item-info[b-8tlwxv8iju] {
    display: flex;
    flex-direction: column;
}

.wallet-item-name[b-8tlwxv8iju] {
    font-weight: 500;
    color: var( --light-text);
}

.wallet-item-address[b-8tlwxv8iju] {
    font-size: 0.8rem;
    color: var( --light-text-secondary);
    margin-top: 0.25rem;
}

.wallet-item-status[b-8tlwxv8iju] {
    display: flex;
    align-items: center;
}

.withdrawable-badge[b-8tlwxv8iju] {
    background-color: var(--success-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

.withdraw-section[b-8tlwxv8iju] {
    margin-bottom: 1.5rem;
}

.withdraw-form[b-8tlwxv8iju] {
    background-color: var(--card-bg-secondary);
    border-radius: 4px;
    padding: 1rem;
}

.selected-wallet-info[b-8tlwxv8iju] {
    background-color: var(--card-bg-tertiary);
    padding: 0.5rem;
    border-radius: 4px;
    margin-top: 0.25rem;
}

.selected-wallet-name[b-8tlwxv8iju] {
    font-weight: 500;
    color: var( --light-text);
}

.selected-wallet-address[b-8tlwxv8iju] {
    font-size: 0.8rem;
    color: var( --light-text-secondary);
    margin-top: 0.25rem;
}

.withdraw-amount-field[b-8tlwxv8iju] {
    display: flex;
    gap: 0.5rem;
}

.max-btn[b-8tlwxv8iju] {
    padding: 0.5rem 1rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.max-btn:hover[b-8tlwxv8iju] {
    filter: brightness(1.1);
}

.max-btn:disabled[b-8tlwxv8iju] {
    background-color: var(--disabled-color);
    cursor: not-allowed;
    filter: none;
}

.withdraw-btn[b-8tlwxv8iju] {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--danger-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-weight: 500;
}

.withdraw-btn:hover[b-8tlwxv8iju] {
    filter: brightness(1.1);
}

.withdraw-btn:disabled[b-8tlwxv8iju] {
    background-color: var(--disabled-color);
    cursor: not-allowed;
    filter: none;
}

.empty-withdraw[b-8tlwxv8iju] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: var(--card-bg-secondary);
    border-radius: 4px;
    color: var( --light-text-secondary);
}

.withdraw-history[b-8tlwxv8iju] {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.withdraw-history h3[b-8tlwxv8iju] {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    color: var( --light-text);
}

.withdraw-list[b-8tlwxv8iju] {
    overflow-y: auto;
    flex: 1;
}

.withdraw-item[b-8tlwxv8iju] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    background-color: var(--card-bg-secondary);
}

.withdraw-item-info[b-8tlwxv8iju] {
    display: flex;
    flex-direction: column;
}

.withdraw-item-amount[b-8tlwxv8iju] {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var( --light-text);
}

.resource-icon-sm[b-8tlwxv8iju] {
    width: 16px;
    height: 16px;
    margin-right: 0.25rem;
}

.withdraw-item-address[b-8tlwxv8iju] {
    font-size: 0.8rem;
    color: var( --light-text-secondary);
    margin-top: 0.25rem;
}

.withdraw-item-date[b-8tlwxv8iju] {
    font-size: 0.75rem;
    color: var( --light-text-secondary);
    margin-top: 0.25rem;
}

.status-badge[b-8tlwxv8iju] {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-badge.pending[b-8tlwxv8iju] {
    background-color: var(--warning-color);
    color: var(--dark-text);
}

.status-badge.approved[b-8tlwxv8iju] {
    background-color: var(--success-color);
    color: white;
}

.status-badge.rejected[b-8tlwxv8iju] {
    background-color: var(--danger-color);
    color: white;
}

.empty-list[b-8tlwxv8iju] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    color: var( --light-text-secondary);
}

.alert[b-8tlwxv8iju] {
    padding: 0.75rem 1rem;
    border-radius: 4px;
    margin-top: 1rem;
}

.alert-danger[b-8tlwxv8iju] {
    background-color: var(--danger-bg);
    color: var(--danger-color);
    border: 1px solid var(--danger-border);
}

.alert-warning[b-8tlwxv8iju] {
    background-color: var(--warning-bg);
    color: var(--warning-color);
    border: 1px solid var(--warning-border);
}

/* Responsive styles */
@media (max-width: 768px) {
    .wallet-section[b-8tlwxv8iju] {
        flex-direction: column;
    }
    
    .wallet-column[b-8tlwxv8iju] {
        margin-bottom: 1rem;
    }
    
    .wallet-column:last-child[b-8tlwxv8iju] {
        margin-bottom: 0;
    }
    
    .wallet-panel[b-8tlwxv8iju] {
        height: auto;
    }
    
    .wallet-list[b-8tlwxv8iju], .withdraw-list[b-8tlwxv8iju] {
        max-height: 300px;
    }
}

.gold-info-btn[b-8tlwxv8iju] {
    padding: 0.5rem 1rem;
    background-color: var(--info-color, #17a2b8);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.gold-info-btn:hover[b-8tlwxv8iju] {
    filter: brightness(1.1);
}

.modal-overlay[b-8tlwxv8iju] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-container[b-8tlwxv8iju] {
    background-color: var(--card-bg);
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-header[b-8tlwxv8iju] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3[b-8tlwxv8iju] {
    margin: 0;
    color: var( --light-text);
}

.close-modal-btn[b-8tlwxv8iju] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var( --light-text-secondary);
}

.modal-body[b-8tlwxv8iju] {
    padding: 1rem;
}

.receiver-wallet-address[b-8tlwxv8iju] {
    background-color: var(--card-bg-secondary);
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
    word-break: break-all;
}

.copy-address-container[b-8tlwxv8iju] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--card-bg-tertiary, #2a2a2a);
    border-radius: 4px;
    padding: 0.5rem;
    margin: 0.5rem 0;
    font-weight: 500;
}

#receiver-address[b-8tlwxv8iju] {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 0.5rem;
}

.copy-address-btn[b-8tlwxv8iju] {
    display: flex;
    align-items: center;
    background-color: var(--primary-color, #007bff);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    min-width: 80px;
    justify-content: center;
}

.copy-address-btn:hover[b-8tlwxv8iju] {
    filter: brightness(1.1);
}

.copy-address-btn.success[b-8tlwxv8iju] {
    background-color: var(--success-color, #28a745);
}

.copy-icon[b-8tlwxv8iju] {
    margin-right: 0.25rem;
    font-size: 1rem;
}

.modal-footer[b-8tlwxv8iju] {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
}

.btn-primary[b-8tlwxv8iju] {
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover[b-8tlwxv8iju] {
    filter: brightness(1.1);
} 
/* _content/RoofBirdsGame/Pages/Index.razor.rz.scp.css */
h2[b-dsobahac5t],h3[b-dsobahac5t],h4[b-dsobahac5t]{
    color: #1a1a1a !important;
}
.container p[b-dsobahac5t] {
    color: #1a1a1a !important;
}
li[b-dsobahac5t] {
    color: #1a1a1a !important;
}
footer h3[b-dsobahac5t], h4[b-dsobahac5t], .footer-bottom p[b-dsobahac5t]{
    color: var(--light-text) !important;
}
/* _content/RoofBirdsGame/Pages/Setup.razor.rz.scp.css */
.setup-container[b-87bjwfi3zr] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.setup-card[b-87bjwfi3zr] {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.setup-card h1[b-87bjwfi3zr] {
    color: gold;
    margin-bottom: 20px;
    text-align: center;
    font-size: 2rem;
}

.setup-section[b-87bjwfi3zr] {
    margin-bottom: 30px;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.setup-section h2[b-87bjwfi3zr] {
    color: #f5f5f5;
    margin-bottom: 15px;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.stats-grid[b-87bjwfi3zr] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-item[b-87bjwfi3zr] {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-label[b-87bjwfi3zr] {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.stat-value[b-87bjwfi3zr] {
    color: gold;
    font-size: 1.5rem;
    font-weight: bold;
}

.warning[b-87bjwfi3zr] {
    color: #ff6b6b;
    margin-bottom: 15px;
    font-weight: bold;
}

.setup-btn[b-87bjwfi3zr] {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.setup-btn:hover:not(.disabled)[b-87bjwfi3zr] {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.setup-btn.disabled[b-87bjwfi3zr] {
    background-color: #555;
    cursor: not-allowed;
}

.form-group[b-87bjwfi3zr] {
    margin-bottom: 15px;
}

.form-group label[b-87bjwfi3zr] {
    display: block;
    color: #ccc;
    margin-bottom: 5px;
}

.form-control[b-87bjwfi3zr] {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
}

.back-btn[b-87bjwfi3zr] {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
}

.back-btn:hover[b-87bjwfi3zr] {
    background-color: #0069d9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.button-group[b-87bjwfi3zr] {
    display: flex;
    gap: 10px;
}

.button-group .back-btn[b-87bjwfi3zr] {
    flex: 1;
}
table[b-87bjwfi3zr] {
    color: white !important;
    border: white !important;
}

    table th[b-87bjwfi3zr], td[b-87bjwfi3zr] {
        border: white !important;
    }

@media (max-width: 768px) {
    .stats-grid[b-87bjwfi3zr] {
        grid-template-columns: 1fr;
    }
    
    .button-group[b-87bjwfi3zr] {
        flex-direction: column;
    }
} 
/* _content/RoofBirdsGame/Pages/Whitepaper.razor.rz.scp.css */
/* Whitepaper Styles */
.whitepaper-container[b-75amrhq58x] {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section[b-75amrhq58x] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 2rem;
    background: radial-gradient(ellipse at center, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
}

.hero-content[b-75amrhq58x] {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-logo .logo[b-75amrhq58x] {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 20px rgba(52, 152, 219, 0.5));
    animation: float 3s ease-in-out infinite;
}

.hero-title[b-75amrhq58x] {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3498db, #9b59b6, #e74c3c);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle[b-75amrhq58x] {
    font-size: 1.5rem;
    color: #bdc3c7;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-description[b-75amrhq58x] {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ecf0f1;
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-stats[b-75amrhq58x] {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item[b-75amrhq58x] {
    text-align: center;
}

.stat-number[b-75amrhq58x] {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label[b-75amrhq58x] {
    font-size: 0.9rem;
    color: #95a5a6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual[b-75amrhq58x] {
    flex: 1;
    position: relative;
    height: 600px;
}

.floating-elements[b-75amrhq58x] {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-bird[b-75amrhq58x], .floating-coin[b-75amrhq58x], .floating-egg[b-75amrhq58x] {
    position: absolute;
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

    .floating-bird.eagle[b-75amrhq58x] {
        top: 10%;
        right: 20%;
        animation: floatEagle 4s ease-in-out infinite;
    }

    .floating-bird.parrot[b-75amrhq58x] {
        top: 40%;
        right: 50%;
        animation: floatParrot 3.5s ease-in-out infinite 0.5s;
    }

    .floating-bird.pigeon[b-75amrhq58x] {
        bottom: 30%;
        right: 10%;
        animation: floatPigeon 3s ease-in-out infinite 1s;
    }

.floating-coin[b-75amrhq58x] {
    top: 60%;
    right: 30%;
    animation: floatCoin 2.5s ease-in-out infinite 1.5s;
}

.floating-egg[b-75amrhq58x] {
    top: 20%;
    right: 60%;
    animation: floatEgg 3.2s ease-in-out infinite 0.8s;
}

/* Sections */
.section[b-75amrhq58x] {
    padding: 5rem 0;
    position: relative;
}

.container[b-75amrhq58x] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title[b-75amrhq58x] {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #3498db, #9b59b6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description[b-75amrhq58x] {
    font-size: 1.2rem;
    line-height: 1.7;
    text-align: center;
    color: #bdc3c7;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Executive Summary */
.executive-summary[b-75amrhq58x] {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(155, 89, 182, 0.05) 100%);
}

.summary-content .lead[b-75amrhq58x] {
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: center;
    color: #ecf0f1;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.key-points[b-75amrhq58x] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.point[b-75amrhq58x] {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

    .point:hover[b-75amrhq58x] {
        transform: translateY(-5px);
    }

.point-icon[b-75amrhq58x] {
    font-size: 2rem;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3498db, #9b59b6);
    border-radius: 50%;
}

.point-content h4[b-75amrhq58x] {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #3498db;
}

.point-content p[b-75amrhq58x] {
    color: #bdc3c7;
    line-height: 1.6;
}

/* Technology Stack */
.technology-stack[b-75amrhq58x] {
    background: rgba(0, 0, 0, 0.2);
}

.tech-grid[b-75amrhq58x] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.tech-item[b-75amrhq58x] {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(155, 89, 182, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

    .tech-item:hover[b-75amrhq58x] {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(52, 152, 219, 0.2);
    }

.tech-icon[b-75amrhq58x] {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.tech-item h4[b-75amrhq58x] {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #3498db;
}

.tech-item p[b-75amrhq58x] {
    color: #bdc3c7;
    line-height: 1.6;
}

/* Economic Model */
.economic-model[b-75amrhq58x] {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.05) 0%, rgba(52, 152, 219, 0.05) 100%);
}

.economy-flow[b-75amrhq58x] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.flow-item[b-75amrhq58x] {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(46, 204, 113, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(52, 152, 219, 0.3);
    min-width: 200px;
}

.flow-icon[b-75amrhq58x] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.flow-item h4[b-75amrhq58x] {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #3498db;
}

.flow-item p[b-75amrhq58x] {
    font-size: 0.9rem;
    color: #bdc3c7;
    line-height: 1.4;
}

.flow-arrow[b-75amrhq58x] {
    font-size: 2rem;
    color: #3498db;
    font-weight: bold;
}

.assets-grid[b-75amrhq58x] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.asset-card[b-75amrhq58x] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(52, 152, 219, 0.05));
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

    .asset-card:hover[b-75amrhq58x] {
        transform: scale(1.05);
        box-shadow: 0 15px 30px rgba(52, 152, 219, 0.2);
    }

    .asset-card.premium[b-75amrhq58x] {
        border: 2px solid #f39c12;
        background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(230, 126, 34, 0.1));
    }

.asset-image[b-75amrhq58x] {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

.asset-details h4[b-75amrhq58x] {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #3498db;
}

.asset-card.premium h4[b-75amrhq58x] {
    color: #f39c12;
}

.asset-stats[b-75amrhq58x] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .asset-stats .stat[b-75amrhq58x] {
        padding: 0.5rem;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        font-size: 0.9rem;
        color: #bdc3c7;
    }

/* Referral System */
.referral-system[b-75amrhq58x] {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.05) 0%, rgba(231, 76, 60, 0.05) 100%);
}

.referral-tiers[b-75amrhq58x] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.tier-card[b-75amrhq58x] {
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tier-1[b-75amrhq58x] {
    border-color: #2ecc71;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(39, 174, 96, 0.1));
}

.tier-2[b-75amrhq58x] {
    border-color: #3498db;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.1));
}

.tier-3[b-75amrhq58x] {
    border-color: #9b59b6;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(142, 68, 173, 0.1));
}

.tier-card:hover[b-75amrhq58x] {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.tier-header[b-75amrhq58x] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tier-number[b-75amrhq58x] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3498db, #9b59b6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.tier-header h4[b-75amrhq58x] {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ecf0f1;
}

.tier-percentage[b-75amrhq58x] {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.tier-1 .tier-percentage[b-75amrhq58x] {
    color: #2ecc71;
}

.tier-2 .tier-percentage[b-75amrhq58x] {
    color: #3498db;
}

.tier-3 .tier-percentage[b-75amrhq58x] {
    color: #9b59b6;
}

.tier-description p[b-75amrhq58x] {
    font-size: 1.1rem;
    color: #bdc3c7;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tier-description ul[b-75amrhq58x] {
    list-style: none;
    padding: 0;
    text-align: left;
}

.tier-description li[b-75amrhq58x] {
    padding: 0.5rem 0;
    color: #95a5a6;
    position: relative;
    padding-left: 1.5rem;
}

    .tier-description li[b-75amrhq58x]::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #2ecc71;
        font-weight: bold;
    }

/* Game Mechanics */
.game-mechanics[b-75amrhq58x] {
    background: rgba(0, 0, 0, 0.2);
}

.mechanics-grid[b-75amrhq58x] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mechanic-card[b-75amrhq58x] {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(155, 89, 182, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(52, 152, 219, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

    .mechanic-card:hover[b-75amrhq58x] {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(52, 152, 219, 0.2);
    }

.mechanic-icon[b-75amrhq58x] {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.mechanic-card h4[b-75amrhq58x] {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #3498db;
}

.mechanic-card p[b-75amrhq58x] {
    color: #bdc3c7;
    line-height: 1.6;
}

/* CTA Section */
.cta-section[b-75amrhq58x] {
    background: linear-gradient(135deg, #3498db 0%, #9b59b6 50%, #e74c3c 100%);
    text-align: center;
    padding: 6rem 0;
}

.cta-content h2[b-75amrhq58x] {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p[b-75amrhq58x] {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons[b-75amrhq58x] {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn[b-75amrhq58x] {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

.btn-primary[b-75amrhq58x] {
    background: white;
    color: #3498db;
}

    .btn-primary:hover[b-75amrhq58x] {
        background: transparent;
        color: white;
        border-color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

.btn-secondary[b-75amrhq58x] {
    background: transparent;
    color: white;
    border-color: white;
}

    .btn-secondary:hover[b-75amrhq58x] {
        background: white;
        color: #3498db;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

/* Animations */
@@keyframes float {
    0%[b-75amrhq58x], 100%[b-75amrhq58x] {
        transform: translateY(0px);
    }

    50%[b-75amrhq58x] {
        transform: translateY(-10px);
    }
}

@@keyframes floatEagle {
    0%[b-75amrhq58x], 100%[b-75amrhq58x] {
        transform: translate(0, 0) rotate(0deg);
    }

    25%[b-75amrhq58x] {
        transform: translate(10px, -15px) rotate(2deg);
    }

    50%[b-75amrhq58x] {
        transform: translate(-5px, -20px) rotate(-1deg);
    }

    75%[b-75amrhq58x] {
        transform: translate(15px, -10px) rotate(1deg);
    }
}

@@keyframes floatParrot {
    0%[b-75amrhq58x], 100%[b-75amrhq58x] {
        transform: translate(0, 0) rotate(0deg);
    }

    33%[b-75amrhq58x] {
        transform: translate(-10px, -12px) rotate(-2deg);
    }

    66%[b-75amrhq58x] {
        transform: translate(8px, -18px) rotate(1deg);
    }
}

@@keyframes floatPigeon {
    0%[b-75amrhq58x], 100%[b-75amrhq58x] {
        transform: translate(0, 0) rotate(0deg);
    }

    50%[b-75amrhq58x] {
        transform: translate(-8px, -15px) rotate(-1deg);
    }
}

@@keyframes floatCoin {
    0%[b-75amrhq58x], 100%[b-75amrhq58x] {
        transform: translateY(0px) rotateY(0deg);
    }

    50%[b-75amrhq58x] {
        transform: translateY(-12px) rotateY(180deg);
    }
}

@@keyframes floatEgg {
    0%[b-75amrhq58x], 100%[b-75amrhq58x] {
        transform: translate(0, 0) scale(1);
    }

    50%[b-75amrhq58x] {
        transform: translate(-5px, -10px) scale(1.1);
    }
}

/* Responsive Design */
@@media (max-width: 768px) {
    .hero-section[b-75amrhq58x] {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .hero-title[b-75amrhq58x] {
        font-size: 2.5rem;
    }

    .hero-visual[b-75amrhq58x] {
        height: 300px;
        margin-top: 2rem;
    }

    .hero-stats[b-75amrhq58x] {
        justify-content: center;
    }

    .cta-buttons[b-75amrhq58x] {
        flex-direction: column;
        align-items: center;
    }

    .section[b-75amrhq58x] {
        padding: 3rem 0;
    }

    .container[b-75amrhq58x] {
        padding: 0 1rem;
    }

    .flow-arrow[b-75amrhq58x] {
        display: none;
    }
}
/* _content/RoofBirdsGame/Shared/MainLayout.razor.rz.scp.css */
.page[b-fajsu1zu23] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(135deg, #2c3e50 0%, #1e2130 100%);
    color: #e0e0e0;
}

main[b-fajsu1zu23] {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

main[b-fajsu1zu23]::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0) 70%);
    pointer-events: none;
}

.sidebar[b-fajsu1zu23] {
    width: 280px;
    background: linear-gradient(180deg, #2c3e50 0%, #1e2130 100%);
    border-right: 1px solid rgba(52, 152, 219, 0.2);
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.2);
    z-index: 5;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.sidebar[b-fajsu1zu23]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0) 70%);
    pointer-events: none;
}

.top-row[b-fajsu1zu23] {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    border-bottom: 1px solid rgba(52, 152, 219, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    justify-content: space-between;
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 25px;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.top-row[b-fajsu1zu23]::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0) 60%);
    transform: rotate(45deg);
    animation: shimmer-b-fajsu1zu23 3s infinite;
    pointer-events: none;
}

.top-row[b-fajsu1zu23]  a, .top-row .btn-link[b-fajsu1zu23] {
    white-space: nowrap;
    margin-left: 1.5rem;
    color: rgba(224, 224, 224, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.top-row[b-fajsu1zu23]  a::after, .top-row .btn-link[b-fajsu1zu23]::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.top-row[b-fajsu1zu23]  a:hover, .top-row .btn-link:hover[b-fajsu1zu23] {
    color: #fff;
    transform: translateY(-2px);
}

.top-row[b-fajsu1zu23]  a:hover::after, .top-row .btn-link:hover[b-fajsu1zu23]::after {
    width: 100%;
}

.top-row a:first-child[b-fajsu1zu23] {
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-logo h1[b-fajsu1zu23] {
    margin: 0;
    color: #3498db;
    font-size: 2.2rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    position: relative;
    font-weight: 700;
}

.game-logo h1[b-fajsu1zu23]::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #3498db;
    border-radius: 3px;
    animation: pulse-b-fajsu1zu23 2s infinite;
}

.logo-img[b-fajsu1zu23] {
    width: 40px;
    height: auto;
    margin-right: 10px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
    animation: float-b-fajsu1zu23 3s ease-in-out infinite;
}

.game-logo[b-fajsu1zu23] {
    display: flex;
    align-items: center;
}

@keyframes float-b-fajsu1zu23 {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-fajsu1zu23] {
        display: none;
    }

    .top-row.auth[b-fajsu1zu23] {
        justify-content: space-between;
    }

    .top-row a[b-fajsu1zu23], .top-row .btn-link[b-fajsu1zu23] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-fajsu1zu23] {
        flex-direction: row;
    }

    .sidebar[b-fajsu1zu23] {
        width: 280px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-fajsu1zu23] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-fajsu1zu23], article[b-fajsu1zu23] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

@keyframes shimmer-b-fajsu1zu23 {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes pulse-b-fajsu1zu23 {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.balance-display[b-fajsu1zu23] {
    display: flex;
    gap: 15px;
    align-items: center;
}

.balance-item[b-fajsu1zu23] {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.balance-item:hover[b-fajsu1zu23] {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.balance-icon[b-fajsu1zu23] {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.balance-value[b-fajsu1zu23] {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    min-width: 60px;
    text-align: center;
}
/* _content/RoofBirdsGame/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-ege1ksji3z] {
    background-color: rgba(52, 152, 219, 0.2);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 15px;
    padding: 12px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover[b-ege1ksji3z] {
    background-color: rgba(52, 152, 219, 0.3);
    transform: translateY(-2px);
}

.top-row[b-ege1ksji3z] {
    height: 70px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    padding: 0 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.navbar-brand[b-ege1ksji3z] {
    font-size: 1.8rem;
    font-weight: 600;
    color: #3498db;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.logo-img[b-ege1ksji3z] {
    height: 40px;
    margin-right: 10px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
    animation: float-b-ege1ksji3z 3s ease-in-out infinite;
}

.navbar-brand:hover[b-ege1ksji3z] {
    color: #fff;
    transform: scale(1.05);
}

.navbar-brand[b-ege1ksji3z]::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #3498db;
    border-radius: 3px;
    animation: pulse-b-ege1ksji3z 2s infinite;
}

/* Yeni menü stili */
.game-nav[b-ege1ksji3z] {
    padding: 20px;
}

.nav-grid[b-ege1ksji3z] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 10px;
}

.nav-item[b-ege1ksji3z] {
    padding: 0;
    position: relative;
}

.nav-tile[b-ege1ksji3z] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 15px;
    padding: 15px;
    height: 140px;
    width: 100%;
    text-decoration: none;
    color: #e0e0e0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.nav-tile[b-ege1ksji3z]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.nav-tile:hover[b-ege1ksji3z]::before {
    opacity: 1;
}

.nav-icon[b-ege1ksji3z] {
    margin-bottom: 10px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-text[b-ege1ksji3z] {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.oi[b-ege1ksji3z] {
    font-size: 36px;
    color: #3498db;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.menu-img[b-ege1ksji3z] {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
    transition: all 0.4s ease;
}

.nav-tile:hover[b-ege1ksji3z] {
    transform: translateY(-5px);
    border-color: #3498db;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(52, 152, 219, 0.5);
}

.nav-tile:hover .oi[b-ege1ksji3z],
.nav-tile:hover .menu-img[b-ege1ksji3z] {
    transform: scale(1.2);
    color: #fff;
}

.nav-tile:hover .nav-text[b-ege1ksji3z] {
    color: #3498db;
}

.nav-tile.active[b-ege1ksji3z] {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(52, 152, 219, 0.8);
    transform: translateY(-5px);
}

.nav-tile.active .oi[b-ege1ksji3z],
.nav-tile.active .menu-img[b-ege1ksji3z] {
    color: #fff;
    transform: scale(1.2);
}

.nav-tile.active .nav-text[b-ege1ksji3z] {
    color: #fff;
    font-weight: 600;
}

/* Animasyonlar */
@keyframes pulse-b-ege1ksji3z {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

@keyframes float-b-ege1ksji3z {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

@keyframes shimmer-b-ege1ksji3z {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Responsive tasarım */
@media (min-width: 641px) {
    .navbar-toggler[b-ege1ksji3z] {
        display: none;
    }

    .collapse[b-ege1ksji3z] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-ege1ksji3z] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
}

@media (max-width: 640px) {
    .nav-grid[b-ege1ksji3z] {
        grid-template-columns: 1fr;
    }
    
    .nav-tile[b-ege1ksji3z] {
        height: 100px;
    }
    
    .nav-icon[b-ege1ksji3z] {
        height: 50px;
    }
}
