:root {
    --primary: #c084fc;
    --secondary: #818cf8;
    --accent: #22d3ee;
    --bg-dark: #020617;
    --text-light: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --accent-gradient: linear-gradient(135deg, #c084fc 0%, #818cf8 50%, #22d3ee 100%);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* Background */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(100px);
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    opacity: 0.2;
}

.blob-1 {
    background: var(--primary);
    top: -10%;
    right: -10%;
    animation: float 20s infinite alternate;
}

.blob-2 {
    background: var(--secondary);
    bottom: -10%;
    left: -10%;
    animation: float 25s infinite alternate-reverse;
}

.blob-3 {
    background: var(--accent);
    top: 40%;
    left: 30%;
    width: 400px;
    height: 400px;
    animation: float 30s infinite alternate;
}

@keyframes float {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(100px, 100px) scale(1.1);
    }
}

/* Navigation */
nav {
    padding: 2.5rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -1px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero */
.hero {
    padding: clamp(4rem, 10vh, 8rem) 0 4rem;
    text-align: center;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

/* App Grid */
.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 2rem;
    padding-bottom: clamp(4rem, 10vh, 8rem);
}

.app-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: clamp(24px, 4vw, 32px);
    padding: clamp(1.5rem, 5vw, 2.5rem);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.app-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.app-icon-wrapper {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
    position: relative;
}

.app-icon-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.app-card h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.app-card p {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.btn-visit {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* App Placeholder Card */
.app-card.placeholder {
    border-style: dashed;
    opacity: 0.5;
    justify-content: center;
}

.app-card.placeholder:hover {
    opacity: 0.8;
}

/* Footer */
footer {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

footer p {
    color: #64748b;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    .hero {
        padding-top: 4rem;
    }

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