* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, #000000, #000000);
    color: white;
    text-align: center;
    padding: 8px 15px;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.announcement-bar span {
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Header and Navigation */
header {
    background-color: #1AFF64;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.logo i {
    font-size: 2rem;
    margin-right: 10px;
    color: #fff;
}

.menu-toggle {
    font-size: 1.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: #1AFF64;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease;
    z-index: 1000;
    padding-top: 60px;
}

.side-menu.active {
    left: 0;
}

.side-menu ul {
    list-style: none;
}

.side-menu ul li {
    padding: 15px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.side-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    transition: transform 0.3s ease;
}

.side-menu ul li a:hover {
    transform: translateX(10px);
}

.side-menu ul li i {
    margin-right: 15px;
    width: 25px;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* Banner Slider - Updated for perfect 16:9 aspect ratio */
.banner-container {
    max-width: 1200px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    aspect-ratio: 12/5; /* Perfect 12:5 aspect ratio */
    width: 100%;
}

.banner-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease;
}

.banner {
    flex: 0 0 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-1 {
    background-image: url('Banner 1.webp');
}

.banner-2 {
    background-image: url('Banner 2.webp');
}

.banner-3 {
    background-image: url('Banner 3.webp');
}

.banner-4 {
    background-image: url('Banner 4.webp');
}

.banner-5 {
    background-image: url('Banner 5.webp');
}

/* Search Section - Updated: radius only, no shadow by default */
.search-section {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.search-container {
    display: flex;
    justify-content: center;
}

.search-box {
    display: flex;
    width: 100%;
    max-width: 600px;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: none;
    transition: box-shadow 0.3s;
}

.search-box:hover,
.search-box:focus-within,
.search-box:active {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.search-box input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 1rem;
    outline: none;
    background: white;
}

.search-box button {
    padding: 15px 25px;
    background-color: #1AFF64;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.search-box button:hover {
    background-color: #16e057;
}

/* Categories */
.categories {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.categories h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.8rem;
}

.category-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
    scrollbar-width: thin;
    -ms-overflow-style: none;
}

.category-scroll::-webkit-scrollbar {
    height: 6px;
}

.category-scroll::-webkit-scrollbar-thumb {
    background: #1AFF64;
    border-radius: 10px;
}

.category-item {
    flex: 0 0 auto;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    box-shadow: none;
}

.category-item:hover,
.category-item:active,
.category-item:focus,
.category-item.active {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.category-item:hover {
    background-color: #f0fff5;
}

.category-item.active {
    background-color: #1AFF64;
    color: white;
}

.category-item i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* New Apps Section - Updated with all corners rounded */
.new-apps-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.new-apps-section h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
}

.new-apps-section h2 i {
    color: #1AFF64;
    margin-right: 10px;
}

.new-apps-container {
    position: relative;
}

.new-apps-scroll {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px 5px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.new-apps-scroll::-webkit-scrollbar {
    display: none;
}

/* Google Play Style New Cards - All corners rounded including banner */
.new-app-card {
    flex: 0 0 auto;
    width: 280px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: none;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.new-app-card:hover,
.new-app-card:active,
.new-app-card:focus {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.new-app-banner {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 16px; /* All corners rounded */
}

.new-app-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4757;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 2;
    border: 2px solid #ffffff;
}

.new-app-details {
    padding: 15px;
    border-radius: 0 0 16px 16px;
}

.new-app-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.new-app-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.new-app-text {
    flex: 1;
}

.new-app-name {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.new-app-developer {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
}

.new-app-rating {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.new-app-rating-stars {
    color: #ffc107;
    margin-right: 5px;
}

.new-app-rating-value {
    font-size: 0.8rem;
    color: #666;
}

.new-app-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #666;
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    opacity: 0.8;
}

.scroll-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.scroll-left {
    left: -20px;
}

.scroll-right {
    right: -20px;
}

.scroll-arrow i {
    color: #1AFF64;
    font-size: 1.2rem;
}

/* Apps Grid - Updated for 1 app on mobile, 3 on desktop */
.apps-section {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.apps-section h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.8rem;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.app-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: none;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 15px;
}

.app-card:hover,
.app-card:active,
.app-card:focus {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

/* App Image Container - Updated for platform badges */
.app-image-container {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    margin-right: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-image {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
}

/* Platform Badge - Small circle on top left of logo */
.platform-badge {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1AFF64, #00ff51);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    z-index: 2;
    border: 2px solid white;
}

/* Platform Badge for Windows */
.platform-badge.windows {
    background: linear-gradient(135deg, #0078d7, #0088ff);
}

/* Platform Badge for Android */
.platform-badge.android {
    background: linear-gradient(135deg, #00ff73, #02ce39);
}

/* Platform Badge for both platforms */
.platform-badge.both {
    background: linear-gradient(135deg, #1AFF64, #0078d7);
}

/* Center Badge - Small badge centered below logo */
.center-badge {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff4757, #ff3838);
    color: white;
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 0.6rem;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
    white-space: nowrap;
    line-height: 1.2;
}

/* Center Badge variants */
.center-badge.premium {
    background: linear-gradient(135deg, #ffd700, #ffa500);
}

.center-badge.pro {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.center-badge.mod {
    background: linear-gradient(135deg, #ff4757, #ff3838);
}

/* Updated Badge - Rounded box with low opacity */
        .updated-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(26, 255, 100, 0.2);
            color: #00d343;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: bold;
            z-index: 2;
        }

/* Trending Badge for Apps */
.trending-app-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff0015, #ff0000);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 2;
    border: 2px solid #ffffff;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.app-details {
    flex: 1;
}

.app-name {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-rating {
    color: #ffc107;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.app-rating i {
    margin-right: 3px;
}

.app-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: #666;
}

/* Nothing Found Message */
.nothing-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    box-shadow: none;
}

.nothing-found.hidden {
    display: none;
}

.nothing-found i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
    display: block;
}

.nothing-found h3 {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 10px;
}

.nothing-found p {
    color: #999;
    font-size: 1rem;
}

/* Search More Button */
        .search-more-container {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            margin-bottom: 20px;
        }

        .search-more-btn {
            background: linear-gradient(135deg, #1AFF64, #16e057);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(26, 255, 100, 0.3);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .search-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(26, 255, 100, 0.4);
        }

        .search-more-btn:active {
            transform: translateY(-1px);
        }

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #1AFF64;
}

.footer-column p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #ecf0f1;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #1AFF64;
}

.footer-links i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: background-color 0.3s, transform 0.3s;
}

.social-icons a:hover {
    background-color: #1AFF64;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #bdc3c7;
}

/* Enhanced Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    width: 90%;
    max-width: 600px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(-50px);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #25D366, #1AFF64, #1AFF64, #1AFF64, #1AFF64);
}

.popup-overlay.active .popup {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.popup-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f8f9fa;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    color: #777;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.popup-close-btn:hover {
    color: #1AFF64;
    transform: rotate(90deg);
    background: #fff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.popup-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.popup-header h2 {
    color: #2d3436;
    margin-bottom: 0.8rem;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1AFF64 0%, #1AFF64 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.popup-header p {
    color: #636e72;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.social-link.telegram {
    background: linear-gradient(135deg, #0088cc, #34AADF);
}

.social-link.instagram {
    background: linear-gradient(135deg, #E1306C, #C13584);
}

.social-link.tiktok {
    background: linear-gradient(135deg, #000000, #69C9D0);
}

.social-icon {
    font-size: 1.8rem;
    margin-right: 1.2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
}

.social-text {
    flex: 1;
    font-size: 1.1rem;
}

.social-arrow {
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.social-link:hover .social-arrow {
    opacity: 1;
    transform: translateX(0);
}

.popup-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: #636e72;
    font-size: 0.95rem;
    font-style: italic;
}

/* Responsive Design */
@media (min-width: 768px) {
    .apps-grid, .new-apps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .app-image-container, .new-app-image-container {
        width: 100px;
        height: 100px;
    }
    
    .platform-badge, .new-app-platform-badge {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .center-badge, .new-app-center-badge {
        font-size: 0.65rem;
        padding: 3px 10px;
        bottom: -10px;
    }
    
    .new-app-card {
        width: 320px;
    }
    
    .new-app-banner {
        height: 180px; /* Maintain 16:9 aspect ratio */
    }
    
    .trending-app-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    .pagination {
        gap: 20px;
    }

    .pagination-btn {
        min-width: 140px;
    }
}

@media (max-width: 767px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .category-item {
        padding: 12px 20px;
    }
    
    .announcement-bar {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .app-image-container, .new-app-image-container {
        width: 70px;
        height: 70px;
    }
    
    .platform-badge, .new-app-platform-badge {
        width: 22px;
        height: 22px;
        font-size: 0.6rem;
        top: -4px;
        left: -4px;
    }
    
    .center-badge, .new-app-center-badge {
        font-size: 0.55rem;
        padding: 2px 6px;
        bottom: -6px;
    }
    
    .scroll-arrow {
        display: none;
    }
    
    .trending-app-badge {
        font-size: 0.65rem;
        padding: 3px 7px;
    }

    .pagination {
        gap: 10px;
    }

    .pagination-btn {
        padding: 8px 15px;
        min-width: 100px;
        font-size: 0.9rem;
    }

    .page-info {
        padding: 8px 15px;
        min-width: 120px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .search-box input {
        padding: 12px 15px;
    }
    
    .search-box button {
        padding: 12px 20px;
    }
    
    .category-item {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .app-image-container, .new-app-image-container {
        width: 70px;
        height: 70px;
    }
    
    .platform-badge, .new-app-platform-badge {
        width: 20px;
        height: 20px;
        font-size: 0.55rem;
        top: -3px;
        left: -3px;
    }
    
    .center-badge, .new-app-center-badge {
        font-size: 0.5rem;
        padding: 1px 5px;
        bottom: -5px;
    }
    
    .new-app-card {
        width: 280px;
    }
    
    .new-app-banner {
        height: 160px; /* Maintain 16:9 aspect ratio */
    }
    
    .trending-app-badge {
        font-size: 0.6rem;
        padding: 2px 6px;
    }

    .pagination {
        flex-direction: column;
        gap: 15px;
    }

    .pagination-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Hidden apps for search functionality */
.app-card.hidden, .new-app-card.hidden {
    display: none;
}