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

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f8fafc;
    color: #0f172a;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Animated Blobs */
.background-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0.8;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s infinite ease-in-out alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #dcfce7;
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #fef08a;
    bottom: -150px;
    right: -100px;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.2); }
}

/* Main Container */
.container {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

header {
    text-align: center;
    margin-bottom: 60px;
}

header h1 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 15px;
    color: #0f172a;
}

header h1 .neon-red {
    color: #e61937;
    font-weight: 400;
    text-shadow: 0 0 10px rgba(230, 25, 55, 0.4), 
                 0 0 20px rgba(230, 25, 55, 0.2);
}

header p {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 300;
}

/* Grid layout for cards */
.grid-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Glassmorphism Card */
.card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 40px 30px;
    text-decoration: none;
    color: #0f172a;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

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

.card > * {
    position: relative;
    z-index: 2;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: rgba(0,0,0,0.04);
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
}

.card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.card p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.5;
    font-weight: 300;
}

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

/* Footer Styles */
.site-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.site-footer p {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.6;
    font-weight: 300;
}
