* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: linear-gradient(-45deg, #1a1a1a, #2d1f1f, #331c0c, #1f1209);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.landing-container {
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    width: 90%;
}

.main-title {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    color: #ff6b2b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-out;
}

.cards-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 1.5rem;
    width: 300px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 107, 43, 0.1);
    box-shadow: 0 8px 32px rgba(255, 107, 43, 0.15);
    animation: slideUp 0.5s ease-out;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 43, 0.25);
    background: rgba(26, 26, 26, 0.9);
}

.card i {
    font-size: 3rem;
    color: #ff6b2b;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.card:hover i {
    transform: scale(1.1);
}

.card h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    .card {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    .landing-container {
        padding: 1.5rem;
    }
    .card {
        padding: 2rem;
    }
} 
