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

:root {
    --primary-blue: #0A2463;
    --accent-gold: #D4AF37;
    --bg-dark: #0f172a;
    --text-light: #f8fafc;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top right, #1e293b, var(--bg-dark), #020617);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

/* Background blob animations */
.hero::before {
    content: '';
    position: absolute;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(10, 36, 99, 0.8), transparent 70%);
    top: -20vh;
    left: -10vw;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: blob-bounce 15s infinite ease-in-out alternate;
}

.hero::after {
    content: '';
    position: absolute;
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent 70%);
    bottom: -10vh;
    right: -5vw;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: blob-bounce 20s infinite ease-in-out alternate-reverse;
}

@keyframes blob-bounce {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-50px) scale(1.1);
    }
}

.mgu-tag {
    font-family: 'Outfit', sans-serif;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    animation: fadeInDown 1s ease-out;
}

.title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #94a3b8;
    max-width: 600px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.coming-soon-badge {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--accent-gold);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.news-section {
    padding: 0rem 2rem 5rem;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #fff;
}

.news-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.news-card {
    flex: 1 1 300px;
    max-width: 450px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.news-date {
    font-size: 0.85rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: block;
}

.news-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-content {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}

footer {
    text-align: center;
    padding: 2rem;
    color: #64748b;
    border-top: 1px solid var(--glass-border);
    margin-top: auto;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animations logic */
.news-card {
    opacity: 0;
}

.news-card.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}