@charset "UTF-8";
@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Thin'), local('GilroyT-Thin'), url('../fonts/Gilroy-Thin.woff2') format('woff2');
    font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Regular'), local('Gilroy-Regular'), url('../fonts/Gilroy-Regular.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Semibold'), local('Gilroy-Semibold'), url('../fonts/Gilroy-SemiBold.woff2') format('woff2');
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Bold'), local('Gilroy-Bold'), url('../fonts/Gilroy-Bold.woff2') format('woff2');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Extrabold'), local('Gilroy-Extrabld'), url('../fonts/Gilroy-ExtraBold.woff2') format('woff2');
    font-weight: 800; font-style: normal; font-display: swap;
}

:root {
    --bg-body: #f5f3ff;
    --light-color: #fff;
    --accent-color-1: #4F46E5;
    --accent-color-2: #7C3AED;
    --accent-gradient: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    --success-color: #10B981;
    --light-grey-1: #D1D5DB;
    --light-grey-2: #F3F4F6;
    --links-color-1: #6B7280;
    --links-color-2: #4F46E5;
    --text-dark-color: #111827;
    --text-dark-color-2: #1F2937;
    --text-dark-color-3: #374151;
    --text-grey-color: #6B7280;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --radius: 16px;
    --radius-sm: 10px;
}

*, *::before, *::after { box-sizing: border-box; }
html { height: 100%; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400; margin: 0; padding: 0;
    background: var(--bg-body);
    color: var(--text-dark-color);
    display: flex; flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: 480px; margin: 0 auto; }
.container .inner-cont { padding: 0 16px; }

ul { margin: 0; padding: 0; }
ul li { list-style: none; }

/* ==================== HEADER ==================== */
.header {
    background: var(--light-color);
    padding: 12px 0;
    position: sticky; top: 0; z-index: 100;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid #E5E7EB;
}
.header .header_wrapper {
    display: flex; align-items: center; justify-content: space-between;
}
.header .header_logo a { display: flex; align-items: center; }
.header .header_logo a img { height: 36px; }
.header .header_text {
    color: var(--text-dark-color-2);
    background: var(--light-grey-2);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-weight: 600; font-size: 13px;
    position: relative;
}
.header .header_text span {
    position: absolute; bottom: -14px; right: 0;
    font-size: 11px; font-weight: 600;
    color: var(--light-color);
    background: var(--accent-color-1);
    border-radius: 6px;
    padding: 2px 8px;
}
.header .header_button a {
    display: inline-flex; align-items: center;
    background: var(--accent-gradient);
    color: var(--light-color);
    font-size: 13px; font-weight: 700;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: opacity 0.2s;
}
.header .header_button a:hover { opacity: 0.9; }

/* ==================== MAIN ==================== */
.main { flex: 1; overflow: hidden; padding-top: 20px; }

.main .main_title {
    color: var(--text-dark-color);
    text-align: center;
    font-size: 28px; font-weight: 800;
    line-height: 1.15;
    margin-bottom: 4px;
}
.main .main_title span { color: var(--accent-color-1); }

.main .main_subtitle {
    color: var(--text-grey-color);
    text-align: center;
    font-size: 15px; font-weight: 400;
    line-height: 1.3;
    margin: 8px 0 16px;
}
.main .main_subtitle span {
    color: var(--accent-color-1); font-weight: 600;
}
.main .main_subtitle b { font-weight: 500; color: var(--text-dark-color-2); }

/* ==================== OFFERS GRID ==================== */
.main .offers_wrapper {
    display: flex; justify-content: space-between; flex-wrap: wrap;
    gap: 12px;
    min-height: 50vh;
}

.main .offers_wrapper .offer {
    width: calc(50% - 6px);
    background: var(--light-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 16px 12px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #E5E7EB;
}
.main .offers_wrapper .offer:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}
.main .offers_wrapper .offer > a {
    text-decoration: none; display: flex; flex-direction: column;
}

/* Offer labels */
.main .offers_wrapper .offer .label {
    font-size: 10px; font-weight: 700;
    height: 24px;
    display: flex; justify-content: center; align-items: center;
    color: var(--light-color);
    position: absolute; left: 50%; transform: translateX(-50%);
    top: -12px;
    padding: 0 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.main .offers_wrapper .offer .label.one {
    background: var(--accent-gradient); color: var(--light-color);
}
.main .offers_wrapper .offer .label.two {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%); color: var(--light-color);
}
.main .offers_wrapper .offer .label.orange {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}
.main .offers_wrapper .offer .label.purple {
    background: var(--accent-gradient);
}
.main .offers_wrapper .offer .label.green {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}
.main .offers_wrapper .offer .label.dark {
    background: linear-gradient(135deg, #374151 0%, #1F2937 100%);
}

.offer-logo {
    width: 88%; margin: 0 auto 8px; display: block;
    border-radius: 8px;
}

/* Offer Info */
.main .offers_wrapper .offer .offer-info {
    display: flex; flex-direction: column;
    list-style: none; text-align: center;
    margin: 0; padding: 10px 0 0;
    border-top: 1px solid var(--light-grey-2);
}
.main .offers_wrapper .offer .offer-info li {
    font-size: 11px; color: var(--text-grey-color);
    margin-bottom: 4px;
}
.main .offers_wrapper .offer .offer-info li:last-child { margin-bottom: 0; }
.main .offers_wrapper .offer .offer-info li span { display: block; }
.main .offers_wrapper .offer .offer-info li span.text {
    font-weight: 400; color: var(--text-grey-color); font-size: 11px;
}
.main .offers_wrapper .offer .offer-info li span.bold {
    font-weight: 700; font-size: 16px; color: var(--text-dark-color);
    margin-top: 1px;
}

/* CTA Button */
.main .general_button_wrapper { text-align: center; margin-top: 12px; }
.main .general_button_wrapper .button { width: 100%; position: relative; }
.main .general_button_wrapper .button a,
.main .general_button_wrapper .button button,
.main .general_button_wrapper .button .btn-main {
    position: relative;
    background: var(--accent-gradient);
    border-radius: var(--radius-sm);
    border: none; width: 100%; height: 44px;
    font-size: 13px; line-height: 1;
    text-align: center; color: var(--light-color);
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    text-decoration: none; text-transform: uppercase;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
    transition: box-shadow 0.2s, transform 0.15s;
    letter-spacing: 0.3px;
}
.main .general_button_wrapper .button a:hover,
.main .general_button_wrapper .button .btn-main:hover {
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.45);
    transform: translateY(-1px);
}
.main .general_button_wrapper .button a:active,
.main .general_button_wrapper .button .btn-main:active {
    transform: translateY(0);
}
.main .general_button_wrapper .button a img,
.main .general_button_wrapper .button .btn-main img {
    margin-right: 5px; width: 16px;
}
.main .general_button_wrapper .button .approve-credits {
    width: 90%; margin: 6px auto 0;
    font-size: 10px; color: var(--text-grey-color);
}

.btn-main {
    position: relative;
    background: var(--accent-gradient);
    border-radius: var(--radius-sm);
    border: none; width: 100%; height: 44px;
    font-size: 13px;
    text-align: center; color: var(--light-color);
    font-weight: 700;
    text-decoration: none; text-transform: uppercase;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
    cursor: pointer;
}

/* ==================== PLACEHOLDERS ==================== */
.offer-placeholder {
    display: flex; flex-direction: column; justify-content: space-between;
    width: calc(50% - 6px);
    height: 290px;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius);
    padding: 16px 12px;
    background: var(--light-color);
    overflow: hidden; position: relative;
}
.skel {
    background: linear-gradient(90deg, var(--light-grey-2) 0px, #fff 40px, var(--light-grey-2) 80px);
    background-size: 600px;
    border-radius: 8px;
    animation: placeholderShimmer 1.4s ease infinite;
}
.skel-logo { width: 130px; height: 66px; margin: 0 auto; border-radius: 10px; }
.skel-info { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; padding: 15px 0; }
.skel-info span { width: 40%; height: 12px; opacity: .4; border-radius: 4px; }
.skel-info span:nth-child(even) { width: 65%; height: 14px; opacity: .7; }
.skel-button { width: 100%; height: 44px; border-radius: var(--radius-sm); }
@keyframes placeholderShimmer {
    0% { background-position: -200px 0; }
    100% { background-position: 600px 0; }
}

/* ==================== KEYWORDS ==================== */
.mainKeywords { margin-top: 40px; }
.mainKeywords .section-title h1 {
    color: var(--text-dark-color);
    font-size: 22px; font-weight: 800;
    line-height: 1.2; margin-bottom: 16px;
}
.mainKeywords .section-title h1 span { color: var(--accent-color-1); }
.mainKeywords .keywords-list {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.mainKeywords .keywords-list li a {
    text-decoration: none;
    border-radius: 20px;
    background: var(--light-color);
    border: 1px solid #E5E7EB;
    display: inline-flex;
    padding: 10px 16px;
    align-items: center;
    color: var(--text-dark-color-2);
    font-size: 13px; font-weight: 500;
    transition: all 0.2s;
}
.mainKeywords .keywords-list li a:hover {
    border-color: var(--accent-color-1);
    color: var(--accent-color-1);
    box-shadow: var(--shadow-sm);
}

/* ==================== BLOG ==================== */
.blog-section { margin-top: 40px; }
.blog-section .section-title {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px;
}
.blog-section .section-title h1 {
    color: var(--text-dark-color);
    font-size: 22px; font-weight: 800; margin: 0;
}
.blog-section .section-title h1 span { color: var(--accent-color-1); }
.btn-all-news {
    font-size: 13px; font-weight: 600;
    color: var(--accent-color-1); text-decoration: none;
    padding: 6px 14px;
    border: 1px solid var(--accent-color-1);
    border-radius: 20px;
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-all-news:hover {
    background: var(--accent-color-1); color: var(--light-color);
}
.blog-slider { display: flex; flex-wrap: wrap; gap: 12px; }
.blog-item {
    background: var(--light-color);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #E5E7EB;
    width: 100%;
    transition: box-shadow 0.2s;
}
.blog-item:hover { box-shadow: var(--shadow-lg); }
.blog-banner { width: 100%; overflow: hidden; }
.blog-banner img {
    width: 100%; height: auto; display: block;
    border-radius: var(--radius) var(--radius) 0 0;
}
.blog-text { padding: 14px 16px; }
.blog-title {
    font-size: 15px; font-weight: 700; color: var(--text-dark-color);
    margin-bottom: 6px; line-height: 1.3;
}
.blog-text p {
    font-size: 13px; color: var(--text-grey-color);
    margin: 0; line-height: 1.4;
}
.blog-bottom {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 10px;
}
.blog-date { font-size: 12px; color: var(--light-grey-1); }
.btn-blog-details {
    font-size: 13px; font-weight: 600;
    color: var(--accent-color-1); text-decoration: none;
    display: flex; align-items: center; gap: 4px;
}
.btn-blog-details img { width: 16px; height: 16px; }

/* ==================== TOGGLE / DETAILS ==================== */
.toggle-container { border-top: 1px solid #E5E7EB; margin-top: 10px; }
.toggle-button {
    cursor: pointer; color: var(--accent-color-1);
    margin-top: 10px; text-align: center;
    font-size: 13px; user-select: none;
    display: inline-flex; align-items: center; justify-content: center;
}
.toggle-button .arrow {
    border: solid var(--accent-color-1);
    border-width: 0 2px 2px 0;
    display: inline-block; margin-left: 6px;
    height: 7px; width: 7px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}
.toggle-button .arrow-up { transform: rotate(-135deg); }
.toggle-content { display: none; padding-top: 12px; }

.offer-link {
    display: inline-block; font-size: 13px;
    text-align: center; text-decoration: underline;
    color: var(--accent-color-1); margin-bottom: 10px;
}
.offer-text { color: var(--text-grey-color); font-size: 13px; margin: 0 0 8px; }

.btn-offer-details {
    display: inline-flex; text-align: center;
    cursor: pointer; color: var(--accent-color-1);
    font-size: 13px; padding-right: 14px; margin: 8px 0 0;
    position: relative; user-select: none;
}
.triangle-down {
    position: absolute; top: 50%; right: 0; margin-top: -2px;
    transform: translateY(-50%) rotate(45deg);
    border: 1px solid var(--accent-color-1);
    border-width: 0 1.5px 1.5px 0;
    height: 8px; width: 8px;
}

/* ==================== LIST STYLES ==================== */
.list-style-one { text-align: center; margin-bottom: 12px; }
.list-style-one li {
    position: relative; display: inline-block;
    font-size: 14px; margin-right: 8px; font-weight: 500;
}
.list-style-one li:last-child { margin-right: 0; }
.list-style-one li:first-child:before {
    content: ''; width: 1px; height: 100%;
    background: var(--light-grey-1); position: absolute; right: -6px;
}
.list-style-one li span, .list-style-two li span {
    font-weight: bold; color: var(--accent-color-1);
}
.list-style-two li { text-align: center; font-size: 14px; font-weight: 500; }

/* ==================== MFO DETAILS / CARDS ==================== */
.mainMfoDetails { margin-top: 40px; }
.mainMfoDetails .section-title h1 {
    color: var(--text-dark-color);
    font-size: 22px; font-weight: 800; margin-bottom: 20px;
}
.mainMfoDetails .section-title h1 span { color: var(--accent-color-1); }

.mfo-list {
    list-style: none; display: flex; flex-wrap: wrap;
    padding: 0; gap: 10px;
    font-size: 13px; color: var(--text-grey-color);
}
.mfo-item { width: 100%; }
.mfo-link {
    display: block; color: inherit;
    padding: 14px 16px;
    border-radius: var(--radius);
    background: var(--light-color);
    border: 1px solid #E5E7EB;
    text-decoration: none;
    transition: box-shadow 0.2s;
}
.mfo-link:hover { box-shadow: var(--shadow-md); }
.mfo-table { width: 100%; }
.mfo-table td { border: 0; color: var(--text-grey-color); padding: 4px 6px; }
thead { border-bottom: 1px solid #E5E7EB; }
thead, tbody tr:nth-child(even) { background: var(--light-grey-2); }
th, td { padding: 6px 8px; }
th { height: 50px; font-weight: 700; color: var(--text-dark-color); }

/* ==================== SEO ==================== */
.mainSeo { padding-top: 30px; }
.mainSeo .section-title h1,
.mainSeo .section-title h2 {
    color: var(--text-dark-color);
    font-size: 20px; font-weight: 800;
    margin-bottom: 10px;
}
.mainSeo p { color: var(--text-grey-color); font-size: 13px; line-height: 1.5; }
.mainSeo ul { padding-left: 24px; font-size: 13px; color: var(--text-grey-color); }
.mainSeo ul li { list-style: disc; margin-bottom: 4px; }

/* ==================== PRIVACY / LEGAL ==================== */
.privacy { padding: 20px 0; }
.privacy h3 { font-size: 24px; font-weight: 800; color: var(--text-dark-color); margin: 0 0 20px; }
.privacy h5 { font-size: 16px; font-weight: 700; color: var(--text-dark-color-2); margin: 20px 0 8px; }
.privacy p { font-size: 14px; line-height: 1.6; color: var(--text-grey-color); margin: 0 0 10px; }
.privacy ul { padding-left: 24px; margin: 10px 0; }
.privacy ul li { list-style: disc; font-size: 14px; color: var(--text-grey-color); line-height: 1.6; margin-bottom: 4px; }
.privacy a { color: var(--accent-color-1); }

h2.page-title { text-align: center; color: var(--text-dark-color); font-size: 22px; }

/* ==================== MODAL ==================== */
.modal {
    display: none; position: fixed;
    left: 0; top: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99999;
    backdrop-filter: blur(4px);
}
.modal-content {
    background: var(--light-color);
    padding: 28px 20px;
    border: none;
    border-radius: var(--radius);
    width: 90%; max-width: 400px;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: var(--shadow-xl);
}
.modal-content .modal-title h3,
.modal-content .modal-title h4,
.modal-content .modal-title h5 {
    text-align: center; margin: 0 0 10px;
    font-size: 22px; color: var(--text-dark-color);
}
.modal-content .modal-title p {
    text-align: center; font-size: 13px;
    max-width: 300px; margin: 0 auto;
    color: var(--text-grey-color);
}
.modal-content .modal-offers .modal-offer {
    display: flex; align-items: center; justify-content: space-between;
    text-decoration: none; margin-top: 16px;
    padding: 12px; border-radius: var(--radius-sm);
    border: 1px solid #E5E7EB;
    transition: border-color 0.2s;
}
.modal-content .modal-offers .modal-offer:hover { border-color: var(--accent-color-1); }
.modal-content .modal-offers .offer-img {
    width: 28%; height: 46px;
    border-radius: 8px;
    background-color: var(--light-grey-2);
    background-size: 80%; background-position: center; background-repeat: no-repeat;
}
.modal-content .modal-offers .offer-text {
    font-weight: 700; font-size: 18px; color: var(--text-dark-color);
}
.modal-content .modal-offers .modabutton { width: 28%; }
.modal-content .modal-offers .modabutton span {
    background: var(--accent-gradient);
    border: none; border-radius: 8px;
    color: var(--light-color);
    font-size: 13px; font-weight: 700;
    padding: 12px 5px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
}
.modal-content .close {
    position: absolute; top: 8px; right: 14px;
    color: var(--light-grey-1); cursor: pointer;
    font-size: 28px; line-height: 1;
}
.modal-content .close:hover { color: var(--text-grey-color); }

/* Modal Details */
.modal-details .modal-content {
    padding: 20px 24px;
    width: calc(100% - 40px);
    background: var(--light-color);
}
.modal-details .modal-logo { max-width: 140px; margin: 0 auto; }
.modal-details .modal-logo img { width: 100%; }
.modal-details .modal-offer-details { border-top: 1px solid var(--light-grey-2); }
.modal-details ul.list-style-1 { text-align: center; padding-top: 12px; }
.modal-details ul.list-style-1 li {
    position: relative; display: inline-block;
    padding-right: 14px; font-weight: 500;
    font-size: 17px; color: var(--text-dark-color-2);
}
.modal-details ul.list-style-1 li:last-child { padding-right: 0; }
.modal-details ul.list-style-1 li:first-child:before {
    content: ''; position: absolute; right: 5px;
    width: 1px; height: 90%; background: var(--light-grey-1);
}
.modal-details ul.list-style-1 li span { font-weight: bold; color: var(--accent-color-1); }
.modal-details .modal-heading { margin-bottom: 5px; text-align: center; font-size: 14px; }
.modal-details ul.list-style-2 { text-align: center; }
.modal-details ul.list-style-2 li {
    display: inline-block; padding: 0 4px;
    font-size: 13px; margin-bottom: 2px; color: var(--text-dark-color-2);
}
.modal-details ul.list-style-2 li span { font-weight: bold; color: var(--accent-color-1); }
.modal-details .modal-offer-links { text-align: center; margin-top: 8px; }
.modal-details .modal-offer-links a {
    display: inline-block; margin-top: 10px;
    font-size: 12px; text-decoration: none; color: var(--text-grey-color);
}
.modal-details .modal-button { margin-top: 20px; }

/* ==================== FOOTER ==================== */
.footer {
    padding: 16px 0;
    background: var(--light-color);
    border-top: 1px solid #E5E7EB;
}
.footer .footer_wrapper {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 8px;
}
.footer .copy span {
    font-size: 12px; color: var(--text-grey-color); font-weight: 500;
}
.footer .footer_logo a { display: block; }
.footer .footer_logo a img { width: 90px; }
.footer .footer_links,
.footer .foooter_privacy {
    display: flex; gap: 12px; flex-wrap: wrap;
}
.footer .footer_links a,
.footer .foooter_privacy a {
    font-size: 12px; color: var(--text-grey-color);
    text-decoration: none; font-weight: 500;
    transition: color 0.2s;
}
.footer .footer_links a:hover,
.footer .foooter_privacy a:hover { color: var(--accent-color-1); }

/* Disclaimer */
.disclaimer-section {
    background: var(--light-color) !important;
    border-top: 1px solid #E5E7EB !important;
    padding: 20px 0 !important;
    margin-top: 40px !important;
}

/* ==================== BOTTOM TEXT ==================== */
.main .bottom_text { margin-top: 32px; }
.main .bottom_text p {
    font-size: 12px; line-height: 1.5;
    color: var(--text-grey-color); text-align: justify;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 375px) {
    .main .main_title { font-size: 24px; }
    .header .header_logo a img { height: 30px; }
    .header .header_text { font-size: 11px; }
    .main .offers_wrapper .offer .offer-info li span.bold { font-size: 14px; }
    .main .general_button_wrapper .button a,
    .main .general_button_wrapper .button .btn-main { font-size: 12px; height: 40px; }
}

@media (max-width: 767px) {
    .offer-placeholder {
        height: 320px;
        flex: 0 0 calc(50% - 6px);
        max-width: calc(50% - 6px);
    }
    .mainSeo .section-title h1 br { display: none; }
    .modal-details .modal-content { width: calc(100% - 24px); }
}

/* Remove old animations */
@keyframes pulse {
    0% {}
    70% { box-shadow: 0 0 0 7px rgba(79, 70, 229, 0); }
    100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); }
}
