* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --primary-color: #4400ff;
    --secondary-color: #5856D6;
    --text-color: #1D1D1F;
    --text-light: #86868B;
    --bg-color: #e9f1e7;
    --bg-light: #F5F5F7;
    --border-color: #D2D2D7;
    --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 6px 18px rgba(0, 0, 0, 0.16);
    --transition: all 0.25s ease
}

html {
    scroll-behavior: smooth
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    font-size: 16px
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px
}

.header {
    background-color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px)
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: -0.5px
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition)
}

.nav-link:hover {
    color: var(--primary-color)
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition)
}

.nav-link:hover::after {
    width: 100%
}

.nav-item {
    position: relative
}

.nav-parent {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

.nav-parent:hover {
    color: var(--primary-color)
}

.nav-parent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition)
}

.nav-parent:hover::after {
    width: 100%
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    min-width: 220px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    list-style: none;
    padding: 8px 0;
    display: none;
    z-index: 1100
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background-color: transparent
}

.nav-dropdown-link {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    color: var(--text-color);
    text-decoration: none;
    white-space: nowrap
}

.nav-dropdown-link:hover {
    background-color: var(--bg-light);
    color: var(--primary-color)
}

.nav-has-children:hover .nav-dropdown {
    display: block
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition)
}

.hero {
    background: linear-gradient(135deg, #f0f7ff 0, #fafafa 100%);
    padding: 60px 0;
    text-align: center
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
    color: var(--text-color)
}

.hero-search {
    max-width: 800px;
    margin: 0 auto
}

.search-box-container {
    position: relative;
    margin-bottom: 24px
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none
}

.hero-search-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    outline: none;
    transition: var(--transition)
}

.hero-search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1)
}

.hero-search-button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
    transition: var(--transition);
    white-space: nowrap
}

.hero-search-button:hover {
    background: #0051D5;
    transform: translateY(-50%) translateY(-1px)
}

.hero-search-button:active {
    transform: translateY(-50%) translateY(0);
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.2)
}

.search-suggestions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.suggestion-tag {
    padding: 8px 16px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-color);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition)
}

.suggestion-tag:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    text-decoration: none
}

.main-content {
    padding: 60px 0 40px
}

.section {
    margin-bottom: 60px
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px
}

#featuredCollections .section-header {
    justify-content: center;
    text-align: center
}

#featuredCollections .section-header>div {
    width: 100%
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color)
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 8px
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: stretch
}

.collection-card {
    background-color: #fff;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%
}

.collection-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover)
}

#featuredCollections .collection-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-items: center;
    align-items: center;
    margin-bottom: 16px
}

#featuredCollections .collection-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 24px
}

#featuredCollections .collection-icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6b7280
}

#featuredCollections .collection-icon-svg svg {
    width: 22px;
    height: 22px
}

#featuredCollections .icon-document {
    color: #6366f1
}

#featuredCollections .icon-calendar {
    color: #0ea5e9
}

#featuredCollections .icon-file {
    color: #94a3b8
}

#featuredCollections .icon-clock {
    color: #f97316
}

#featuredCollections .icon-palette {
    color: #ec4899
}

#featuredCollections .icon-pencil {
    color: #f97316
}

#featuredCollections .icon-ruler {
    color: #8b5cf6
}

#featuredCollections .icon-square {
    color: #6b7280
}

#featuredCollections .icon-check {
    color: #22c55e
}

#featuredCollections .icon-folder {
    color: #fbbf24
}

#featuredCollections .icon-bar-chart {
    color: #0ea5e9
}

#featuredCollections .icon-lock {
    color: #f59e0b
}

#featuredCollections .icon-shield {
    color: #3b82f6
}

#featuredCollections .icon-key {
    color: #fbbf24
}

#featuredCollections .icon-globe {
    color: #2563eb
}

.collection-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color)
}

.collection-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1
}

#featuredCollections .collection-description {
    flex: 1;
    margin-bottom: 24px
}

.collection-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    margin-top: auto
}

#featuredCollections .collection-btn {
    margin-top: auto
}

.collection-btn:hover {
    background-color: #0051D5
}

.editors-choice-container {
    margin-bottom: 60px;
    position: relative
}

.editors-choice-carousel {
    display: block;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    min-height: 300px
}

.editors-choice-card {
    min-width: 100%;
    flex-shrink: 0;
    display: block;
    border-radius: 20px;
    padding: 32px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 1;
    text-decoration: none
}

.editors-choice-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
    animation: fadeInSlide 0.5s ease
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(20px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.editors-choice-bg-1 {
    background: linear-gradient(135deg, #4f5fe0 0, #5b3fb0 100%)
}

.editors-choice-bg-2 {
    background: linear-gradient(135deg, #e46af6 0, #ec3b55 100%)
}

.editors-choice-bg-3 {
    background: linear-gradient(135deg, #2f8cf4 0, #00c4e8 100%)
}

.editors-choice-badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
    color: #fff
}

.editors-choice-card-content {
    display: flex;
    align-items: flex-start;
    gap: 24px
}

.editors-choice-card-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    object-fit: cover;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3)
}

.editors-choice-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.editors-choice-card-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #fff !important;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    text-decoration: none
}

.editors-choice-card-reason {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    text-decoration: none
}

.editors-choice-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15)
}

.editors-choice-card-btn:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2)
}

.editors-choice-nav {
    position: static;
    margin-top: 0
}

.editors-choice-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background-color: #fff;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    pointer-events: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10
}

.editors-choice-prev {
    left: -18px
}

.editors-choice-next {
    right: -18px
}

.editors-choice-nav-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1)
}

.editors-choice-dots {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center
}

.editors-choice-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0
}

.editors-choice-dot.active {
    background-color: var(--primary-color);
    width: 24px;
    border-radius: 5px
}

.time-tabs,
.trending-tabs {
    display: flex;
    gap: 8px;
    background-color: var(--bg-light);
    padding: 4px;
    border-radius: 8px
}

.time-tab-btn,
.trending-tab-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: var(--text-light);
    font-weight: 500;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition)
}

.time-tab-btn.active,
.trending-tab-btn.active {
    background-color: var(--primary-color);
    color: #fff
}

.time-tab-btn:hover:not(.active),
.trending-tab-btn:hover:not(.active) {
    color: var(--text-color)
}

.trending-content {
    margin-top: 24px
}

.trending-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 24px;
    letter-spacing: -0.5px
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 24px
}

.app-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    min-height: 140px;
    position: relative;
    overflow: hidden
}

.app-card-bg-1 {
    background: linear-gradient(135deg, #fef7f0 0, #fff 50%, #f9fafb 100%)
}

.app-card-bg-2 {
    background: linear-gradient(45deg, #f0f7ff 0, #fff 50%, #fafbfc 100%)
}

.app-card-bg-3 {
    background: linear-gradient(90deg, #f5f0ff 0, #fff 50%, #faf9fb 100%)
}

.app-card-bg-4 {
    background: linear-gradient(180deg, #f0fff4 0, #fff 50%, #f9fbfa 100%)
}

.app-card-bg-5 {
    background: linear-gradient(225deg, #fff5f0 0, #fff 50%, #faf9f7 100%)
}

.app-card-bg-6 {
    background: linear-gradient(270deg, #f0f9ff 0, #fff 50%, #f8fafb 100%)
}

.app-card-bg-7 {
    background: radial-gradient(circle at top left, #fef3f2 0, #fff 50%, #faf9f8 100%)
}

.app-card-bg-8 {
    background: radial-gradient(circle at bottom right, #f0fdf4 0, #fff 50%, #f9fbf9 100%)
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease
}

.app-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 122, 255, 0.2)
}

.app-card:hover::before {
    opacity: 1
}

.app-card-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    min-height: 72px;
    object-fit: cover;
    background: linear-gradient(135deg, #f5f7fa 0, #e8ecf1 100%);
    border-radius: 18px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.app-card:hover .app-card-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12)
}

.app-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0
}

.app-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 2px
}

.app-card-title {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-color);
    letter-spacing: -0.3px;
    flex: 1;
    min-width: 0
}

.app-card-developer {
    font-size: 14px;
    color: var(--text-light)
}

.app-card-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 2px 0 4px 0;
    letter-spacing: -0.1px
}

.app-card-about {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 2px 0 4px 0;
    letter-spacing: -0.1px
}

.app-card-rating-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    height: 32px;
    min-width: 68px;
    background: linear-gradient(135deg, #d1fae5 0, #a7f3d0 100%);
    color: #065f46;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 1px 3px rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.15);
    flex-shrink: 0;
    letter-spacing: 0.2px
}

.app-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
    margin-top: 2px
}

.app-card-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.app-card-meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    opacity: 0.8
}

.app-card-meta-icon svg {
    width: 16px;
    height: 16px
}

.app-card-meta-installs {
    font-weight: 500;
    color: #6b7280
}

.app-card-details-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0, #0051D5 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.25);
    letter-spacing: 0.2px;
    margin-top: 4px
}

.app-card-details-btn:hover {
    background: linear-gradient(135deg, #0051D5 0, #003d9e 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.35)
}

.app-card-details-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.25)
}

.load-more-container {
    text-align: center;
    margin-top: 40px
}

.load-more-btn {
    padding: 14px 28px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition)
}

.load-more-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12)
}

.skeleton-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 16px;
    padding: 28px 24px;
    animation: pulse 1.5s ease-in-out infinite
}

.skeleton-icon,
.skeleton-line {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%
}

.skeleton-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    flex-shrink: 0
}

.skeleton-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.skeleton-line {
    height: 16px;
    border-radius: 4px
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.6
    }
}

.footer {
    background-color: #2d3748;
    padding: 60px 0 24px;
    color: #e2e8f0
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 80px;
    row-gap: 40px;
    margin-bottom: 40px
}

.footer-section {
    display: flex;
    flex-direction: column
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff
}

.footer-description {
    color: #cbd5e0;
    line-height: 1.6;
    font-size: 14px
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-links li {
    margin-bottom: 12px
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px
}

.footer-links a:hover {
    color: #fff
}

.footer-security {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
    flex-wrap: wrap
}

.security-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e0;
    font-size: 14px
}

.security-item svg {
    color: #48bb78
}

.footer-bottom {
    text-align: center;
    color: #cbd5e0;
    font-size: 14px
}

.footer-disclaimer {
    font-size: 12px;
    color: #a0aec0;
    margin-top: 12px
}

@media (max-width:768px) {
    .nav {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        background-color: var(--bg-color);
        border-bottom: 1px solid var(--border-color);
        transition: var(--transition);
        z-index: 999
    }

    .nav.active {
        left: 0
    }

    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 16px
    }

    .nav-item {
        width: 100%
    }

    .nav-parent {
        width: 100%;
        text-align: left;
        padding: 8px 0
    }

    .nav-dropdown {
        position: static;
        display: none;
        margin-top: 8px;
        margin-left: 16px;
        box-shadow: none;
        background-color: transparent;
        padding: 0;
        border-left: 2px solid var(--border-color);
        padding-left: 16px
    }

    .nav-has-children.active .nav-dropdown {
        display: block
    }

    .nav-dropdown-link {
        padding: 6px 0;
        font-size: 14px
    }

    .mobile-menu-toggle {
        display: flex
    }

    .hero {
        min-height: 380px
    }

    .hero-title {
        font-size: 32px;
        padding: 0 20px
    }

    .hero-search {
        padding: 0 20px
    }

    .collections-grid {
        grid-template-columns: 1fr
    }

    .apps-grid {
        grid-template-columns: 1fr
    }

    .app-card {
        flex-direction: column;
        align-items: flex-start
    }

    .editors-choice-card {
        padding: 24px
    }

    .editors-choice-card-content {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .editors-choice-card-icon {
        width: 64px;
        height: 64px;
        min-width: 64px;
        min-height: 64px
    }

    .editors-choice-card-title {
        font-size: 24px
    }

    .editors-choice-card-reason {
        font-size: 14px
    }

    .editors-choice-card-btn {
        align-self: center
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px
    }
}

@media (max-width:480px) {
    .container {
        padding: 0 16px
    }

    .hero {
        padding: 40px 0
    }

    .hero-title {
        font-size: 28px
    }

    .hero-search-button {
        padding: 8px 14px;
        font-size: 13px;
        height: 40px
    }
}