.rst-info-card {
    border-radius: var(--box-radius);
    transition: 0.3s;
    background: linear-gradient(44deg, rgba(6, 5, 23, 0.6) 0%, rgba(28, 19, 91, 0.8) 100%);
}

.rst-info-card:hover {
    border-color: rgba(93, 108, 255, 0.4);
    transform: translateX(-5px);
}

.rst-icon-box {
    width: 45px;
    height: 45px;
    border-radius: var(--box-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: linear-gradient(135deg, #3F4DE3 0%, #7E86DF 100%);
    box-shadow: 0 5px 15px rgba(63, 77, 227, 0.3);
}

.rst-collab-banner {
    background: linear-gradient(135deg, #1A1253 0%, #301a75 50%, #0D0A1A 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--box-radius);
}

.rst-collab-banner::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(200, 0, 255, 0.4) 0%, transparent 70%);
    filter: blur(40px);
}

.rst-btn-primary {
    background: linear-gradient(180deg, var(--one-color), var(--two-color));
    border-radius: var(--box-radius);;
    padding: 6px 13px 6px 13px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.rst-btn-primary:hover {
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.25), 0 0 11.5px #4250E2;
    border-color: #4250E2;
    color: white;
}

.rst-support-form-section {
    background: #14113C;
}

.rst-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    border-radius: var(--box-radius);
    font-size: 13px;
    padding: 6px 15px;
    transition: 0.3s;
}

.rst-pill:hover, .rst-pill.active {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.form-control.rst-input {
    background-color: #ffffff !important;
    border: 1px solid transparent !important;
    border-radius: var(--box-radius);
    padding: 12px;
    color: #333 !important;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.form-control.rst-input:focus {
    background-color: var(--gray) !important;
    border-color: transparent !important;
    box-shadow: none !important;
    color: #ffffff !important;
    outline: none !important;
}

.rst-btn-full {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.rst-btn-full:hover {
    background-color: #fff;
    color: #000;
    transition: ease 1s;
}

.rst-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.rst-accordion .accordion-item {
    background: #1B1256;
    border-radius: var(--box-radius);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rst-accordion .accordion-button {
    background: rgba(30, 25, 60, 0.5);
    color: white;
    box-shadow: none;
    border-radius: var(--box-radius) !important;
    font-size: 14px;
    font-weight: bold;
}

.rst-accordion .accordion-button:not(.collapsed) {
    background: rgba(40, 35, 80, 0.8);
    color: #5D6CFF;
}

.rst-accordion .accordion-button::after {
    filter: invert(1);
    margin-right: auto !important;
    margin-left: 0 !important;
}

.rst-accordion .accordion-body {
    background: transparent;
    font-size: 13px;
    line-height: 1.6;
    padding-top: 15px;
}

.rst-custom-breadcrumb > *:nth-child(1) {
    z-index: 3;
}

.rst-custom-breadcrumb > *:nth-child(2) {
    z-index: 2;
}

.rst-custom-breadcrumb > *:nth-child(3) {
    z-index: 1;
}

.rst-collab-img {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}