/*
 * Desktop Layout Styles
 * Optimized for desktop screens with full functionality
 */

/* Desktop-specific enhancements */
.device-desktop .css-1geg79l {
    height: 70px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.device-desktop .site-main {
    margin-left: 240px;
    transition: margin-left 0.3s ease;
}

.device-desktop .Sidebar_main___ex0V {
    width: 240px;
    transform: translateX(0);
}

/* Enhanced desktop grid layouts */
.device-desktop .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.device-desktop .TagPage_gridContainer__cOmpI {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Desktop hover effects */
.device-desktop .GameThumb_gameThumbLinkDesktop__wcir5:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Desktop carousel enhancements */
.device-desktop .games-carousel li {
    flex: 0 0 280px;
}

.device-desktop .GameCarousel_primeCarouselContainer__QZ_gh {
    gap: 30px;
}

/* Desktop header enhancements */
.device-desktop .header-actions {
    min-width: 350px;
}

.device-desktop .TopSearch_topSearchForm__b9Z8c {
    min-width: 400px;
    max-width: 600px;
}

/* Desktop notifications */
.device-desktop .user-dropdown {
    width: 320px;
}

.device-desktop .notifications-dropdown {
    width: 360px;
}

/* Desktop animations */
.device-desktop .game-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Desktop-specific footer */
.device-desktop .site-footer {
    margin-left: 240px;
    padding: 40px;
}

/* Desktop game detail page */
.device-desktop .GamePageDesktop_main__fSalE {
    max-width: 1400px;
    padding: 30px;
}

/* Desktop performance optimizations */
.device-desktop .game-card:hover .card-image {
    transform: scale(1.05);
}

.device-desktop .favorite-btn {
    transition: all 0.2s ease;
}

.device-desktop .favorite-btn:hover {
    transform: scale(1.1);
}