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

body {
    background-image: url("background.jpg");
    background-color: #0a0e17;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
    min-height: 100vh;
}


a {
    color: #ffffff;
    text-decoration: none;
}

/* ── Page Layout ── */
.page {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
}

/* ── Logo ── */
.logo-wrap {
    margin-bottom: 50px;
    animation: fadeDown 0.6s ease both;
    position: relative;
}

.logo-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(30, 115, 190, 0.15) 0%, rgba(30, 115, 190, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

.logo {
    width: 770px;
    height: auto;
    max-width: 90vw;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.85;
}

/* ── Cards Grid ── */
.cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 960px;
}

/* ── Glassmorphism Card ── */
.glass-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 280px;
    padding: 20px 24px;
    border-radius: 16px;
    background: rgba(10, 14, 23, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(30, 115, 190, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.35s ease;
    text-align: center;
    cursor: pointer;
    animation: fadeUp 0.6s ease both;
}

.glass-card:nth-child(1) { animation-delay: 0.1s; }
.glass-card:nth-child(2) { animation-delay: 0.2s; }
.glass-card:nth-child(3) { animation-delay: 0.3s; }

.glass-card:hover {
    background: rgba(30, 115, 190, 0.12);
    border-color: rgba(30, 115, 190, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(30, 115, 190, 0.15);
    transform: translateY(-4px);
    color: #ffffff;
}

/* ── Card Icon ── */
.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(30, 115, 190, 0.1);
    border: 1px solid rgba(30, 115, 190, 0.15);
    padding: 12px;
    transition: all 0.35s ease;
}

.glass-card:hover .card-icon {
    background: rgba(30, 115, 190, 0.2);
    border-color: rgba(30, 115, 190, 0.35);
}

.card-icon img {
    width: 32px;
    height: 32px;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    color: #1e73be;
    transition: color 0.35s ease;
}

.glass-card:hover .card-icon svg {
    color: #4a9fe5;
}

/* ── Card Text ── */
.card-label {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.card-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
}

.glass-card:hover .card-desc {
    color: rgba(255, 255, 255, 0.65);
}

/* ── Domain Badge ── */
.domain-badge {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: rgba(10, 14, 23, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 115, 190, 0.1);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    animation: fadeUp 0.6s ease 0.4s both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1e73be;
    box-shadow: 0 0 8px rgba(30, 115, 190, 0.6);
    animation: pulse 2.5s ease-in-out infinite;
}

/* ── Animations ── */
@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(30, 115, 190, 0.6); }
    50% { opacity: 0.4; box-shadow: 0 0 4px rgba(30, 115, 190, 0.3); }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive ── */
@media (max-width: 720px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }

    .glass-card {
        width: 280px;
    }

    .logo {
        width: 90vw;
    }
}
