/* UK Gadgets Ltd - Compact Portfolio */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0f;
    color: #fff;
    min-height: 100vh;
    line-height: 1.5;
}

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

/* Header */
.header {
    padding: 60px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, #12121a 0%, #0a0a0f 100%);
}

.logo {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
}

.tagline {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
}

/* Main */
.main {
    padding: 40px 0 60px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

/* Apps Grid */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* App Card */
.app-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.app-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.app-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    flex-shrink: 0;
    object-fit: cover;
}

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

.app-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-stores {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.store-badge {
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 500;
}

.store-badge.ios {
    background: rgba(0, 122, 255, 0.2);
    color: #4da3ff;
}

.store-badge.android {
    background: rgba(52, 168, 83, 0.2);
    color: #5ec269;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #08080c;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-info p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 4px;
}

.footer-info strong {
    color: rgba(255,255,255,0.9);
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-contact a:hover {
    color: #fff;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* Responsive */
@media (max-width: 600px) {
    .header {
        padding: 40px 0 30px;
    }

    .logo {
        height: 60px;
    }

    .tagline {
        font-size: 1rem;
    }

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

    .app-card {
        padding: 16px;
    }

    .app-icon {
        width: 56px;
        height: 56px;
    }

    .footer-content {
        flex-direction: column;
    }
}