/* Modern CSS Variables and Reset */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --neon-green: #00FF66;
    --neon-green-glow: rgba(0, 255, 102, 0.4);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(20, 20, 20, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
    --gold: #FFD700;
    --gold-glow: rgba(255, 215, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Utilities */
.text-neon {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green-glow);
}

.d-none {
    display: none !important;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.logo i {
    color: var(--neon-green);
    font-size: 1.8rem;
    filter: drop-shadow(0 0 5px var(--neon-green));
}

.search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0.3rem 0.3rem 0.3rem 1.5rem;
    width: 400px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.search-bar:focus-within {
    border-color: var(--neon-green);
    box-shadow: 0 0 15px var(--neon-green-glow);
}

.search-bar input {
    background: transparent;
    border: none;
    color: var(--text-primary);
    flex: 1;
    font-size: 0.95rem;
    outline: none;
}

.search-bar input::placeholder {
    color: var(--text-secondary);
}

.search-btn {
    background: var(--neon-green);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: var(--bg-dark);
    font-size: 1rem;
    transition: transform 0.2s;
}

.search-btn:hover {
    transform: scale(1.05);
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-greeting {
    font-size: 0.95rem;
    font-weight: 600;
    display: none;
}

@media (min-width: 768px) {
    .user-greeting {
        display: block;
    }
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #333 0%, #111 100%);
    border: 2px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: border-color 0.3s;
}

.user-avatar:hover {
    border-color: var(--neon-green);
}

.nav-auth {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-btn-outline:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.nav-btn-solid {
    background: var(--neon-green);
    color: var(--bg-dark);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 10px var(--neon-green-glow);
}

.nav-btn-solid:hover {
    background: #00e65c;
    box-shadow: 0 4px 15px var(--neon-green-glow);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background: url('https://images.unsplash.com/photo-1551958219-acbc608c6377?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 1) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    animation: fadeIn 1s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(to right, #ffffff, var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-button {
    background: var(--neon-green);
    color: var(--bg-dark);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px var(--neon-green-glow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--neon-green-glow);
    background: #00e65c;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.tags-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.tags-container::-webkit-scrollbar {
    height: 4px;
}

.tags-container::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.tag {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tag:hover {
    border-color: var(--text-secondary);
}

.tag.active {
    background: rgba(0, 255, 102, 0.1);
    border-color: var(--neon-green);
    color: var(--neon-green);
}

/* Fields Grid */
.fields-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* Field Card */
.field-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.field-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 255, 102, 0.1);
    border-color: rgba(0, 255, 102, 0.2);
}

.card-img-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.field-card:hover .card-img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-rating i {
    color: #FFD700;
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-location {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.card-location i {
    color: var(--neon-green);
    margin-right: 0.3rem;
}

.map-link {
    color: var(--neon-green);
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: color 0.2s;
    margin-left: 0.3rem;
    white-space: nowrap;
}

.map-link:hover {
    color: #fff;
    text-decoration: underline;
}

.card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.card-price {
    font-size: 1.2rem;
    font-weight: 800;
}

.price-unit {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.reserve-btn {
    background: transparent;
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reserve-btn:hover {
    background: var(--neon-green);
    color: var(--bg-dark);
    box-shadow: 0 0 10px var(--neon-green-glow);
}

/* Modal Layout */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 0;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(30px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 255, 102, 0.1);
}

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

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--text-primary);
}

.modal-header {
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.modal-subtitle {
    color: var(--neon-green);
    font-size: 0.95rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-group label i {
    margin-right: 0.3rem;
}

.form-group input,
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--neon-green);
    background: rgba(0, 255, 102, 0.05);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 1rem) center;
}

.form-group select option {
    background-color: var(--bg-card);
    color: var(--text-primary);
}

/* Change input date icon color */
::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.price-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 255, 102, 0.05);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px dashed rgba(0, 255, 102, 0.3);
}

.submit-btn {
    width: 100%;
    background: var(--neon-green);
    color: var(--bg-dark);
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: #00e65c;
    box-shadow: 0 5px 15px var(--neon-green-glow);
    transform: translateY(-2px);
}

/* Auth Modal Specifics */
.auth-header {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.auth-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 0.3rem;
    width: 100%;
}

.auth-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.auth-tab.active {
    background: var(--neon-green);
    color: var(--bg-dark);
    box-shadow: 0 2px 10px var(--neon-green-glow);
}

.auth-error-msg {
    color: #ff4d4d;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-align: center;
    min-height: 1.2rem;
}

/* Map Modal Specifics */
.map-modal-content {
    max-width: 800px;
    width: 95%;
    padding: 2rem;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }
}

/* Admin Dashboard Overrides */
.admin-sidebar {
    width: 250px;
    background: var(--bg-card);
    border-right: 1px solid var(--border-color);
    padding: 2rem 0;
    min-height: calc(100vh - 70px);
}

.sidebar-menu {
    list-style: none;
}

.sidebar-item {
    padding: 1rem 2rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-left: 3px solid transparent;
}

.sidebar-item:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-item.active {
    color: var(--neon-green);
    background: rgba(0, 255, 102, 0.05);
    border-left-color: var(--neon-green);
}

.sidebar-item .badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    margin-left: auto;
}

.admin-content {
    flex: 1;
    padding: 2rem 3rem;
    overflow-y: auto;
    position: relative;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.table-container {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-table th {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.action-btn-primary {
    background: rgba(0, 255, 102, 0.1);
    color: var(--neon-green);
    border: 1px solid rgba(0, 255, 102, 0.3);
    width: 35px;
    height: 35px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.action-btn-primary:hover {
    background: var(--neon-green);
    color: var(--bg-dark);
}

.action-btn-danger {
    background: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
    border: 1px solid rgba(255, 77, 77, 0.3);
    width: 35px;
    height: 35px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.action-btn-danger:hover {
    background: #ff4d4d;
    color: #fff;
}

.action-btn-rating {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.3);
    width: 35px;
    height: 35px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.action-btn-rating:hover {
    background: #FFD700;
    color: var(--bg-dark);
}

/* Star Rating Interaction Classes */
.star-rating i {
    transition: color 0.2s ease, transform 0.2s ease;
}

.star-rating i:hover {
    transform: scale(1.1);
}

.star-rating i.hover,
.star-rating i.active {
    color: #FFD700 !important;
}

/* Specific modal fix */
.auth-form {
    max-height: 80vh;
    overflow-y: auto;
    padding-right: 10px;
}

.auth-form::-webkit-scrollbar {
    width: 4px;
}

.auth-form::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Variables */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .search-bar {
        width: 200px;
    }

    .main-content {
        padding: 2rem 1rem;
    }
}
/* Select de Estado Admin */
.status-select {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    text-align: center;
}

.status-select.active {
    background: rgba(0, 255, 102, 0.15);
    color: var(--neon-green);
    border: 1px solid rgba(0, 255, 102, 0.3);
}

.status-select.maintenance {
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.status-select.inactive {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-select option {
    background: var(--bg-card);
    color: var(--text-primary);
}
/* Custom Scrollbar for Neon Theme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

/* Para navegadores que no son webkit */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) var(--bg-dark);
}
/* Settings Dashboard Redesign */
#settings-modal .modal-content {
    max-width: 1000px;
    width: 95%;
    height: 85vh;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    background: var(--bg-card);
}

.settings-sidebar {
    width: 260px;
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.settings-sidebar h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.settings-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.config-tab-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    width: 100%;
}

.config-tab-btn i {
    width: 20px;
    font-size: 1rem;
}

.config-tab-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.config-tab-btn.active {
    background: rgba(0, 255, 102, 0.1);
    color: var(--neon-green);
    font-weight: 600;
}

.settings-nav-divider {
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    margin: 1.5rem 0 0.5rem 0.5rem;
    text-transform: uppercase;
    font-weight: 800;
}

.settings-main {
    flex-grow: 1;
    padding: 2.5rem;
    overflow-y: auto;
    position: relative;
}

.settings-main-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.settings-main-header h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
}

/* Responsive Settings */
@media (max-width: 768px) {
    #settings-modal .modal-content {
        flex-direction: column;
        height: 90vh;
    }

    .settings-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 1rem;
    }

    .settings-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .config-tab-btn {
        min-width: fit-content;
        padding: 0.6rem 1rem;
        flex-direction: column;
        font-size: 0.75rem;
        gap: 0.3rem;
    }

    .settings-main {
        padding: 1.5rem;
    }
}

/* Gold Color Variable and Premium Map */
:root {
    --gold: #FFD700;
    --gold-glow: rgba(255, 215, 0, 0.3);
}

/* Notifications */
.nav-notifications {
    position: relative;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 50%;
}

.nav-notifications:hover {
    color: var(--neon-green);
    background: rgba(255, 255, 255, 0.05);
}

.notif-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ff4444;
    color: white;
    font-size: 0.7rem;
    padding: 2px 5px;
    border-radius: 10px;
    font-weight: bold;
    min-width: 15px;
    text-align: center;
    border: 2px solid var(--bg-dark);
}

.notif-dropdown {
    position: absolute;
    top: 55px;
    right: 0;
    width: 350px;
    background: #1a1a1a;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    z-index: 1001;
    overflow: hidden;
    animation: fadeInSlide 0.3s ease;
    backdrop-filter: blur(20px);
}

.notif-header {
    padding: 15px 20px;
    background: rgba(255,255,255,0.03);
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notif-list {
    max-height: 400px;
    overflow-y: auto;
}

.notif-item {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s;
    cursor: pointer;
    position: relative;
}

.notif-item:hover {
    background: rgba(255,255,255,0.05);
}

.notif-item.unread {
    background: rgba(0, 255, 102, 0.02);
}

.notif-item.unread::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 22px;
    width: 6px;
    height: 6px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--neon-green);
}

.notif-title {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.notif-msg {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.notif-time {
    font-size: 0.75rem;
    color: #666;
    margin-top: 6px;
}

.notif-empty {
    padding: 40px 20px;
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.9rem;
}

/* General Animations */
@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
