/* ========================================
   BAZZO GAMES - SYSTEM FONTS ONLY
   NO GOOGLE FONTS, NO LOCAL FONTS
   ======================================== */

/* ----- GLOBAL RESET ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif !important;
    background: #0b0d1a;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ----- HEADER / NAVBAR ----- */
.header {
    position: sticky;
    top: 15px;
    z-index: 999;
    margin: 0 auto;
    width: calc(100% - 30px);
    max-width: 1400px;
    background: rgba(15, 18, 35, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 10px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
}

.header-logo a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-weight: 800 !important;
    font-size: 22px !important;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-transform: uppercase;
    white-space: nowrap;
}

.header-logo a span {
    color: #7c8cff;
    text-shadow: 0 0 20px rgba(124, 140, 255, 0.3);
}

.header-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-nav ul li a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 0.8px;
    padding: 8px 18px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    border-radius: 10px;
    transition: 0.25s ease;
    display: block;
}

.header-nav ul li a:hover,
.header-nav ul li a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-actions .icon-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    transition: 0.25s;
    cursor: pointer;
}

.header-actions .icon-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.header-actions .community-btn {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-weight: 700;
    font-size: 12px;
    padding: 8px 18px;
    background: #6366f1;
    color: #ffffff;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.25s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.header-actions .community-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.header-actions .community-btn i {
    margin-right: 6px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2.5px;
    background: #ffffff;
    border-radius: 4px;
    transition: 0.3s;
}

/* ----- SEARCH MODAL ----- */
.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 9, 22, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px;
}

.search-modal.open {
    display: flex;
}

.search-modal-content {
    background: #131541;
    width: 100%;
    max-width: 680px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 32px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.search-modal-content .search-input-wrap {
    position: relative;
    margin-bottom: 20px;
}

.search-modal-content .search-input-wrap i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #6366f1;
    font-size: 18px;
}

.search-modal-content .search-input-wrap input {
    width: 100%;
    padding: 16px 20px 16px 55px;
    background: #0d1127;
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.search-modal-content .search-input-wrap input:focus {
    border-color: rgba(255, 107, 0, 0.4);
}

.search-modal-content .search-input-wrap .close-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.3);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}

.search-modal-content .search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.search-modal-content .search-tags span {
    background: #0d1127;
    color: rgba(255, 255, 255, 0.5);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.25s;
}

.search-modal-content .search-tags span:hover {
    background: rgba(255, 107, 0, 0.12);
    color: #ff6b00;
    border-color: rgba(255, 107, 0, 0.2);
    transform: translateY(-2px);
}

/* ----- SEARCH RESULTS DROPDOWN ----- */
.search-results-dropdown {
    display: none;
    margin-top: 16px;
    max-height: 400px;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 12px;
}

.search-results-dropdown.open {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: #fff;
    border: 1px solid transparent;
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 107, 0, 0.15);
    transform: translateX(4px);
}

.search-result-item .result-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #0d1127;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.search-result-item .result-info {
    flex: 1;
    min-width: 0;
}

.search-result-item .result-title {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    margin-bottom: 2px;
}

.search-result-item .result-title .highlight {
    color: #ff6b00;
}

.search-result-item .result-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.search-result-item .result-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 999px;
    background: rgba(255, 107, 0, 0.12);
    color: #ff6b00;
    flex-shrink: 0;
}

.search-result-item .result-arrow {
    color: rgba(255, 255, 255, 0.15);
    font-size: 14px;
    transition: 0.2s;
    flex-shrink: 0;
}

.search-result-item:hover .result-arrow {
    color: rgba(255, 255, 255, 0.4);
    transform: translateX(4px);
}

.search-no-results {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.3);
}

.search-no-results .icon {
    font-size: 40px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.search-no-results .text {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.search-no-results .hint {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.2);
    margin-top: 4px;
}

.search-results-dropdown::-webkit-scrollbar {
    width: 4px;
}
.search-results-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}
.search-results-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

/* ----- HERO SLIDER ----- */
.hero-section {
    padding: 20px 0 40px;
}

.hero-slider {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    position: relative;
}

.hero-slide {
    min-height: 676px; /* 30% INCREASE from 520px */
    display: flex !important;
    align-items: center;
    padding: 70px 80px; /* Increased padding */
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 10, 20, 0.75) 0%, rgba(8, 10, 20, 0.3) 60%, rgba(8, 10, 20, 0.05) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-slide-content .badge {
    display: inline-block;
    padding: 6px 18px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255, 107, 0, 0.12);
    border: 1px solid rgba(255, 107, 0, 0.2);
    color: #ff6b00;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-slide-content h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.08;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-slide-content h2 span {
    color: #ff6b00;
}

.hero-slide-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 28px;
}

.hero-slide-content .btn-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-slide-content .btn-primary {
    padding: 12px 30px;
    background: #ff6b00;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-slide-content .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.35);
    background: #ff7a1a;
}

.hero-slide-content .btn-secondary {
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    transition: 0.3s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-slide-content .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px);
}

.hero-slider .owl-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.hero-slider .owl-dots button {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transition: 0.3s;
    border: none;
    padding: 0;
}

.hero-slider .owl-dots button.active {
    width: 32px;
    background: #ff6b00;
    border-radius: 4px;
}

/* ----- GAME CARDS GRID ----- */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 10px;
}

.section-header .title-group .badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ff6b00;
    background: rgba(255, 107, 0, 0.08);
    padding: 4px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 107, 0, 0.1);
    margin-bottom: 6px;
}

.section-header .title-group h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.section-header .title-group p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 15px;
    margin-top: 2px;
}

.section-header .view-all {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    transition: 0.3s;
    white-space: nowrap;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

.section-header .view-all:hover {
    color: #ffffff;
    border-bottom-color: #ff6b00;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}

.game-card {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: #13162e;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    aspect-ratio: 2 / 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.45s ease;
}

.game-card .game-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 8px 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition: 0.3s ease;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.game-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 107, 0, 0.25);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 107, 0, 0.05);
}

.game-card:hover img {
    transform: scale(1.06);
}

.game-card:hover .game-title {
    opacity: 1;
    transform: translateY(0);
}

/* ----- FOOTER ----- */
.footer {
    background: #070720;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: 20px;
}

.footer p {
    color: rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

.footer .fa-heart {
    color: #ff6b00;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
    }
    .hero-slide {
        min-height: 598px; /* 30% INCREASE from 460px */
        padding: 60px 65px;
    }
    .hero-slide-content h2 {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .header-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 20px;
        right: 20px;
        background: #131541;
        border-radius: 16px;
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        flex-direction: column;
        align-items: stretch;
    }
    .header-nav.open {
        display: flex;
    }
    .header-nav ul {
        flex-direction: column;
        gap: 4px;
    }
    .header-nav ul li a {
        padding: 12px 16px;
        text-align: center;
    }
    .mobile-toggle {
        display: flex;
    }
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    .hero-slide {
        min-height: 520px; /* 30% INCREASE from 400px */
        padding: 50px 50px;
    }
    .hero-slide-content h2 {
        font-size: 36px;
    }
    .hero-slide-content p {
        font-size: 16px;
    }
    .header-actions .community-btn span {
        display: none;
    }
    .header-actions .community-btn i {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .hero-slide {
        min-height: 455px; /* 30% INCREASE from 350px */
        padding: 40px 30px;
    }
    .hero-slide-content h2 {
        font-size: 30px;
    }
    .hero-slide-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .hero-slide-content .btn-primary,
    .hero-slide-content .btn-secondary {
        padding: 10px 20px;
        font-size: 13px;
    }
    .search-modal-content {
        margin: 0 15px;
        padding: 24px 20px;
    }
    .header-inner {
        padding: 0 15px;
    }
    .header-logo a {
        font-size: 18px;
    }
    .section-header .title-group h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .hero-slide {
        min-height: 390px; /* 30% INCREASE from 300px */
        padding: 30px 25px;
    }
    .hero-slide-content h2 {
        font-size: 26px;
    }
    .hero-slide-content .badge {
        font-size: 10px;
        padding: 4px 14px;
        margin-bottom: 12px;
    }
    .hero-slide-content .btn-group {
        gap: 10px;
    }
    .hero-slide-content .btn-primary,
    .hero-slide-content .btn-secondary {
        padding: 8px 16px;
        font-size: 12px;
    }
}
/* Game Detail Layout - Photo Left, Text Right */
.game-detail-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.game-detail-cover {
    flex: 0 0 auto;
    order: 1;
}

.game-detail-info {
    flex: 1;
    min-width: 280px;
    order: 2;
}

.game-detail-cover .game-cover {
    max-width: 220px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.breadcrumb {
    margin-bottom: 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.2);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb span {
    margin: 0 8px;
}

.breadcrumb span:last-child {
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive - Stack on mobile */
@media (max-width: 768px) {
    .game-detail-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .game-detail-cover {
        order: 1;
    }
    
    .game-detail-info {
        order: 2;
        text-align: center;
    }
    
    .game-detail-cover .game-cover {
        max-width: 160px;
    }
    
    .game-detail-hero .game-title {
        font-size: 28px;
    }
    
    .game-detail-hero .game-meta {
        justify-content: center;
    }
    
    .game-detail-hero .game-badge-group {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .game-detail-cover .game-cover {
        max-width: 140px;
    }
    
    .game-detail-hero .game-title {
        font-size: 24px;
    }
}
/* ========================================
   SEARCH - INCLUDE APPS IN RESULTS
   ======================================== */

/* App search results styling (same as games) */
.search-result-item.app-result .result-icon {
    border-radius: 12px;
}

.search-result-item.app-result .result-badge {
    background: rgba(99, 102, 241, 0.12) !important;
    color: #6366f1 !important;
}
/* ========================================
   CREATIVECONOR-STYLE APP CARDS
   ======================================== */

.app-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    background: #13162e;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    cursor: pointer;
}

/* Background Image - Zoomed and Blurred */
.app-card .app-bg {
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    object-fit: cover;
    filter: blur(12px) brightness(0.5) saturate(1.2);
    transform: scale(1.1);
    transition: 0.5s ease;
}

/* Overlay gradient */
.app-card .app-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
    transition: 0.4s ease;
}

/* App Icon Wrapper - Centered */
.app-card .app-icon-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80px;
    height: 80px;
    transition: 0.4s ease;
}

/* App Icon */
.app-card .app-icon {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
    transition: 0.4s ease;
}

/* App Details - Hidden by default, shown on hover */
.app-card .app-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 16px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
    text-align: center;
}

.app-card .app-details .app-name {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

.app-card .app-details .app-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 400;
    margin-bottom: 8px;
}

.app-card .app-details .app-download {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 999px;
    color: #ff6b00;
    font-size: 11px;
    font-weight: 600;
    transition: 0.3s;
}

/* Hover Effects */
.app-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 107, 0, 0.08);
}

.app-card:hover .app-bg {
    transform: scale(1.2);
    filter: blur(10px) brightness(0.6);
}

.app-card:hover .app-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.app-card:hover .app-icon-wrapper {
    transform: translate(-50%, -55%) scale(1.05);
}

.app-card:hover .app-icon {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.app-card:hover .app-details {
    opacity: 1;
    transform: translateY(0);
}

/* Hover: Download button animation */
.app-card:hover .app-details .app-download {
    background: rgba(255, 107, 0, 0.25);
    border-color: rgba(255, 107, 0, 0.4);
}

/* ----- RESPONSIVE ----- */
@media (max-width: 768px) {
    .app-card .app-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    .app-card .app-icon {
        border-radius: 16px;
    }
    .app-card .app-details .app-name {
        font-size: 12px;
    }
    .app-card .app-details .app-desc {
        font-size: 10px;
    }
    .app-card .app-details .app-download {
        font-size: 10px;
        padding: 3px 12px;
    }
}

@media (max-width: 480px) {
    .app-card .app-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    .app-card .app-icon {
        border-radius: 14px;
    }
    .app-card .app-details .app-name {
        font-size: 11px;
    }
    .app-card .app-details .app-desc {
        font-size: 9px;
    }
    .app-card .app-details .app-download {
        font-size: 9px;
        padding: 2px 10px;
    }
}