:root {
    --bg-color-light: linear-gradient(135deg, #fdfdfd 0%, #e2e8f0 100%);
    --text-color-light: #111111;
    --glass-bg-light: rgba(255, 255, 255, 0.45);
    --glass-border-light: rgba(255, 255, 255, 0.6);
    --glass-shadow-light: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    --card-bg-light: rgba(255, 255, 255, 0.65);

    --bg-color-dark: linear-gradient(135deg, #121212 0%, #2d3748 100%);
    --text-color-dark: #f8f8f8;
    --glass-bg-dark: rgba(18, 18, 18, 0.55);
    --glass-border-dark: rgba(255, 255, 255, 0.08);
    --glass-shadow-dark: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    --card-bg-dark: rgba(255, 255, 255, 0.045);

    /* Logo Red */
    --primary-color: #c91414;
    --severity-yellow: #fbbf24;
    --severity-orange: #f97316;
    --severity-red: #c91414;
    --success-green: #10b981;
    --info-blue: #3b82f6;

    --bg-color: var(--bg-color-light);
    --text-color: var(--text-color-light);
    --glass-bg: var(--glass-bg-light);
    --glass-border: var(--glass-border-light);
    --glass-shadow: var(--glass-shadow-light);
    --card-bg: var(--card-bg-light);
}

body.dark-mode {
    --bg-color: var(--bg-color-dark);
    --text-color: var(--text-color-dark);
    --glass-bg: var(--glass-bg-dark);
    --glass-border: var(--glass-border-dark);
    --glass-shadow: var(--glass-shadow-dark);
    --card-bg: var(--card-bg-dark);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    transition: background-color 0.3s, color 0.3s;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    overflow: hidden;
    background-attachment: fixed;
}

/* Page Layouts */
.page-map {
    overflow: hidden;
}

.page-content-only {
    overflow-y: auto;
    padding-bottom: 90px;
    height: 100vh;
}

.page-content-only::-webkit-scrollbar {
    width: 0;
}

.page-header {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0 0 20px 20px;
    border-top: none;
}

.page-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.page-container {
    padding: 20px;
}

/* Utilities */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.glass-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    cursor: pointer;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.glass-btn:active {
    transform: scale(0.95);
}

.glass-btn.primary {
    background: var(--primary-color);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    border: none;
    outline: none;
    background: transparent;
    color: var(--text-color);
    cursor: pointer;
}

/* Horizontal Scroll Utilities */
.horizontal-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

/* Stories (Keşfet & Topluluk) */
.stories-container {
    padding: 5px 20px;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 15px;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: transform 0.2s;
    flex-shrink: 0;
    width: 85px;
    position: relative;
    overflow: hidden;
    border-radius: 40px;
}

.story-item:active {
    transform: scale(0.9);
}

.story-avatar-wrapper {
    width: 85px;
    height: 120px;
    border-radius: 40px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-avatar-wrapper.viewed {
    background: var(--glass-border);
}

.story-avatar {
    width: 100%;
    height: 100%;
    border-radius: 37px;
    background: var(--bg-color);
    border: 2px solid var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--text-color);
    overflow: hidden;
    position: relative;
}

.story-avatar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 1;
}

.story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-name {
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.65rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    z-index: 2;
    padding: 0 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
}

.story-add {
    position: relative;
}

.story-add .story-avatar-wrapper {
    background: transparent;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    padding: 2px;
}

.story-add-icon {
    position: absolute;
    bottom: 20px;
    right: 0;
    background: var(--info-blue);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
    border: 2px solid var(--bg-color);
    color: white;
}

/* Medals (Profile) */
.profile-medals-section {
    margin: 20px 0;
}

.section-title {
    font-size: 0.95rem;
    font-weight: 700;
    opacity: 0.9;
    margin-bottom: 5px;
}

.medal-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 110px;
    flex-shrink: 0;
    text-align: center;
}

.medal-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    position: relative;
}

.medal-icon-wrapper.gold {
    background: linear-gradient(135deg, #fbbf24, #d97706);
    color: white;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.medal-icon-wrapper.silver {
    background: linear-gradient(135deg, #e2e8f0, #94a3b8);
    color: white;
    box-shadow: 0 4px 15px rgba(148, 163, 184, 0.4);
}

.medal-icon-wrapper.bronze {
    background: linear-gradient(135deg, #d97706, #92400e);
    color: white;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
}

.medal-icon-wrapper.special {
    background: linear-gradient(135deg, #ef4444, #9f1239);
    color: white;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.medal-title {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.medal-date {
    font-size: 0.65rem;
    opacity: 0.6;
}

/* Map View Elements */
#map {
    height: 100vh;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.leaflet-div-icon {
    background: transparent !important;
    border: none !important;
}

body.dark-mode .leaflet-layer,
body.dark-mode .leaflet-control-zoom-in,
body.dark-mode .leaflet-control-zoom-out,
body.dark-mode .leaflet-control-attribution {
    filter: invert(100%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.map-filter {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    border-radius: 30px;
    padding: 5px;
    gap: 5px;
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.light-mode .filter-btn.active {
    background: rgba(0, 0, 0, 0.1);
}

.top-nav-map {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.top-nav-map>button {
    pointer-events: auto;
}

.location-btn {
    position: absolute;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 70px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 2000;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
}

.nav-item-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-color);
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.2s;
    width: 60px;
    text-decoration: none;
}

.nav-item-bottom.active {
    opacity: 1;
    color: var(--primary-color);
}

.nav-item-bottom i {
    font-size: 1.3rem;
}

.nav-item-bottom span {
    font-size: 0.65rem;
    font-weight: 600;
}

.center-action {
    opacity: 1;
    transform: translateY(-20px);
}

.center-btn-inner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

/* Modals & Overlays */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

.drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    z-index: 3000;
    border-radius: 30px 0 0 30px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    transition: right 0.4s;
}

.drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    overflow-y: auto;
}

.nav-item {
    text-decoration: none;
    color: var(--text-color);
    padding: 12px 15px;
    border-radius: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-btn {
    padding: 12px;
    border-radius: 15px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-color);
    cursor: pointer;
}

.nav-badge {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.nav-badge.alert {
    background: var(--primary-color);
    color: white;
}

/* Report Modal (Bottom Sheet) */
.modal {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    border-radius: 30px 30px 0 0;
    z-index: 3000;
    padding: 25px;
    transform: translateY(110%);
    transition: transform 0.4s;
    visibility: hidden;
}

.modal.active {
    transform: translateY(0);
    visibility: visible;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.type-options,
.severity-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.type-option,
.severity-option {
    flex: 1;
    padding: 12px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.type-option.selected,
.severity-option.selected {
    background: rgba(255, 255, 255, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 10px;
}

.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.color-dot.yellow {
    background-color: var(--severity-yellow);
}

.color-dot.orange {
    background-color: var(--severity-orange);
}

.color-dot.red {
    background-color: var(--severity-red);
    box-shadow: 0 0 10px var(--severity-red);
}

.glass-input {
    width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 15px;
    color: var(--text-color);
    font-size: 1rem;
    resize: none;
    height: 100px;
    outline: none;
    margin-bottom: 15px;
}

.media-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.media-btn {
    flex: 1;
    padding: 15px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Complex Popup Styles (Used on Map) */
.leaflet-popup-content-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
}

.leaflet-popup-tip {
    background: var(--glass-bg);
}

.leaflet-popup-content {
    margin: 0;
    width: 320px !important;
}

.leaflet-popup-close-button {
    display: none !important;
}

.popup-complex-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid var(--glass-border);
}

.popup-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
}

.popup-complex-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popup-location-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.9rem;
}

.popup-location-row strong {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
}

.popup-location-row span {
    opacity: 0.7;
    font-size: 0.8rem;
    padding-left: 20px;
}

.popup-media {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.popup-media img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.popup-audio {
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
}

.popup-desc-text {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.4;
    border-left: 3px solid var(--glass-border);
    padding-left: 10px;
}

.popup-stats-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.popup-stat-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    align-items: center;
}

.popup-stat-row div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.popup-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 15px 15px 15px;
}

.popup-action-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    padding: 8px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.popup-action-btn.success {
    color: var(--success-green);
    border-color: rgba(16, 185, 129, 0.3);
}

.popup-action-btn.danger {
    color: var(--primary-color);
    border-color: rgba(239, 68, 68, 0.3);
}

/* Full Screen Post Detail Modal (Used in Profile/Explore) */
.full-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 4000;
    background: var(--bg-color);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.full-modal.active {
    transform: translateX(0);
}

.full-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    flex-shrink: 0;
}

.full-modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Profile Page */
.profile-header-large {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.avatar.large {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #ef4444);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.profile-info {
    flex: 1;
}

.profile-title {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.profile-stats-grid {
    display: flex;
    justify-content: space-between;
}

.p-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-stat strong {
    font-size: 1.1rem;
}

.p-stat span {
    font-size: 0.7rem;
    opacity: 0.7;
}

.profile-tabs {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid var(--glass-border);
    padding-top: 10px;
    margin-bottom: 10px;
}

.p-tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    opacity: 0.6;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.p-tab.active {
    opacity: 1;
    border-bottom: 2px solid var(--text-color);
}

/* Instagram Grid */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.grid-item {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-icon-placeholder {
    font-size: 2rem;
    opacity: 0.5;
}

.stamp {
    position: absolute;
    bottom: 5px;
    right: 5px;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stamp.resolved {
    background: var(--success-green);
}

.stamp.unresolved {
    background: var(--primary-color);
}

.grid-edit-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    font-size: 0.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 2;
}

.grid-item:hover .grid-edit-btn,
.grid-item:active .grid-edit-btn {
    opacity: 1;
}

/* Explore Feed */
.feed-post {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    margin-bottom: 20px;
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    color: var(--text-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feed-post:active {
    transform: scale(0.985);
}

.feed-header {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feed-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-color), #f97316);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 14px rgba(201, 20, 20, 0.35);
    overflow: hidden;
}

.feed-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feed-header-info {
    flex: 1;
    min-width: 0;
}

.feed-header-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

.feed-header-info span {
    font-size: 0.75rem;
    opacity: 0.6;
}

.feed-media {
    width: 100%;
    height: 260px;
    position: relative;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(249, 115, 22, 0.1));
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.6rem;
    opacity: 0.9;
}

.feed-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feed-actions {
    padding: 12px 16px 2px;
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 1.3rem;
}

.feed-actions i {
    cursor: pointer;
    opacity: 0.85;
    transition: transform 0.15s ease, opacity 0.15s ease, color 0.15s ease;
}

.feed-actions i:active {
    transform: scale(1.25);
}

.feed-actions i.liked,
.feed-actions .fa-heart.liked {
    color: var(--primary-color);
    opacity: 1;
}

.feed-content {
    padding: 10px 16px 16px;
}

.feed-likes {
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.feed-caption {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.92;
}

.feed-caption strong {
    margin-right: 6px;
    font-weight: 700;
}

.feed-comments-link {
    font-size: 0.8rem;
    opacity: 0.55;
    margin-top: 8px;
    display: inline-block;
    cursor: pointer;
}

.feed-comments-link:active {
    opacity: 0.85;
}

/* Comment Section */
.comment-section {
    padding: 15px;
    border-top: 1px solid var(--glass-border);
}

.comment {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.c-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #475569;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
}

.c-content {
    flex: 1;
    font-size: 0.9rem;
}

.c-content strong {
    font-size: 0.85rem;
    margin-right: 5px;
}

.c-meta {
    display: flex;
    gap: 15px;
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 4px;
}

.comment-input-area {
    display: flex;
    gap: 10px;
    padding: 15px;
    border-top: 1px solid var(--glass-border);
    position: sticky;
    bottom: 0;
    background: var(--bg-color);
}

.comment-input {
    flex: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 10px 15px;
    color: var(--text-color);
    outline: none;
}

.comment-send {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0 10px;
    cursor: pointer;
}

/* Login Page Styles */
.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #1a202c, #2d3748);
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
}

.login-page::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    top: -50px;
    left: -50px;
}

.login-page::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--info-blue);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    bottom: -50px;
    right: -50px;
}

.login-container {
    width: 90%;
    max-width: 400px;
    padding: 40px 30px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
    position: relative;
}

.login-header {
    text-align: center;
    margin-bottom: 10px;
}

.logo-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 15px auto;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
}

.login-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.login-header p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
    opacity: 0.5;
}

.input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 15px 15px 15px 50px;
    border-radius: 15px;
    color: var(--text-color);
    font-size: 1rem;
    outline: none;
    transition: border 0.3s;
}

.input-group input:focus {
    border-color: var(--primary-color);
}

.login-btn {
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.login-btn.primary {
    background: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.login-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 10px 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--glass-border);
}

.login-divider span {
    padding: 0 10px;
    font-size: 0.85rem;
    opacity: 0.6;
}

.google-btn {
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
}

.google-btn img {
    width: 24px;
    height: 24px;
}

.auth-error {
    color: var(--primary-color);
    font-size: 0.85rem;
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
}

/* Register Form Specifics */
.register-scroll-area {
    max-height: 50vh;
    overflow-y: auto;
    padding-right: 5px;
    margin-top: 10px;
}

.register-scroll-area::-webkit-scrollbar {
    width: 4px;
}

.register-scroll-area::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

/* Toast Notifications */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: #0f172a;
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
    opacity: 0;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success {
    border-left-color: var(--success-green);
    color: var(--success-green);
}

.toast.error {
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

.toast.info {
    border-left-color: var(--info-blue);
    color: var(--info-blue);
}

/* Story Viewer Modal */
.story-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 4000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

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

.story-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 4010;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.story-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 600;
}

.story-author-info img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.story-modal-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.story-modal-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.story-desc {
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 12px 15px;
    border-radius: 12px;
    font-size: 0.95rem;
    text-align: center;
    backdrop-filter: blur(5px);
}

/* Simple fade animation for switching forms */
.login-container {
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.login-container.fade-out {
    opacity: 0;
    transform: translate(-50%, -60%);
    visibility: hidden;
}

.login-container.fade-in {
    opacity: 1;
    transform: translate(-50%, -50%);
    visibility: visible;
}

/* Post Details Enhancements */

/* Hero Image Area */
.detail-hero {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg-color), transparent);
}

.detail-hero-placeholder {
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(249, 115, 22, 0.1));
    font-size: 4rem;
    opacity: 0.4;
    flex-shrink: 0;
}

/* Info Card */
.detail-info-card {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.detail-user-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.detail-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-user-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.detail-user-info strong {
    font-size: 0.95rem;
}

.detail-user-info span {
    font-size: 0.75rem;
    opacity: 0.6;
}

.detail-type-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.detail-description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    border-left: 3px solid var(--primary-color);
    padding-left: 12px;
}

.detail-meta-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.detail-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
}

.detail-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px currentColor;
}

.detail-delete-btn {
    background: rgba(239, 68, 68, 0.15);
    color: var(--primary-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 8px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    transition: background 0.2s;
}

.detail-delete-btn:active {
    background: rgba(239, 68, 68, 0.3);
}

/* Section Title for Map */
.detail-section-title {
    padding: 12px 20px 8px;
    font-weight: 700;
    font-size: 0.85rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Map Banner */
.detail-map-banner {
    width: calc(100% - 40px);
    height: 180px;
    min-height: 180px;
    margin: 0 20px 10px;
    background-color: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    overflow: hidden;
}

/* Actions Row */
.post-actions {
    display: flex;
    gap: 20px;
    padding: 12px 20px;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.action-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s, transform 0.2s;
}

.action-btn:active {
    transform: scale(0.9);
}

.action-btn.liked {
    color: var(--primary-color);
}

/* Comments */
.comments-section {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 60px;
    padding-bottom: 20px;
}

.comment-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.comment-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    border: 1px solid var(--glass-border);
}

.comment-bubble {
    background: var(--card-bg);
    padding: 10px 14px;
    border-radius: 14px;
    border-top-left-radius: 4px;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--glass-border);
}

.comment-author {
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 3px;
    color: var(--primary-color);
}

.comment-input-container {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    border-top: 1px solid var(--glass-border);
    background: var(--card-bg);
    position: sticky;
    bottom: 0;
    flex-shrink: 0;
    z-index: 10;
}

.comment-input-container input {
    flex: 1;
    border-radius: 20px;
    padding: 10px 15px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    outline: none;
}

.comment-input-container input:focus {
    border-color: var(--primary-color);
}

.comment-input-container button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* --- NEW STYLES: Gallery, Lightbox, Medals, Horizontal Scroll --- */

/* Horizontal Scroll Container */
.horizontal-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
}

.horizontal-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

/* Medal Item */
.medal-item {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 15px;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.medal-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.medal-icon-wrapper.gold {
    color: #fbbf24;
    border: 2px solid #fbbf24;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

.medal-icon-wrapper.silver {
    color: #94a3b8;
    border: 2px solid #94a3b8;
    box-shadow: 0 0 15px rgba(148, 163, 184, 0.3);
}

.medal-icon-wrapper.bronze {
    color: #b45309;
    border: 2px solid #b45309;
    box-shadow: 0 0 15px rgba(180, 83, 9, 0.3);
}

.medal-icon-wrapper.special {
    color: #a855f7;
    border: 2px solid #a855f7;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.medal-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-color);
}

.medal-date {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 4px;
}

/* Gallery Slider (Post Detail) */
.gallery-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    width: 100%;
    height: 280px;
    position: relative;
    flex-shrink: 0;
}

.gallery-slider::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.gallery-slide {
    min-width: 100%;
    height: 100%;
    scroll-snap-align: start;
    position: relative;
    cursor: pointer;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-indicators {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 10;
    pointer-events: none;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.3s;
}

.gallery-dot.active {
    background: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Lightbox Overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 5000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    backdrop-filter: blur(5px);
}

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

#lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 1.5rem;
    z-index: 5010;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

/* FORUM STYLES */
.forum-category-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: white;
    transition: background 0.2s;
}

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

.forum-category-item:last-child {
    border-bottom: none;
}

.cat-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-right: 15px;
    color: var(--primary-color);
}

.cat-info {
    flex: 1;
}

.cat-info h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.cat-info p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.6;
}

.cat-stats {
    opacity: 0.5;
    font-size: 0.9rem;
}

.forum-topic-item {
    display: flex;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: white;
}

.forum-topic-item:last-child {
    border-bottom: none;
}

.topic-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.topic-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.topic-details {
    flex: 1;
}

.topic-details h4 {
    margin: 0 0 5px 0;
    font-size: 0.95rem;
}

.topic-meta {
    font-size: 0.75rem;
    opacity: 0.6;
    display: flex;
    gap: 10px;
}

.glass-tooltip {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    box-shadow: var(--glass-shadow);
    border-radius: 8px;
    padding: 5px 10px;
    font-weight: 600;
}

.leaflet-tooltip-left.glass-tooltip::before,
.leaflet-tooltip-right.glass-tooltip::before,
.leaflet-tooltip-top.glass-tooltip::before,
.leaflet-tooltip-bottom.glass-tooltip::before {
    display: none;
}/* MyBB Style Forum Elements */
.tborder {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}
.thead {
    background: rgba(0, 0, 0, 0.4);
    color: white;
    font-weight: 700;
    padding: 10px 15px;
    border-bottom: 1px solid var(--glass-border);
    font-family: 'Outfit', sans-serif;
}
.trow1, .trow2 {
    padding: 15px;
    border-bottom: 1px solid var(--glass-border);
    transition: background 0.2s;
}
.trow1 { background: rgba(255, 255, 255, 0.05); }
.trow2 { background: rgba(255, 255, 255, 0.02); }
.trow1:last-child, .trow2:last-child { border-bottom: none; }
.trow1:hover, .trow2:hover { background: rgba(255, 255, 255, 0.1); cursor: pointer; }

/* Board Row Specifics */
.board-row {
    display: flex;
    align-items: center;
    gap: 15px;
}
.board-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}
.board-info { flex: 1; min-width: 0; }
.board-info h4 { margin: 0 0 5px 0; font-size: 1.05rem; }
.board-info p { margin: 0; font-size: 0.8rem; opacity: 0.6; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.board-stats {
    text-align: center;
    flex-shrink: 0;
    min-width: 50px;
}
.board-stats span { font-weight: bold; font-size: 1.1rem; }
.board-stats small { font-size: 0.7rem; opacity: 0.6; }

/* Thread Row */
.thread-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.thread-icon {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #fbbf24;
    flex-shrink: 0;
}
.thread-info { flex: 1; min-width: 0; }
.thread-info h4 { margin: 0 0 3px 0; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.thread-meta { font-size: 0.75rem; opacity: 0.6; }
.thread-replies { width: 60px; text-align: center; font-size: 0.9rem; font-weight: bold; opacity: 0.8; }

/* Postbit (Thread View) */
.postbit {
    display: flex;
    flex-direction: column;
}
.postbit-author {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--glass-border);
}
.postbit-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--glass-border);
}
.postbit-avatar img { width: 100%; height: 100%; object-fit: cover; }
.postbit-userinfo h4 { margin: 0 0 3px 0; color: var(--primary-color); }
.postbit-userinfo span { font-size: 0.75rem; opacity: 0.5; }
.postbit-content {
    padding: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    min-height: 100px;
}
.postbit-meta {
    padding: 10px 15px;
    font-size: 0.75rem;
    opacity: 0.5;
    border-top: 1px dotted var(--glass-border);
    display: flex;
    justify-content: space-between;
}
