/* ================================================================ */
/* ===== YENİ, RƏNGA-RƏNG LOTEREYA DİZAYNI ===== */
/* ================================================================ */

/* --- Google Fonts (Müasir Şrift) --- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* --- Ümumi Dizayn və Gradient Fon --- */
body {
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    background: linear-gradient(45deg, #1d093b, #5a1a70, #a82c6c);
    background-attachment: fixed;
}

.container {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Header və Footer --- */
.navbar {
    background-color: rgba(0, 0, 0, 0.2) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer {
    background-color: rgba(0, 0, 0, 0.2) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0 !important;
    font-size: 0.85em !important;
}

/* --- Əsas Lotereya Kartı (Şüşə Effekti) --- */
.lottery-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    color: #ffffff;
    transition: all 0.3s ease;
}

.lottery-card:hover {
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4);
    transform: translateY(-10px);
}

.card-img-top {
    border-radius: 20px 20px 0 0;
    padding: 10px; /* Şəklin ətrafında çərçivə effekti */
    background-color: rgba(0,0,0,0.1);
}

.card-title {
    font-weight: 700;
    font-size: 2.5rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.card-text {
    font-size: 1.1rem;
    font-weight: 300;
}

/* --- Qiymət Etiketi --- */
.price-tag {
    margin: 20px 0;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    display: inline-block;
}
.price-tag .price-label {
    font-weight: 300;
    font-size: 1.2rem;
}
.price-tag .price-value {
    font-weight: 700;
    font-size: 2rem;
    color: #ffde59; /* Qızılı rəng */
}

/* --- Canlı Düymə --- */
.btn-buy {
    background: linear-gradient(45deg, #ff47a1, #ff9472);
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    padding: 15px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 100, 150, 0.4);
}

.btn-buy:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 100, 150, 0.6);
    color: white;
}

/* --- Giriş Səhifəsi üçün --- */
.login-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* Mobil cihazlar üçün kiçik düzəlişlər */
@media (max-width: 768px) {
    .card-title {
        font-size: 1.8rem;
    }
    .price-tag .price-value {
        font-size: 1.5rem;
    }
    .footer {
        text-align: center;
    }
}
