.main-content {
    padding: 2rem;
    text-align: center;
}

.hero {
    padding: 4rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.hero div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero div p {
    color: #bbb;
    font-size: 2rem;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: transparent;
    padding: 2rem;
    border: 1px solid #222;
    border-radius: 12px;
    width: 280px;
    transition: border-color 0.3s ease;
    cursor: pointer;
    position: relative;
}

.feature-card:hover {
    border-color: var(--hover-color);
    background: linear-gradient(45deg, #212121, #252525);
    background: radial-gradient(circle at top right,
            rgba(251, 255, 0, 0.195) 10%,
            #212121 70%);
}

.feature-card h2 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #aaa;
    font-size: 0.95rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
    }

    .hero img {
        width: 256px;
        height: 256px;
    }

    .hero div {
        justify-content: center;
        align-items: center;
    }

    .hero div p {
        display: none;
    }
}