@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600&family=Poppins:wght@300;400;600&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(120deg, #0a0a12, #0f0f1f);
    color: #e5e7eb;
}

/* CONTAINER */
.container {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 0 50px rgba(124,58,237,0.2), 0 0 80px rgba(34,211,238,0.15);
}

/* PROFILE PIC */
.profile-pic img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #7c3aed;
    box-shadow: 0 0 25px #7c3aed;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.profile-pic img:hover {
    border-color: #22d3ee;
    box-shadow: 0 0 35px #22d3ee;
    transform: scale(1.05);
}

/* BUTTONS - HAMMA BIR XIL STYLE */
button {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    background: linear-gradient(90deg, #7c3aed, #9d4edd);
    box-shadow: 0 0 20px rgba(124,58,237,0.5);
    transition: all 0.35s ease;
}

button:hover {
    background: linear-gradient(90deg, #22d3ee, #06b6d4);
    box-shadow: 0 0 35px rgba(34,211,238,0.9);
    transform: translateY(-2px) scale(1.02);
}

/* BUTTON ROW */
.button-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
}

.button-row button {
    flex: 1;
    padding: 15px 20px;
}

/* ORDER BUTTON - pastda butun container bo‘ylab, kichikroq */
.order-btn {
    width: 100%;
    padding: 16px;
    margin-top: 10px;
}
.button-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
}

.button-grid button {
    font-size: 16px;
    font-weight: 600;
    padding: 15px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    color: #000;
    background: linear-gradient(90deg, #7c3aed, #9d4edd);
    box-shadow: 0 0 20px rgba(124,58,237,0.5);
    transition: all 0.35s ease;
}
#lang-switcher {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 999;
}

#lang-switcher button {
    margin-right: 6px;
    padding: 6px 10px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: linear-gradient(90deg,#7c3aed,#9d4edd);
    color: #000;
}


.button-grid button:hover {
    background: linear-gradient(90deg, #22d3ee, #06b6d4);
    box-shadow: 0 0 35px rgba(34,211,238,0.9);
    transform: translateY(-2px) scale(1.02);
}

/* OTHER button full row */
.other-btn {
    grid-column: 1 / -1;
}


/* FOOTER */
footer {
    background-color: #0a0a12;
    color: #e5e7eb;
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
    margin-top: 50px;
}

footer a {
    color: #22d3ee;
    text-decoration: none;
    margin: 0 5px;
    transition: text-shadow 0.3s;
}

footer a:hover {
    text-shadow: 0 0 10px #22d3ee;
}
