:root {
    --bg-color: #081C42;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --text-primary: #FFFFFF;
    --text-secondary: #A0AEC0;
    --accent-gradient: linear-gradient(135deg, #00C6FF 0%, #0072FF 100%);
    --hover-glow: 0 8px 32px 0 rgba(0, 198, 255, 0.2);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.background-globes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.globe {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.globe-1 {
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: #0072FF;
}

.globe-2 {
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: #00C6FF;
}

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

.header {
    text-align: center;
    padding: 4rem 1rem 3rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(to right, #fff, #a5f3fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 1rem 0;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    height: 100%;
    box-sizing: border-box;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: var(--hover-glow);
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.icon-container {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.portainer-bg {
    color: #33a8e3;
    background: rgba(51, 168, 227, 0.15);
}

.chatwoot-bg {
    color: #4dc247;
    background: rgba(77, 194, 71, 0.15);
}

.evolution-bg {
    color: #8e44ad;
    background: rgba(142, 68, 173, 0.15);
}

.minio-bg {
    color: #f64f59;
    background: rgba(246, 79, 89, 0.15);
}

.n8n-bg {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.15);
}

.supabase-bg {
    color: #3ecf8e;
    background: rgba(62, 207, 142, 0.15);
}

.card h2 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    font-weight: 600;
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.launch-btn {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    background: var(--accent-gradient);
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
}

.launch-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.footer {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: auto;
}

@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 3rem 1rem;
    }

    .logo h1 {
        font-size: 2rem;
    }

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