body, html {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

:root {
    --color-primary: #7D01FF;
}


.button_secondary {
    color: rgb(2, 8, 23);
    border: 1px solid rgb(226, 232, 240);
    background-color: rgb(255, 255, 255);
    font-size: 14px;
    appearance: button;
    align-items: center;
    display: flex;
    column-gap: 8px;
    transition: all 0.2s ease-in-out;
    padding: 8px 20px;
    border-radius: 10px;
}

.button_secondary:hover {
    background-color: rgb(241, 245, 249);
}

.button_primary {
    color: rgb(255, 255, 255);
    border: 1px solid rgb(226, 232, 240);
    background-color: var(--color-primary);
    font-size: 14px;
    appearance: button;
    align-items: center;
    display: flex;
    column-gap: 8px;
    transition: all 0.2s ease-in-out;
    padding: 8px 20px;
    border-radius: 10px;
}

.platform_logo {
    width: 120px;
}

.hero_title {
    font-size: 56px;
    font-weight: 700;
    color: black;
}

.bg_secondary {
    background-color: #F9FAFB;
}

.desc_text {
    color: #4B5563;
    font-size: 18px;
}

.text_accent_primary {
    color: var(--color-primary);
}

.bg_gradient_primary {
    background: rgba(0, 102, 255, 0.99);
    background: linear-gradient(90deg,rgba(0, 102, 255, 0.43) 50%, rgba(125, 0, 255, 0.43) 100%);
}

.hero_image_container {
    min-height: 300px;
    min-width: 300px;
    border-radius: 10px;
}

.stats_row {
    padding-top: 24px;
    border-radius: 24px;
    padding-bottom: 24px;
}

#resources {
    padding-top: 120px;
    padding-bottom: 120px;
}






#hero_section {
    padding-top: 120px;
    padding-bottom: 120px;
}

/* resources */
.top_res_left {
    background-color: #CCDFFF;
    
    font-size: 12px;
    padding: 12px;
    color: rgb(0, 82, 204);
    border-radius: 12px;
}

.res_center_topic {
    color: rgb(107, 114, 128);
    font-size: 12px;
    margin-bottom: 0;
}

.res_center_type {
    color: rgb(2, 8, 23);
    font-size: 14px;
    font-weight: 500;
}

.res_center_premium {
    background-color: rgba(229,204,255, 0.4);
    color: var(--color-primary);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
}

.res_title {
    color: rgb(17, 24, 39);
    font-size: 16px;
    font-weight: 600;
}

.rating_left i {
    color: orange;
}

.price_right p {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
}

.button_details {
    color: rgb(255, 255, 255);
    border: 1px solid rgb(226, 232, 240);
    background-color: #0065FF;
    font-size: 14px;
    appearance: button;
    align-items: center;
    display: flex;
    column-gap: 8px;
    transition: all 0.2s ease-in-out;
    padding: 8px 20px;
    border-radius: 10px;
}

.nav-link {
    color: #374151!important;
}

.nav-link:hover {
    color: var(--color-primary)!important;
}

@media (max-width: 768px) {
    #hero_section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .hero_title {
        font-size: 36px;
    }
}