body {
    font-family: 'Poppins', sans-serif;
    background-color: #060a1a;
    background-image: 
        radial-gradient(at 27% 37%, hsla(215, 98%, 35%, 0.4) 0px, transparent 50%), 
        radial-gradient(at 97% 21%, hsla(215, 98%, 30%, 0.4) 0px, transparent 50%), 
        radial-gradient(at 82% 99%, hsla(285, 94%, 45%, 0.3) 0px, transparent 50%),
        radial-gradient(at 15% 80%, hsla(340, 94%, 40%, 0.2) 0px, transparent 40%);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    position: relative;
}

/* Дополнительные фоновые элементы */
body::before {
    content: '';
    position: fixed;
    top: 10%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 132, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    bottom: 20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 106, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite reverse;
    z-index: -2;
}

.container {
    max-width: 1200px;
    width: 100%;
    padding: 3rem 2rem;
    position: relative;
    border-radius: 22px;
    border: 1px solid rgba(60, 90, 200, 0.5);
    background: rgba(10, 15, 35, 0.4);
    box-shadow:
        0 0 30px rgba(0, 100, 200, 0.3),
        inset 0 0 20px rgba(0, 80, 160, 0.2);
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 5rem;
    text-align: left;
    position: relative;
}

.logo {
    width: 240px;
    height: 240px;
    margin-left: 1.5rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, #0b0d22 0%, #1a1d4a 100%);
    border-radius: 50%;
    border: 4px solid #4b5af7;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 45px rgba(21, 92, 255, 0.45),
        0 0 80px rgba(255, 0, 106, 0.2),
        inset 0 0 30px rgba(0, 123, 255, 0.1);
}

.logo::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,123,255,0.5) 0%, rgba(0,0,0,0) 70%);
    filter: blur(15px);
    z-index: -1;
}

.logo img {
    width: 83%;
    height: 83%;
    object-fit: contain;
    border-radius: 50%;
}

.header-content h1 {
    font-size: clamp(2.4rem, 4.2vw + 0.8rem, 3.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #a9aedb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-content p {
    font-size: 1.1rem;
    color: #a9aedb;
    margin-bottom: 2rem;
}

.header-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #0084ff 0%, #2b5bff 100%);
    color: white;
    box-shadow: 0 0 20px rgba(0, 132, 255, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 132, 255, 0.8);
}

.btn-secondary {
    background: linear-gradient(135deg, #c026ff 0%, #743dff 100%);
    color: white;
    box-shadow: 0 0 20px rgba(192, 38, 255, 0.5);
    border: none;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(192, 38, 255, 0.8);
}

.main-content {
    margin-bottom: 4rem;
}

.game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background: linear-gradient(135deg, rgba(20, 30, 60, 0.3) 0%, rgba(10, 15, 40, 0.4) 100%);
    border: 1px solid rgba(60, 90, 200, 0.4);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 25px rgba(0, 100, 200, 0.2),
        inset 0 0 20px rgba(40, 60, 120, 0.1);
    position: relative;
    min-height: 280px;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(130, 167, 255, 0.9);
    box-shadow: 
        0 0 35px rgba(0, 123, 255, 0.25),
        0 0 60px rgba(192, 38, 255, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0084ff 0%, #743dff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 25px rgba(0, 132, 255, 0.4),
        0 0 50px rgba(116, 61, 255, 0.2),
        inset 0 0 15px rgba(255, 255, 255, 0.1);
    position: relative;
    transform: perspective(200px) rotateX(5deg);
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    transform: perspective(200px) rotateX(0deg) scale(1.05);
    box-shadow: 
        0 0 35px rgba(0, 132, 255, 0.6),
        0 0 70px rgba(116, 61, 255, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.15);
}

.card-icon::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(135deg, #1a1d4a 0%, #0b0d22 100%);
    border-radius: 10px;
}

.scratch-icon::after {
    content: '';
    position: relative;
    z-index: 1;
    width: 45px;
    height: 45px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M3 3H21V5H19V19C19 20.1 18.1 21 17 21H7C5.9 21 5 20.1 5 19V5H3V3M7 5V19H17V5H7M9 7H15V9H9V7M9 11H15V13H9V11M9 15H15V17H9V15Z'/%3E%3C/svg%3E") center/contain no-repeat;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.spin-icon::after {
    content: '';
    position: relative;
    z-index: 1;
    width: 45px;
    height: 45px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12,2C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22C17.52,22 22,17.52 22,12C22,6.48 17.52,2 12,2ZM12,20C7.59,20 4,16.41 4,12C4,7.59 7.59,4 12,4C16.41,4 20,7.59 20,12C20,16.41 16.41,20 12,20ZM16.59,7.58L15.17,9L16.59,10.41L18,9L16.59,7.58ZM7.58,16.59L9,15.17L10.41,16.59L9,18L7.58,16.59ZM10.41,7.58L9,9L7.58,7.58L9,6.17L10.41,7.58ZM15.17,15L16.59,16.41L15.17,18L13.76,16.59L15.17,15Z'/%3E%3C/svg%3E") center/contain no-repeat;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
    animation: spin 3s linear infinite;
}

.quantum-icon::after {
    content: '';
    position: relative;
    z-index: 1;
    width: 45px;
    height: 45px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M6,2L8,6L12,2L16,6L18,2L20,4L18,8L22,12L18,16L20,20L18,22L14,18L12,22L10,18L6,22L4,20L6,16L2,12L6,8L4,4L6,2Z'/%3E%3C/svg%3E") center/contain no-repeat;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-glow {
    from { 
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 15px rgba(0, 132, 255, 0.3)); 
    }
    to { 
        filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 25px rgba(116, 61, 255, 0.5)); 
    }
}

.card h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.btn-card {
    background: linear-gradient(135deg, rgba(0, 132, 255, 0.2) 0%, rgba(116, 61, 255, 0.2) 100%);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(80, 119, 255, 0.8);
    cursor: pointer;
    margin-top: auto;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-card:hover::before {
    left: 100%;
}

.btn-card:hover {
    background: linear-gradient(135deg, rgba(0, 132, 255, 0.4) 0%, rgba(116, 61, 255, 0.4) 100%);
    border-color: rgba(130, 167, 255, 1);
    box-shadow: 0 0 25px rgba(0, 132, 255, 0.5);
    transform: translateY(-2px);
}

.jackpot {
    background: linear-gradient(135deg, rgba(255, 0, 106, 0.1) 0%, rgba(43, 91, 255, 0.1) 100%);
    border: 1px solid rgba(255, 0, 106, 0.3);
}

.jackpot:hover {
    box-shadow: 
        0 0 35px rgba(255, 0, 106, 0.3),
        0 0 60px rgba(43, 91, 255, 0.2);
}

.jackpot .countdown {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #ff006a 0%, #2b5bff 100%);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 0 15px rgba(255, 0, 106, 0.3);
    letter-spacing: 1px;
}

.jackpot-amount {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #ff006a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tickets-info {
    font-size: 0.8rem;
    color: #a9aedb;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
    margin-top: 3rem;
}

.footer h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #a9aedb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 3D геометрические элементы */
.container::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 5%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 132, 255, 0.4) 0%, rgba(116, 61, 255, 0.4) 100%);
    transform: rotate(45deg) perspective(200px) rotateX(30deg);
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 132, 255, 0.3);
    animation: float 6s ease-in-out infinite;
    z-index: -1;
}

.container::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 0, 106, 0.4) 0%, rgba(192, 38, 255, 0.4) 100%);
    transform: rotate(25deg) perspective(200px) rotateY(30deg);
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(255, 0, 106, 0.3);
    animation: float 8s ease-in-out infinite reverse;
    z-index: -1;
}

/* Дополнительные 3D элементы */
.footer::before {
    content: '';
    position: absolute;
    bottom: 5%;
    left: 5%;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.3) 0%, rgba(0, 132, 255, 0.3) 100%);
    transform: rotate(60deg) perspective(150px) rotateZ(15deg);
    border-radius: 8px;
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: rotate(45deg) perspective(200px) rotateX(30deg) translateY(0px); }
    50% { transform: rotate(45deg) perspective(200px) rotateX(30deg) translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: rotate(60deg) perspective(150px) rotateZ(15deg) scale(1); }
    50% { opacity: 0.6; transform: rotate(60deg) perspective(150px) rotateZ(15deg) scale(1.1); }
}

/* Стили для неактивных карточек */
.card.disabled {
    opacity: 0.6;
    background: linear-gradient(135deg, rgba(20, 30, 60, 0.2) 0%, rgba(10, 15, 40, 0.3) 100%);
    border: 1px solid rgba(60, 90, 200, 0.2);
    transform: none !important;
    cursor: not-allowed;
    position: relative;
}

.card.disabled:hover {
    transform: none !important;
    border-color: rgba(60, 90, 200, 0.2) !important;
    box-shadow: 
        0 0 25px rgba(0, 100, 200, 0.1),
        inset 0 0 20px rgba(40, 60, 120, 0.05);
}

.card.disabled::before {
    opacity: 0 !important;
}

.card.disabled .card-icon {
    opacity: 0.5;
    transform: perspective(200px) rotateX(5deg) !important;
    box-shadow: 
        0 0 15px rgba(0, 132, 255, 0.2),
        0 0 30px rgba(116, 61, 255, 0.1),
        inset 0 0 10px rgba(255, 255, 255, 0.05);
}

.card.disabled .card-icon::after {
    animation: none !important;
}

.card.disabled h2 {
    opacity: 0.7;
}

.card.disabled .btn-card {
    background: linear-gradient(135deg, rgba(80, 80, 80, 0.3) 0%, rgba(60, 60, 60, 0.3) 100%);
    border: 1px solid rgba(100, 100, 100, 0.4);
    cursor: not-allowed;
    pointer-events: none;
}

.card.disabled .btn-card:hover {
    background: linear-gradient(135deg, rgba(80, 80, 80, 0.3) 0%, rgba(60, 60, 60, 0.3) 100%);
    border-color: rgba(100, 100, 100, 0.4);
    box-shadow: none;
    transform: none;
}

.coming-soon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff9500 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.4);
    z-index: 10;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    
    .logo {
        width: 180px;
        height: 180px;
        margin-left: 0;
    }
    
    .game-cards {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1.5rem;
        max-width: 100%;
    }
}

/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
    padding-top: 60px;
    font-family: 'Poppins', sans-serif;
}

.modal-content {
    background-color: #2c2c54; /* Dark background for the modal */
    color: #fff; /* White text */
    margin: 5% auto; /* 5% from the top and centered */
    padding: 30px;
    border: 1px solid #888;
    width: 90%; /* Could be more or less, depending on screen size */
    max-width: 400px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal-content h2 {
    margin-top: 0;
}

.close-button {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    line-height: 1;
}

.close-button:hover,
.close-button:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

#auth-form input[type="text"],
#auth-form input[type="password"] {
    width: calc(100% - 24px);
    padding: 12px;
    margin: 10px 0 20px 0;
    display: inline-block;
    border: 1px solid #555;
    border-radius: 8px;
    box-sizing: border-box;
    background-color: #333;
    color: #fff;
    cursor: pointer;
}

#auth-form button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
}

.small-text {
    font-size: 0.8em;
    color: #ccc;
    margin-top: 20px;
}

.small-text a {
    color: #4d90fe; /* A nice blue for the link */
    text-decoration: none;
}

.small-text a:hover {
    text-decoration: underline;
}

/* Overriding button styles for smaller use cases like in the header */
.btn.btn-primary.btn-sm,
.btn.btn-secondary.btn-sm {
    padding: 8px 12px;
    font-size: 0.9rem;
}

/* User Dashboard Styles */
.user-dashboard {
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(13, 13, 43, 0.5);
    border: 1px solid #4b5af7;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.dashboard-welcome {
    font-size: 1.1rem;
    font-weight: 600;
}

.dashboard-stats {
    display: flex;
    gap: 2rem;
    flex-grow: 1;
    justify-content: center;
}

.balance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}

.balance-label {
    font-size: 0.8rem;
    color: #a0a0b0;
    margin-bottom: 4px;
}

.balance-value {
    font-size: 1rem;
    font-weight: 600;
}

.dashboard-actions {
    display: flex;
    gap: 10px;
}

/* Tickets Grid Styles */
.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.ticket-card {
    background: linear-gradient(135deg, #1a1d4a 0%, #0b0d22 100%);
    border: 1px solid #4b5af7;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
}

.ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(75, 90, 247, 0.2);
}

.ticket-icon-container img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
}

.ticket-info {
    display: flex;
    flex-direction: column;
}

.ticket-serial {
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: bold;
}

.ticket-date {
    font-size: 0.8rem;
    color: #a0a0b0;
}

.ticket-scratch-prompt {
    position: absolute;
    right: -50px;
    top: -50px;
    width: 100px;
    height: 100px;
    background-color: #4b5af7;
    transform: rotate(45deg);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 5px;
    box-shadow: 0 0 15px rgba(75, 90, 247, 0.5);
}

.ticket-scratch-prompt span {
    transform: rotate(-45deg);
    color: #fff;
    font-weight: bold;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.no-tickets-message {
    grid-column: 1 / -1; /* Span across all columns */
    text-align: center;
    font-size: 1.2rem;
    padding: 40px;
    background-color: rgba(13, 13, 43, 0.5);
    border-radius: 15px;
}

.no-tickets-message a {
    color: #58a6ff;
    text-decoration: none;
}

.no-tickets-message a:hover {
    text-decoration: underline;
}

.filter-form {
    margin-top: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #cdd4e4;
    font-size: 16px;
}

.checkbox-label input[type="checkbox"] {
    cursor: pointer;
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.ticket-card.used {
    background: #21262d;
    border-color: #30363d;
    cursor: default;
}

.ticket-card.used:hover {
    transform: none;
    box-shadow: none;
}

.ticket-win-amount {
    background-color: #2ea043;
    color: #ffffff;
    font-weight: 600;
    padding: 10px 0;
    text-align: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

/* Deposit and Payment Info Page Styles */
.deposit-form-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background-color: rgba(13, 13, 43, 0.8);
    border-radius: 15px;
    border: 1px solid #4b5af7;
    box-shadow: 0 0 20px rgba(75, 90, 247, 0.2);
}

.deposit-form-container h2 {
    text-align: center;
    margin-bottom: 10px;
}

.deposit-form-container p {
    text-align: center;
    color: #a0a0b0;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    background-color: #0d0d2b;
    border: 1px solid #4b5af7;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: #a0a0b0;
}

.payment-details {
    margin-top: 30px;
}

.payment-details input {
    font-weight: bold;
    background-color: #06061c; /* Slightly darker for read-only fields */
    cursor: text;
}

.payment-notice {
    margin-top: 30px;
    padding: 15px;
    background-color: rgba(255, 180, 0, 0.1);
    border: 1px solid rgba(255, 180, 0, 0.5);
    border-radius: 8px;
    color: #ffb400;
}

.payment-notice p {
    margin: 0;
    color: #ffc84a;
    text-align: left;
}

.payment-notice ul {
    margin: 10px 0 0 20px;
    padding: 0;
}

.payment-notice li {
    margin-bottom: 5px;
    color: #a0a0b0;
}

@media (max-width: 768px) {
    .tickets-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
} 