@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    color: white;
    background: linear-gradient(-45deg, #0a0e1a, #141e30, #1a1a3e, #0f2027);
    background-size: 400% 400%;
    animation: gradientBG 20s ease infinite;
    min-height: 100vh;
    overflow-x: hidden;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.main {
    text-align: center;
    padding-top: 60px;
    min-height: 100vh;
    position: relative;
}

.header h1 {
    font-size: 48px;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: 800;
}

.header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 30px 60px;
}

.card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px 30px;
    width: 280px;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-12px) scale(1.03);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.card h2 {
    margin-bottom: 10px;
    font-size: 26px;
    font-weight: 700;
    position: relative;
}

.card p {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    font-size: 14px;
    position: relative;
}