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

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    min-height: 100vh;
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 255, 170, 0.12), transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(100, 80, 255, 0.14), transparent 30%),
        linear-gradient(135deg, #070914, #0d1020 50%, #070914);
}

/* Header */
.header {
    padding: 22px 7%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(8, 10, 24, 0.75);
    backdrop-filter: blur(15px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Logo */
.brand-logo {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 25px rgba(0,255,180,0.18);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand h1 {
    font-size: 22px;
}

.brand p {
    color: #9da4b8;
    font-size: 13px;
    margin-top: 4px;
}

/* Notice */
.notice {
    margin: 25px auto;
    width: 86%;
    max-width: 1200px;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    background: rgba(255,255,255,0.045);
}

.notice strong {
    color: #7fffd4;
    font-size: 12px;
}

.notice span {
    color: #aeb4c7;
    font-size: 12px;
}

/* Container */
.container {
    width: 86%;
    max-width: 1200px;
    margin: auto;
}

/* Hero */
.hero {
    text-align: center;
    padding: 45px 10px 35px;
}

.small-title {
    color: #7fffd4;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: clamp(32px, 6vw, 62px);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.hero p:last-child {
    color: #9da4b8;
}

/* Search */
.search-section {
    margin-bottom: 40px;
}

#searchInput {
    width: 100%;
    padding: 17px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    outline: none;
    color: white;
    font-size: 15px;
    background: rgba(255,255,255,0.055);
    backdrop-filter: blur(12px);
}

#searchInput::placeholder {
    color: #777f96;
}

#searchInput:focus {
    border-color: rgba(127,255,212,0.5);
    box-shadow: 0 0 20px rgba(127,255,212,0.08);
}

/* Archive */
.archive-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 22px;
}

.archive-heading p {
    color: #7fffd4;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.archive-heading h2 {
    font-size: 25px;
}

.archive-heading span {
    color: #aeb4c7;
    font-size: 13px;
}

/* App Grid */
.app-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* Card */
.app-card {
    padding: 16px;
    display: flex;
    gap: 15px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    background: rgba(255,255,255,0.045);
    backdrop-filter: blur(14px);
    transition: 0.25s ease;
}

.app-card:hover {
    transform: translateY(-5px);
    border-color: rgba(127,255,212,0.28);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.app-image img {
    width: 68px;
    height: 68px;
    border-radius: 15px;
    object-fit: cover;
}

.app-info {
    min-width: 0;
    flex: 1;
}

.app-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-info > p {
    color: #8f97ad;
    font-size: 12px;
    margin-bottom: 10px;
}

.app-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #747c91;
    margin-bottom: 12px;
}

.app-meta strong {
    color: #b9c0d1;
}

/* Download */
.download-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 9px 10px;
    border-radius: 10px;
    color: #06120f;
    background: #7fffd4;
    font-size: 12px;
    font-weight: bold;
    transition: 0.2s;
}

.download-btn:hover {
    transform: scale(1.03);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.pagination button {
    min-width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    cursor: pointer;
}

.pagination button.active {
    background: #7fffd4;
    color: #06120f;
    font-weight: bold;
}

.pagination button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 50px 10px;
}

.no-results h3 {
    margin-bottom: 8px;
}

.no-results p {
    color: #8f97ad;
}

/* Footer */
.footer {
    margin-top: 60px;
    padding: 40px 7%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(5,7,16,0.7);
}

.footer h3 {
    margin-bottom: 8px;
}

.footer p {
    color: #858da3;
    font-size: 13px;
}

.copyright {
    margin-top: 15px;
    font-size: 11px !important;
}

/* Mobile */
@media (max-width: 900px) {
    .app-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .container,
    .notice {
        width: 92%;
    }

    .app-list {
        grid-template-columns: 1fr;
    }

    .notice {
        flex-direction: column;
    }

    .hero {
        padding-top: 30px;
    }

    .archive-heading {
        align-items: start;
    }
    }
