.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1001;
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.show-servers-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    align-items: center;
    justify-content: center;
}
.mobile-right-sidebar {
    position: fixed;
    right: -280px;
    top: 0;
    width: 280px;
    height: 100vh;
    background: rgba(0,0,0,0.95);
    border-left: 3px solid #ff6600;
    padding: 20px;
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}
.mobile-right-sidebar.active {
    right: 0;
}
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        width: 280px;
        transition: transform 0.3s ease;
        position: fixed;
        z-index: 1000;
        background: rgba(0,0,0,0.95);
        box-shadow: 2px 0 10px rgba(0,0,0,0.5);
    }
    .sidebar.active {
        transform: translateX(0);
    }
    .right-sidebar {
        display: none;
    }
    .content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px;
        width: 100%;
    }
    .mobile-menu-btn {
        display: block;
    }
    .show-servers-btn {
        display: flex;
    }
    .cover-image {
        margin-top: 50px;
        height: 150px;
    }
    .page-content {
        padding: 15px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .gallery-item img {
        height: 180px;
    }
    .review-card {
        padding: 15px;
    }
    .review-header {
        flex-direction: column;
        gap: 8px;
    }
    .review-form {
        padding: 15px;
    }
    .shop-container {
        grid-template-columns: 1fr;
    }
    .modal-content {
        margin: 20px;
        padding: 15px;
    }
    .photo-thumbs img {
        width: 50px;
        height: 50px;
    }
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    .photo-grid {
        grid-template-columns: 1fr;
    }
}
