/* ==========================================================================
   1. RESET VA PREMIUM NEOCLASSICAL TIZIM OʻZGARUVCHILARI
   ========================================================================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-main: #FAF6F0;        /* Premium och kremli fon */
    --surface: #FFFFFF;         /* Sof oq qatlamlar */
    --surface-warm: #F4EFE6;    /* Issiq fil suyagi rangi */
    --primary-dark: #2B1810;    /* Chuqur qirollik jigarrangi */
    --accent-gold: #8C6239;     /* Neoclassical oltin-jigarrang tus */
    --text-dark: #1F110A;       /* Matnlar uchun quyuq rang */
    --text-muted: #7A6B63;      /* Yordamchi matnlar */
    --border-warm: #EAE1D4;     /* Nozik va nafis chegara chizig'i */
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', Arial, sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 92%;
    max-width: 1250px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.text-center { text-align: center; }

/* ==========================================================================
   2. TUGMALAR REVOLUTSIYASI
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.8rem;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background-color: var(--primary-dark);
    color: var(--surface);
}

.btn-primary:hover {
    background-color: var(--accent-gold);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--primary-dark);
    color: var(--primary-dark);
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    color: var(--surface);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   3. STRUKTURAVIY HEADER (TOP BAR)
   ========================================================================== */
.top-header {
    background-color: var(--surface);
    border-bottom: 1px solid var(--border-warm);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(43, 24, 16, 0.02);
}

.header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.brand-logo {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.search-form-container {
    display: flex;
    flex: 1;
    max-width: 550px;
}

.search-form-container input {
    width: 100%;
    padding: 0.75rem 1.2rem;
    border: 1px solid var(--border-warm);
    background-color: var(--bg-main);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    outline: none;
}

.search-form-container button {
    background-color: var(--primary-dark);
    color: var(--surface);
    border: none;
    padding: 0 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-form-container button:hover {
    background-color: var(--accent-gold);
}

.header-right-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto; /* Elementlarni o'ng burchakka majburiy qulfaydi */
}

.user-tag {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.basket-icon-wrapper {
    font-size: 1.4rem;
    position: relative;
    display: flex;
    align-items: center;
}

.basket-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    background-color: var(--accent-gold);
    color: var(--surface);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 50%;
}

/* ==========================================================================
   4. ASOSIY MAKET VA YON PANEL (SIDEBAR)
   ========================================================================== */
.main-store-layout {
    display: flex;
    gap: 50px;
    margin-top: 45px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.neoclassic-sidebar {
    width: 280px;
    flex-shrink: 0;
    background-color: var(--surface);
    border: 1px solid var(--border-warm);
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(43, 24, 16, 0.01);
}

.sidebar-heading {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-dark);
    padding-bottom: 10px;
    letter-spacing: -0.3px;
}

.sidebar-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-tag-item {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 12px 18px;
    background-color: var(--bg-main);
    border: 1px solid var(--border-warm);
    color: var(--text-dark);
}

.sidebar-tag-item:hover, .sidebar-tag-item.active {
    background-color: var(--primary-dark);
    color: var(--surface);
    border-color: var(--primary-dark);
    font-weight: 600;
}

.store-content-display {
    flex: 1;
}

.main-section-title {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    color: var(--primary-dark);
    margin-top: 0;
    margin-bottom: 2.5rem;
    letter-spacing: -0.5px;
}

/* ==========================================================================
   5. PROFESSIONAL KITOB KARTALARI GRIDI
   ========================================================================== */
.premium-book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2.5rem 2rem;
}

.premium-book-card {
    background-color: var(--surface);
    border: 1px solid var(--border-warm);
    padding: 15px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.premium-book-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(43, 24, 16, 0.06);
}

.premium-book-cover-wrap {
    background-color: var(--surface-warm);
    height: 290px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(43, 24, 16, 0.02);
}

.premium-book-cover-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-book-details {
    padding-top: 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.premium-book-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.premium-book-author {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.premium-book-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    margin-top: auto;
}

/* ==========================================================================
   6. JONLI POP-UP PANEL ARCHITECT (MODAL)
   ========================================================================== */
.luxury-panel-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(31, 17, 10, 0.6) !important;
    backdrop-filter: blur(6px) !important;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999 !important;
}

/* Modal :target orqali uyg'onadi */
.luxury-panel-overlay:target {
    display: flex !important;
}

.luxury-panel-box {
    background-color: var(--bg-main);
    background-image: linear-gradient(to bottom, #FFFFFF, var(--bg-main));
    padding: 45px;
    width: 92%;
    max-width: 880px;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid var(--border-warm);
    box-shadow: 0 30px 70px rgba(0,0,0,0.25);
    animation: luxuryPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes luxuryPop {
    from { transform: scale(0.96); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.luxury-panel-close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2.8rem;
    color: var(--text-muted);
    line-height: 1;
}

.luxury-panel-close-btn:hover {
    color: var(--primary-dark);
}

.luxury-panel-body-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 40px;
    align-items: start;
    margin-top: 15px;
}

.luxury-panel-visual {
    background-color: var(--surface-warm);
    padding: 25px;
    border: 1px solid var(--border-warm);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.luxury-panel-visual img {
    max-width: 100%;
    max-height: 390px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.luxury-panel-info-block h2 {
    font-family: var(--font-serif);
    font-size: 2.3rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
    line-height: 1.2;
}

.luxury-panel-info-block .meta-author {
    font-size: 1.1rem;
    color: var(--accent-gold);
    font-style: italic;
    margin-bottom: 15px;
}

.luxury-panel-info-block .meta-price {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-warm);
    padding-bottom: 12px;
}

.luxury-panel-info-block .description-header {
    font-family: var(--font-serif);
/* ==========================================================================
   7. PAGINATION (SAHIFALASH TIZIMI - DAVOMI)
   ========================================================================== */
   .neoclassic-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 4.5rem 0 2rem 0;
}

.neoclassic-pagination a, .neoclassic-pagination .current-page-node {
    padding: 10px 18px;
    border: 1px solid var(--border-warm);
    font-size: 0.9rem;
    font-weight: 600;
    background-color: var(--surface);
    transition: all 0.3s ease;
}

.neoclassic-pagination a:hover {
    background-color: var(--primary-dark);
    color: var(--surface);
    border-color: var(--primary-dark);
}

.neoclassic-pagination .current-page-node {
    background-color: var(--accent-gold);
    color: var(--surface);
    border-color: var(--accent-gold);
}

/* ==========================================================================
   8. SAVATCHA (CART MANAGER UI)
   ========================================================================== */
.luxury-cart-section {
    background-color: var(--surface);
    border-top: 1px solid var(--border-warm);
    padding: 5rem 0;
    margin-top: 4rem;
}

.cart-box-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.cart-items-stream {
    display: flex;
    flex-direction: column;
}

.stream-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-warm);
}

.stream-item-img {
    background-color: var(--bg-main);
    padding: 15px;
    font-size: 1.8rem;
    border: 1px solid var(--border-warm);
}

.stream-item-meta {
    flex: 1;
}

.stream-item-meta h4 {
    font-family: var(--font-serif);
    color: var(--primary-dark);
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.stream-item-meta p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.stream-item-price {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.cart-financial-summary {
    background-color: var(--bg-main);
    padding: 35px;
    border: 1px solid var(--border-warm);
}

.cart-financial-summary h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
    color: var(--primary-dark);
    border-bottom: 1px solid var(--border-warm);
    padding-bottom: 10px;
}

.summary-data-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    font-size: 0.98rem;
}

.summary-data-row.grand-total {
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    color: var(--primary-dark);
    border-top: 1px solid var(--border-warm);
    padding-top: 15px;
}

/* ==========================================================================
   9. AUTH MODALS SYSTEM (GOOGLE SIGN IN)
   ========================================================================== */
.auth-overlay-window {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 24, 16, 0.5);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100000;
}

.auth-overlay-window:target { 
    display: flex; 
}

.auth-modal-plate {
    background-color: var(--surface);
    padding: 3.5rem 2.5rem;
    width: 100%;
    max-width: 440px;
    position: relative;
    border: 1px solid var(--border-warm);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    text-align: center;
}

.auth-modal-plate .modal-close-trigger {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-muted);
}

.auth-modal-plate .modal-title {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.google-auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px;
    background-color: white;
    border: 1px solid #DADCE0;
    color: #3C4043;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
    margin-top: 2rem;
    transition: background-color 0.2s;
}

.google-auth-btn:hover {
    background-color: #F8FAFC;
    border-color: #CDD1D5;
}

.google-auth-btn img { 
    width: 22px; 
    height: 22px; 
}

/* ==========================================================================
   10. PREMIUM HOLLYWOOD FOOTER
   ========================================================================== */
.premium-footer {
    background-color: var(--primary-dark);
    color: #EFEBE9;
    padding: 5rem 0 2.5rem 0;
    margin-top: 6rem;
    border-top: 4px solid var(--accent-gold);
}

.footer-columns-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--surface);
    letter-spacing: 0.5px;
}

.footer-column p {
    font-size: 0.92rem;
    opacity: 0.75;
    line-height: 1.7;
    color: #CBC0BC;
}

.social-links-stream {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
}

.social-links-stream a {
    font-size: 0.88rem;
    background-color: rgba(255, 255, 255, 0.04);
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #EFEBE9;
    transition: all 0.3s ease;
}

.social-links-stream a:hover {
    background-color: var(--surface);
    color: var(--primary-dark);
}

.footer-copyright-plate {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
    opacity: 0.5;
    color: #A1928E;
}

/* ==========================================================================
   11. ULTRA RESPONSIVE ADAPTATION
   ========================================================================== */
@media (max-width: 900px) {
    .main-store-layout {
        flex-direction: column;
        gap: 30px;
    }
    .cart-box-grid, .luxury-panel-body-grid {
        grid-template-columns: 1fr;
    }
    .neoclassic-sidebar { 
        width: 100%; 
    }
    .header-grid { 
        flex-direction: column; 
        gap: 1.2rem; 
    }
    .search-form-container { 
        max-width: 100%; 
    }
    .header-right-actions { 
        margin-left: 0; 
        width: 100%; 
        justify-content: space-between; 
    }
    .luxury-panel-box {
        padding: 25px;
    }
}
}

/* ==========================================================================
   🚨 MODAL POP-UP OYNASINI MUTLOQ TO'G'RILASH (FORCE DISPLAY)
   ========================================================================== */
.luxury-panel-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(31, 17, 10, 0.7) !important; /* To'q qoraytirilgan fon */
    backdrop-filter: blur(8px) !important; /* Kuchli xiralashtirish */
    display: none !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 999999 !important; /* Eng yuqori qatlam */
}

/* Faqatgina bosilganda (target bo'lganda) flex rejimiga o'tadi */
.luxury-panel-overlay:target {
    display: flex !important;
}

.luxury-panel-box {
    background-color: #FAF6F0 !important; /* Kremli fon */
    background-image: linear-gradient(to bottom, #FFFFFF, #FAF6F0) !important;
    padding: 45px !important;
    width: 90% !important;
    max-width: 850px !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
    position: relative !important;
    border: 1px solid #EAE1D4 !important;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35) !important;
    z-index: 1000000 !important;
}

.luxury-panel-close-btn {
    position: absolute !important;
    top: 15px !important;
    right: 25px !important;
    font-size: 2.8rem !important;
    color: #7A6B63 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    z-index: 1000001 !important;
}

.luxury-panel-close-btn:hover {
    color: #2B1810 !important;
}

.luxury-panel-body-grid {
    display: grid !important;
    grid-template-columns: 1fr 1.25fr !important;
    gap: 40px !important;
    align-items: start !important;
    margin-top: 20px !important;
}

.luxury-panel-visual {
    background-color: #F4EFE6 !important;
    padding: 25px !important;
    border: 1px solid #EAE1D4 !important;
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.luxury-panel-visual img {
    max-width: 100% !important;
    max-height: 380px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
    object-fit: contain !important;
}

.luxury-panel-info-block h2 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 2.2rem !important;
    color: #2B1810 !important;
    margin-bottom: 8px !important;
    line-height: 1.2 !important;
}

.luxury-panel-info-block .meta-author {
    font-size: 1.1rem !important;
    color: #8C6239 !important;
    font-style: italic !important;
    margin-bottom: 15px !important;
}

.luxury-panel-info-block .meta-price {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: #1F110A !important;
    margin-bottom: 20px !important;
    border-bottom: 1px solid #EAE1D4 !important;
    padding-bottom: 10px !important;
}

.luxury-panel-info-block .description-header {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1.15rem !important;
    color: #2B1810 !important;
    margin-bottom: 8px !important;
}

.luxury-panel-info-block .description-text {
    font-size: 0.98rem !important;
    color: #1F110A !important;
    margin-bottom: 25px !important;
    line-height: 1.6 !important;
    white-space: pre-line !important;
}

.panel-btn {
    display: inline-flex !important;
    padding: 12px 35px !important;
}
/* ==========================================================================
   🚨 YAKUNIY VA MUKAMMAL MODAL TUXATISHI (FOOTER VA MODAL ARALASHMASLIGI UCHUN)
   ========================================================================== */

/* 1. Kirish modali va Kitob panellarini standart holatda mutloq yashirish */
.auth-overlay-window, 
.luxury-panel-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(31, 17, 10, 0.7) !important;
    backdrop-filter: blur(8px) !important;
    display: none !important; /* Standart holatda yashirin */
    justify-content: center !important;
    align-items: center !important;
    z-index: 999999 !important;
}

/* 2. Faqatgina bosilganda (Target bo'lganda) ekranga chiqarish */
.auth-overlay-window:target, 
.luxury-panel-overlay:target {
    display: flex !important;
}

/* 3. Google va ijtimoiy tarmoqlar tugmalarini tekislash */
.google-auth-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    width: 100% !important;
    padding: 14px !important;
    background-color: white !important;
    border: 1px solid #DADCE0 !important;
    color: #3C4043 !important;
    font-weight: 600 !important;
    margin-top: 2rem !important;
    border-radius: 4px !important;
}

.social-links-stream {
    display: flex !important;
    gap: 12px !important;
    margin-top: 1rem !important;
}

.social-links-stream a {
    display: inline-block !important;
    padding: 8px 16px !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #EFEBE9 !important;
}

/* 4. Podvalni (Footer) toliq kenglikka qaytarish */
.premium-footer {
    width: 100% !important;
    clear: both !important;
    display: block !important;
}

.footer-columns-container {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)) !important;
    gap: 40px !important;
    width: 100% !important;
}
/* ==========================================================================
   📈 LINIYALI VA KATTAROQ LUXURY PAGINATION TUGMALARI
   ========================================================================== */
   .neoclassic-pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important; /* Tugmalar orasidagi masofani kengaytirish */
    margin: 5rem 0 3rem 0 !important;
    width: 100% !important;
}

.neoclassic-pagination a, 
.neoclassic-pagination .current-page-node {
    padding: 14px 24px !important; /* Kattaroq o'lcham (Tugma ichki kengligi) */
    font-size: 1.05rem !important;  /* Kattaroq shrift o'lchami */
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    border: 1px solid var(--border-warm) !important;
    background-color: var(--surface) !important;
    color: var(--primary-dark) !important;
    min-width: 60px !important;
    text-align: center !important;
    box-shadow: 0 4px 10px rgba(43, 24, 16, 0.03) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Sichqoncha ustiga kelgandagi effekt */
.neoclassic-pagination a:hover {
    background-color: var(--primary-dark) !important;
    color: var(--surface) !important;
    border-color: var(--primary-dark) !important;
    transform: translateY(-2px) !important; /* Tepaga biroz ko'tarilish effekti */
    box-shadow: 0 6px 15px rgba(43, 24, 16, 0.1) !important;
}

/* Hozirgi faol turgan sahifa tugmasi */
.neoclassic-pagination .current-page-node {
    background-color: var(--accent-gold) !important;
    color: var(--surface) !important;
    border-color: var(--accent-gold) !important;
    box-shadow: 0 6px 15px rgba(140, 98, 57, 0.2) !important;
}


.auth-overlay-window {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.auth-overlay-window:target {
    display: flex;
}

.auth-modal-plate {
    background: white;
    padding: 25px;
    border-radius: 10px;
    width: 90%;
}

.modal-close-trigger {
    float: right;
    text-decoration: none;
    font-size: 22px;
}