@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #050508;
    color: #e0e0e0;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(120, 119, 198, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(78, 78, 120, 0.1), transparent),
        radial-gradient(ellipse 50% 30% at 0% 100%, rgba(100, 100, 150, 0.08), transparent);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.main-content {
    text-align: center;
    position: relative;
    z-index: 10;
    transform: translateY(-30px);
    padding: 0 20px;
    max-width: 1100px;
}

.main-content h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #ffffff 30%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
}

.main-content p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 550px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.cta-button {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2) 0%, rgba(56, 189, 248, 0.1) 100%);
    color: #fff;
    padding: 18px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(96, 165, 250, 0.3);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.15);
    margin-bottom: 40px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    border-color: rgba(96, 165, 250, 0.5);
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.3) 0%, rgba(56, 189, 248, 0.15) 100%);
}

.cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    color: #60a5fa;
}

.cta-button:hover svg {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.6));
}

.info-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 500px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.2px;
}

.banners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.banner-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 40px 30px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.banner-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

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

.banner-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.banner-card h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.banner-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

.banner-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.banner-card:hover .banner-arrow {
    color: #fff;
    transform: translate(2px, -2px);
}

.banner-arrow svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .main-content h1 {
        font-size: 5rem;
    }
    .banners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        align-items: flex-start;
        padding-top: 60px;
    }
    .main-content {
        transform: none;
    }
    .main-content h1 {
        font-size: 3.5rem;
        letter-spacing: -1.5px;
    }
    .main-content p {
        font-size: 1rem;
    }
    .banners-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-top: 40px;
        margin-left: auto;
        margin-right: auto;
    }
    .banner-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .main-content h1 {
        font-size: 2.8rem;
    }
    .banner-icon {
        font-size: 2rem;
    }
}

html {
    scroll-behavior: smooth;
}