    .st-card {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 20px;
        padding: 1.8rem;
        box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
        margin-bottom: 1.5rem;
    }

    .grid {
        display: grid;
    }

    @media (max-width: 992px) {
        .grid[style*="grid-template-columns"] {
            grid-template-columns: 1fr !important;
        }
    }

    .socket-row {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 1.2rem;
        background: var(--bg-soft);
        border-radius: 14px;
        margin-bottom: 0.8rem;
        border: 1px solid var(--border-color);
        transition: 0.3s;
    }

    .socket-row:hover {
        background: rgba(16, 185, 129, 0.05);
        transform: translateX(5px);
    }

    .socket-icon {
        width: 44px;
        height: 44px;
        background: var(--primary-color);
        color: var(--text-light);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
    }

    .map-box {
        height: 260px;
        border-radius: 18px;
        overflow: hidden;
        border: 1px solid var(--border-color);
    }

    .comment-item {
        padding: 1.5rem;
        background: var(--bg-muted);
        border-radius: 15px;
        margin-bottom: 1rem;
        border: 1px solid var(--border-color);
        transition: 0.3s;
    }

    .comment-item:hover {
        transform: translateX(10px);
        background: rgba(16, 185, 129, 0.03) !important;
    }

    .star-rating {
        color: var(--warning-text);
        font-size: 0.8rem;
    }

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

    .form-label {
        display: block;
        font-size: 0.65rem;
        color: var(--theme-text-muted);
        font-weight: 950;
        margin-bottom: 8px;
        text-transform: uppercase;
    }

    .form-control {
        width: 100%;
        padding: 12px 16px;
        border-radius: 10px;
        border: 1px solid var(--border-color);
        background: var(--bg-card);
        color: var(--text-light);
        outline: none;
        font-size: 0.9rem;
    }

    .form-control:focus {
        border-color: var(--primary-color);
    }

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

    .custom-scroll::-webkit-scrollbar-track {
        background: transparent;
    }

    .custom-scroll::-webkit-scrollbar-thumb {
        background: rgba(16, 185, 129, 0.2);
        border-radius: 10px;
    }

    .custom-select-container.open .custom-options,
    .custom-select-container.active .custom-options {
        display: block !important;
    }

    /* MAP MAXIMIZE BUTTON - MASTER STANDART */
    .map-container-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .map-maximize-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 1001;
        background: var(--bg-card);
        color: var(--text-main);
        border: none;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .map-maximize-btn:hover {
        transform: translateY(-2px);
        background: var(--primary-color);
        color: var(--text-light);
    }

    .map-fullscreen-active {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        z-index: 10000000 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        background: var(--bg-main);
    }

    .map-fullscreen-active .map-box {
        height: 100vh !important;
        width: 100vw !important;
        border-radius: 0 !important;
        border: none !important;
    }

    /* Stacking Context Fix: Harita tam ekran olduğunda kapsayıcıdaki transformu kaldır */
    body.map-fs-mode .animate-fade-in {
        transform: none !important;
        filter: none !important;
        perspective: none !important;
    }

    body.map-fs-mode .st-card {
        transform: none !important;
    }

    body.map-fs-mode header, 
    body.map-fs-mode .site-notif-bar {
        display: none !important;
    }

    body.map-fs-mode .map-maximize-btn {
        position: fixed !important;
        z-index: 10000001 !important; /* Haritanın üzerinde kalmalı */
        top: 30px !important;
        right: 30px !important;
    }

    @media (max-width: 768px) {
        .map-maximize-btn {
            top: 10px;
            right: 10px;
            width: 40px;
            height: 40px;
        }
    }
    .breadcrumb {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 2rem;
        padding: 0.8rem 1.2rem;
        background: var(--bg-card);
        border-radius: 12px;
        border: 1px solid var(--border-color);
        list-style: none;
        font-size: 0.85rem;
        font-weight: 600;
    }

    .breadcrumb li {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--theme-text-muted);
    }

    .breadcrumb li a {
        color: var(--primary-color);
        text-decoration: none;
        transition: 0.3s;
    }

    .breadcrumb li a:hover {
        color: var(--text-light);
        text-decoration: underline;
    }

    .breadcrumb li:after {
        content: "\f105";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        opacity: 0.3;
        font-size: 0.7rem;
    }

    .breadcrumb li:last-child:after {
        display: none;
    }

    .breadcrumb li:last-child {
        color: var(--text-light);
        opacity: 0.8;
    }
    .custom-scroll::-webkit-scrollbar {
        width: 4px;
    }

    .custom-scroll::-webkit-scrollbar-track {
        background: transparent;
    }

    .custom-scroll::-webkit-scrollbar-thumb {
        background: rgba(16, 185, 129, 0.2);
        border-radius: 10px;
    }

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
    }

    .comment-item {
        transition: 0.3s;
    }

    .comment-item:hover {
        transform: translateX(10px);
        background: rgba(16, 185, 129, 0.03) !important;
    }

    /* Kullanıcı Konum Animasyonu */
    .user-pos-marker {
        position: relative;
        width: 18px;
        height: 18px;
    }

    .user-dot {
        position: absolute;
        width: 12px;
        height: 12px;
        background: var(--info-text);
        border: 2px solid #fff;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
        z-index: 2;
    }

    .user-pulse {
        position: absolute;
        width: 24px;
        height: 24px;
        background: rgba(59, 130, 246, 0.4);
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: u-pulse 2s infinite;
        z-index: 1;
    }

    @keyframes u-pulse {
        0% {
            transform: translate(-50%, -50%) scale(1);
            opacity: 0.8;
        }

        100% {
            transform: translate(-50%, -50%) scale(2.5);
            opacity: 0;
        }
    }

    /* Map Markers styled globally in style.css */
