:root {
    --black: #131010;
    --gray: #B2AFAF;
    --darkgray: #555;
    --white: #FDF7F7;
    --bg: #FDF7F7;
    --pink: #FF4E99;
    --orange: #FF9F00;
    --lime: #C6DF2B;
    --blue: #009DFF;
    --red: #e74c3c;
    --font-family: 'Rubik', sans-serif;
    --header-height: 100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-family); background: var(--bg); min-height: 100vh; }

.main-container {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

/* Auth Message */
.auth-message {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 32px;
    border: 3px solid var(--lime);
    max-width: 420px;
    margin: 60px auto;
    box-shadow: 0 20px 60px rgba(198, 223, 43, 0.15);
    position: relative;
    overflow: hidden;
}

.auth-message::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(198, 223, 43, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.auth-message i {
    font-size: 64px;
    color: var(--lime);
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(198, 223, 43, 0.4));
}

.auth-message h2 {
    font-size: 26px;
    color: var(--black);
    margin-bottom: 12px;
    font-weight: 800;
}

.auth-message p {
    font-size: 15px;
    color: var(--darkgray);
    margin-bottom: 28px;
    line-height: 1.6;
}

.auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--lime);
    color: var(--black);
    border: 2px solid var(--black);
    padding: 15px 36px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-family);
    box-shadow: 0 4px 15px rgba(198, 223, 43, 0.4);
}

.auth-btn:hover {
    background: var(--black);
    color: var(--lime);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.auth-btn i {
    font-size: 18px;
    color: inherit;
    margin: 0;
    filter: none;
}

/* Page Header */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.page-title { display: flex; align-items: center; gap: 15px; }
.page-title h1 { font-size: 42px; font-weight: 800; color: var(--black); }
.page-title i { font-size: 38px; color: var(--lime); }

.create-project-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--lime);
    color: var(--black);
    border: 3px solid var(--black);
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
    text-decoration: none;
}

.create-project-btn:hover {
    background: var(--pink);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 78, 153, 0.3);
}

/* Stats Bar */
.stats-bar { display: flex; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }

.stat-card {
    background: var(--white);
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 200px;
    transition: all 0.3s ease;
}

.stat-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); }

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-icon.projects { background: rgba(198, 223, 43, 0.2); color: var(--lime); }
.stat-icon.shared { background: rgba(0, 157, 255, 0.2); color: var(--blue); }
.stat-icon.collab { background: rgba(255, 78, 153, 0.2); color: var(--pink); }

.stat-info h3 { font-size: 28px; font-weight: 800; color: var(--black); }
.stat-info p { font-size: 14px; color: var(--darkgray); }

/* Filter Tabs */
.filter-tabs { display: flex; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }

.filter-tab {
    padding: 12px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    background: var(--white);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
    color: var(--darkgray);
}

.filter-tab:hover { border-color: var(--black); }
.filter-tab.active { background: var(--black); color: var(--white); border-color: var(--black); }
.filter-tab i { margin-right: 8px; }

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 25px;
}

/* Project Card */
.project-card {
    background: var(--white);
    border: 2px solid #e8e8e8;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--lime);
}

.project-card-header {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.project-header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    pointer-events: none;
}

.project-type-icon {
    font-size: 52px;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.project-type-name {
    font-size: 20px;
    font-weight: 800;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
}

.project-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-preview { transform: scale(1.05); }

.project-type-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 3;
}

.project-type-badge i { font-size: 16px; }
.project-type-badge.html-css-js i { color: #e34c26; }
.project-type-badge.react i { color: #61dafb; }
.project-type-badge.vue i { color: #42b883; }
.project-type-badge.nodejs i { color: #68a063; }
.project-type-badge.python i { color: #3776ab; }
.project-type-badge.java i { color: #ed8b00; }

.project-actions-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(19, 16, 16, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.project-card:hover .project-actions-overlay { 
    opacity: 1; 
    visibility: visible;
}

.overlay-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.overlay-btn.open { background: var(--lime); color: var(--black); }
.overlay-btn.share { background: var(--blue); color: var(--white); }
.overlay-btn.delete { background: var(--red); color: var(--white); }
.overlay-btn:hover { transform: scale(1.15); }

.project-card-body { padding: 20px; }
.project-name { font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.project-meta { font-size: 13px; color: var(--darkgray); }
.project-meta i { margin-right: 5px; }

.project-card-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
}

.open-project-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lime);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.open-project-btn:hover { background: var(--black); color: var(--white); }

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 40px;
    background: var(--white);
    border-radius: 30px;
    border: 2px dashed #ddd;
}

.empty-state-icon { font-size: 80px; margin-bottom: 25px; }
.empty-state h2 { font-size: 28px; color: var(--black); margin-bottom: 15px; }
.empty-state p { font-size: 18px; color: var(--darkgray); margin-bottom: 30px; }

.empty-state .create-project-btn {
    display: inline-flex;
    width: auto;
    padding: 14px 28px;
    font-size: 16px;
    border-width: 2px;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(19, 16, 16, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.modal-overlay.active { display: flex; }

.modal-content {
    background: var(--white);
    border-radius: 24px;
    max-width: 500px;
    width: 100%;
    animation: modalSlide 0.4s ease;
}

@keyframes modalSlide {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h2 { font-size: 24px; font-weight: 700; display: flex; align-items: center; gap: 12px; }

.modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.modal-close:hover { background: var(--red); color: var(--white); }

.modal-body { padding: 30px; }
.modal-footer { padding: 20px 30px; border-top: 1px solid #eee; display: flex; gap: 15px; justify-content: flex-end; }

.share-link-container { display: flex; gap: 10px; }

.share-link-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    font-family: var(--font-family);
}

.copy-link-btn {
    padding: 15px 25px;
    background: var(--lime);
    border: 2px solid var(--black);
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.copy-link-btn:hover { background: var(--black); color: var(--white); }

.delete-warning { text-align: center; padding: 20px 0; }
.delete-warning i { font-size: 60px; color: var(--red); margin-bottom: 20px; }
.delete-warning h3 { font-size: 22px; margin-bottom: 15px; }
.delete-warning p { color: var(--darkgray); margin-bottom: 10px; }

.btn-cancel {
    padding: 14px 30px;
    background: #f0f0f0;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-family);
}

.btn-delete {
    padding: 14px 30px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-family);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--black);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10001;
    opacity: 0;
    transition: all 0.4s ease;
}

.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast.success { background: var(--lime); color: var(--black); }
.toast.error { background: var(--red); }

/* Loading */
.loading-spinner { display: flex; align-items: center; justify-content: center; padding: 60px; }
.loading-spinner i { font-size: 48px; color: var(--lime); animation: spin 1s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .auth-message {
        max-width: 380px;
        margin: 50px auto;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    :root { --header-height: 70px; }
    .main-container { padding: calc(var(--header-height) + 20px) 15px 60px; }
    .page-header { flex-direction: column; align-items: flex-start; }
    .page-title h1 { font-size: 28px; }
    .create-project-btn { width: 100%; justify-content: center; }
    .stats-bar { flex-direction: column; }
    .filter-tabs { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
    .filter-tab { white-space: nowrap; flex-shrink: 0; }
    .projects-grid { grid-template-columns: 1fr; }

    /* Auth Message Mobile */
    .auth-message {
        max-width: 100%;
        margin: 40px 0;
        padding: 40px 25px;
        border-radius: 24px;
    }

    .auth-message i {
        font-size: 52px;
    }

    .auth-message h2 {
        font-size: 22px;
    }

    .auth-message p {
        font-size: 14px;
    }

    .auth-btn {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .auth-message {
        padding: 30px 20px;
        border-radius: 20px;
        border-width: 2px;
    }

    .auth-message i {
        font-size: 44px;
        margin-bottom: 15px;
    }

    .auth-message h2 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .auth-message p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .auth-btn {
        padding: 12px 24px;
        font-size: 14px;
        border-radius: 40px;
    }
}

/* =========================================================================
   DROPDOWN NAVIGATION
   ========================================================================= */
.main-menu {
    display: flex;
    gap: 40px;
    margin: 0 auto;
    align-items: center;
}
.nav-dropdown {
    position: relative;
}
.dropdown-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dropdown-trigger i {
    font-size: 14px;
    transition: transform 0.3s ease;
}
.nav-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}
/* Dropdown контент - БІЛЬШИЙ */
.dropdown-content {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 340px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}
/* Стрілочка зверху */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--white);
}
.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
/* Елементи dropdown - БІЛЬШІ */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--black);
    transition: all 0.2s ease;
}
.dropdown-item:hover {
    background: var(--gray-100, #f5f5f5);
}
.dropdown-item i {
    font-size: 26px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--gray-100, #f5f5f5);
    color: var(--black);
    transition: all 0.2s ease;
}
/* Кольори для іконок при hover */
.dropdown-item:hover i {
    background: var(--lime);
    color: var(--black);
}
.dropdown-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.dropdown-title {
    display: block;
    font-weight: 600;
    font-size: 18px;
}
.dropdown-desc {
    display: block;
    font-size: 14px;
    color: var(--gray-500, #6c757d);
}
/* Header actions group */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Точка-розділювач */
.nav-dot {
    color: var(--gray-400, #adb5bd);
    font-size: 10px;
    user-select: none;
}

/* =========================================================================
   RESPONSIVE - ховаємо dropdown на мобільних
   ========================================================================= */
@media (max-width: 1024px) {
    .nav-dropdown .dropdown-content {
        display: none;
    }

    .dropdown-trigger i {
        display: none;
    }

    .nav-dot {
        display: none;
    }
}

/* =========================================================================
   PROJECT LIMIT - Koodi Club
   ========================================================================= */
.limit-badge {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    background: var(--lime);
    color: var(--black);
    margin-left: 8px;
}

.limit-badge.premium {
    background: var(--lime);
    animation: clubPulse 2s ease-in-out infinite;
}

.limit-badge.limit-warning {
    background: var(--orange);
    color: var(--black);
}

.limit-badge.limit-full {
    background: var(--pink);
    color: white;
    animation: limitPulse 1s ease-in-out infinite;
}

@keyframes clubPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes limitPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.limit-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: var(--pink);
    color: white;
    padding: 16px 24px;
    border-radius: 16px;
    margin-bottom: 24px;
    border: 3px solid var(--black);
    box-shadow: 6px 6px 0 var(--black);
}

.limit-banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.limit-banner-content i {
    font-size: 24px;
}

.limit-banner-content strong {
    font-weight: 700;
}

.limit-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lime);
    color: var(--black);
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--black);
    box-shadow: 3px 3px 0 var(--black);
    white-space: nowrap;
    transition: all 0.2s ease;
}

.limit-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 5px 5px 0 var(--black);
}

/* Промо-посилання "Хочеш 👑 ∞?" для FREE користувачів */
.unlock-unlimited-link {
    display: inline-flex;
    align-items: center;
    margin-left: 12px;
    text-decoration: none;
    color: var(--lime);
    transition: all 0.3s ease;
}

.unlock-hint {
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--lime) 0%, #a7c024 100%);
    color: var(--black);
    border-radius: 20px;
    border: 2px solid var(--black);
    box-shadow: 2px 2px 0 var(--black);
    white-space: nowrap;
    animation: unlockHintPulse 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.2s ease;
}

.unlock-hint:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 4px 4px 0 var(--black);
}

@keyframes unlockHintPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 2px 2px 0 var(--black);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 3px 3px 0 var(--black);
    }
}

@media (max-width: 768px) {
    .limit-banner {
        flex-direction: column;
        text-align: center;
    }

    .limit-banner-content {
        flex-direction: column;
        gap: 8px;
    }

    .limit-banner-btn {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================================
   PROJECT LIMIT MODAL
   ========================================================================= */
.limit-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.limit-modal-overlay.active {
    opacity: 1;
}

.limit-modal {
    background: var(--white);
    border-radius: 24px;
    border: 4px solid var(--black);
    box-shadow: 12px 12px 0 var(--black);
    max-width: 480px;
    width: 100%;
    padding: 40px;
    text-align: center;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.limit-modal-overlay.active .limit-modal {
    transform: scale(1) translateY(0);
}

.limit-modal-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.limit-modal h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
}

.limit-modal-text {
    font-size: 16px;
    color: var(--darkgray);
    line-height: 1.6;
    margin-bottom: 30px;
}

.limit-modal-text strong {
    color: var(--black);
}

.limit-modal-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.limit-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #f5f5f5;
    border-radius: 16px;
    border: 2px solid transparent;
    text-align: left;
}

.limit-option.premium {
    background: var(--lime);
    border: 3px solid var(--black);
    box-shadow: 4px 4px 0 var(--black);
}

.limit-option-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.limit-option-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.limit-option-text strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}

.limit-option-text span {
    font-size: 14px;
    color: var(--darkgray);
}

.limit-option.premium .limit-option-text span {
    color: var(--black);
    opacity: 0.8;
}

.limit-modal-buttons {
    display: flex;
    gap: 12px;
}

.limit-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 16px;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 3px solid var(--black);
    cursor: pointer;
    transition: all 0.2s ease;
}

.limit-btn.secondary {
    background: var(--white);
    color: var(--black);
}

.limit-btn.secondary:hover {
    background: #f0f0f0;
    box-shadow: 4px 4px 0 var(--black);
    transform: translateY(-2px);
}

.limit-btn.primary {
    background: var(--lime);
    color: var(--black);
    box-shadow: 4px 4px 0 var(--black);
}

.limit-btn.primary:hover {
    background: var(--pink);
    transform: translateY(-2px);
    box-shadow: 6px 6px 0 var(--black);
}

.limit-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--black);
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s ease;
}

.limit-modal-close:hover {
    background: var(--pink);
    transform: rotate(90deg);
}

@media (max-width: 500px) {
    .limit-modal {
        padding: 30px 20px;
    }

    .limit-modal h2 {
        font-size: 20px;
    }

    .limit-modal-buttons {
        flex-direction: column;
    }
}
