@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --header-height-total: 140px;
}

html,
body {
    font-family: 'Roboto', sans-serif;
    background: #27283d;
    min-height: 100vh;
    margin: 0;
    color: #C0C0C0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: #8a2be2;
    border-radius: 10px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #9d3ef7;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

.aos-animate {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

[data-aos-delay="100"] {
    transition-delay: 0.1s;
}

[data-aos-delay="200"] {
    transition-delay: 0.2s;
}

[data-aos-delay="300"] {
    transition-delay: 0.3s;
}

[data-aos-delay="400"] {
    transition-delay: 0.4s;
}

[data-aos-delay="500"] {
    transition-delay: 0.5s;
}

[data-aos-delay="600"] {
    transition-delay: 0.6s;
}

.btn-close:active,
.btn-close:focus {
}

.offcanvas-header.offcanvas-body-bg {
    border-bottom: 2px solid #8a2be2;
}

a.nav-link {
    color: #fff;
}

a.nav-link:hover {
    color: #b668ff;
}

a.nav-link.active {
    color: #b668ff !important;
}

ul.navbar-nav ul.dropdown-menu li {
    background: rgb(40 40 60 / 90%);
}

.navbar > .container {
    margin: 0!important;
    max-width: 100vw;
}

.navbar.scrolled {
    background: #1a1b2e !important;
    transition: background 0.3s ease;
}

.register .input-group-text {
    border-radius: 100px 0px 0px 100px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    border: 0;
    color: #fff;
    max-width: 60px;
}

.login .input-group-text {
    border-radius: 100px 0px 0px 100px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #ff6a5d, #ff3535);
    border: 0;
    color: #fff;
    max-width: 60px;
}

.form-control,
.form-control:focus {
    border-radius: 0px 100px 100px 0px;
    border: 0;
    background: #00000010;
    color: #C0C0C0;
}

.form-control::placeholder {
    color: #C0C0C0;
}

.form-check-input,
.form-check-label {
    cursor: pointer;
}

.form-check-input {
}

.register .form-check-input:checked {
    background-color: #8a2be2 !important;
    border-color: #8a2be2 !important;
}

.main-title {
    font-size: 32px;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
}

.underline-purple {
    display: block;
    position: relative;
    width: max-content;
}

.underline-purple::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #8a2be2;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.underline-purple-left {
    display: block;
    position: relative;
    width: max-content;
}

.underline-purple-left::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #8a2be2;
    bottom: -10px;
    left: 0;
}

.underline-peach {
    display: block;
    position: relative;
    width: max-content;
}

.underline-peach::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #ff6a5d;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.header-auth-secton {
    display: flex;
    gap: 8px;
}

a {
    text-decoration: none;
}

footer a {
    text-decoration: none;
    color: #fff;
    transition: all 0.2s ease;
}

footer a:hover {
    color: #b668ff;
    transition: all 0.2s ease;
}

.text-purple {
    color: #b668ff !important;
}

.text-peach {
    color: #ff6a5d !important;
}

.text-green {
    color: #00c20c;
}

.text-orange {
    color: #ffa500 !important;
}

.animate-pulse {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.border-purple {
    border-color: #b668ff !important;
}

.bg-purple {
    background: linear-gradient(135deg, #8a2be2, #4b0082) !important;
}

.bg-peach {
    background: linear-gradient(135deg, #ff6a5d, #ff3535) !important;
}

.bg-purple-peach {
    background: linear-gradient(135deg, #7920c8, #ff3535) !important;
}

.bg-green {
    background: linear-gradient(135deg, #009C00, #005c0a) !important;
}

.bg-red {
    background: linear-gradient(135deg, #FF0000, #660000) !important;
}

.bg-red-alert {
    background: linear-gradient(135deg, #ff6a5d, #ff3535) !important;
}

.shadow-inset-black-light {
}

.shadow-inset-black {
}

.rounded-8px {
    border-radius: 8px;
}

.border-red {
    border-color: #FF0000 !important;
}

.border-peach {
    border-color: #ff6a5d !important;
}

.text-red {
    color: #FF0000 !important;
}

.text-transparent {
    color: transparent !important;
}

.bg-redlight-gradient {
    background: linear-gradient(135deg, #ff4c4c, #ff0000, #c11c1c) !important;
}

.btn-logout {
    display: inline-block;
    cursor: pointer;
    font-size: 12px;
    padding: 100% 5px;
    vertical-align: bottom;
    border-radius: 5px;
    border: 0;
    background: linear-gradient(135deg, #f0f0f008, #e0e0e008);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.btn-logout:hover {
    background: linear-gradient(135deg, #FF4C4C, #8B0000);
    color: #fff;
}

.fw-500 {
    font-weight: 500;
}

.btn-user-item {
    display: inline-block;
    cursor: pointer;
    width: 40px;
    height: 40px;
    vertical-align: super;
    border-radius: 100px;
    border: 0;
    background: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
    font-size: 18px;
}

.btn-user-item:hover {
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    color: #fff;
}

.btn-user-item i {
    margin-top: 12px;
    margin-left: -1px;
}

.user-item {
    position: relative;
}

.badge-messages {
    position: absolute;
    right: 2px;
    bottom: 12px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 10px;
    padding: 3px 5px;
    background: linear-gradient(135deg, #FF4C4C, #8B0000);
}

.btn-choose-option {
    display: inline-block;
    cursor: pointer;
    font-size: 18px;
    padding: 10px 20px;
    border: 0;
    background: none;
    color: #fff;
    position: relative;
    transition: background 0.3s ease-in-out-in-out, color 0.3s ease-in-out;
    overflow: hidden;
}

.btn-choose-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transform: skewX(-30deg);
    transition: all 0.5s ease;
    z-index: 0;
}

.btn-choose-option:not(.active):not(.disabled):hover::before {
    left: 110%;
}

.btn-choose-option span {
    position: relative;
    z-index: 1;
}

.btn-choose-option:not(.active):not(.disabled):hover span {
    animation: textGlow 1.5s ease-in-out infinite alternate;
}

.btn-choose-option:not(.btn-peach):not(.active):not(.disabled):hover {
    background: linear-gradient(135deg, #6c88eb, #4b0082);
    color: #fff;
}

.btn-choose-option.btn-peach:not(.active):not(.disabled):hover {
    background: linear-gradient(135deg, #ff6a5d, #ff3535);
    color: #fff;
}

.btn-choose-option.active {
    display: inline-block;
    cursor: default;
    font-size: 18px;
    padding: 10px 20px;
    border: 0;
    background: linear-gradient(135deg, #6c88eb, #4b0082);
    color: #fff;
    position: relative;
    transition: background 0.3s ease-in-out-in-out, color 0.3s ease-in-out;
    overflow: hidden;
}

.btn-choose-option.btn-peach.active {
    display: inline-block;
    width: max-content;
    cursor: default;
    font-size: 18px;
    padding: 10px 20px;
    border: 0;
    background: linear-gradient(135deg, #ff6a5d, #ff3535);
    color: #fff;
    position: relative;
    transition: background 0.3s ease-in-out-in-out, color 0.3s ease-in-out;
    overflow: hidden;
}

.btn-choose-option.disabled {
    cursor: default;
}

.text-main-grey {
    color: #C0C0C0;
}

.hero-card {
    border: 3px solid #b668ff;
    border-radius: 8px;
    background: #1a1b2e;
    padding: 20px 20px;
    line-height: 10px;
    text-align: center;
    position: relative;
    height: max-content;
}

.hero-card hr {
    color: #b668ff;
    opacity: 1;
    border-width: 3px;
    margin: 30px 0px;
}

.hero-card h1 {
    font-size: 28px;
}

.hero-card p {
    font-size: 18px;
}

.hero-card .info-item div:last-child {
    font-weight: 500;
    color: #fff;
}

.hero-card .info-section {
    margin-bottom: 70px;
    line-height: 32px;
}

.hero-card .cta {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    padding: 22px 50px;
    border-radius: 8px 8px 0px 0px;
    color: #fff;
    transition: background 0.3s ease-in-out-in-out, color 0.3s ease-in-out;
    overflow: hidden;
    font-weight: 500;
    font-size: 19px;
}

.hero-card .cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transform: skewX(-30deg);
    transition: all 0.5s ease;
    z-index: 0;
}

.hero-card .cta:hover::before {
    left: 118%;
}

.hero-messages {
    border: 3px solid #b668ff;
    border-radius: 8px;
    background: #1a1b2e;
    padding: 45px 20px 20px 20px;
    line-height: 10px;
    position: relative;
    overflow: hidden;
}

.hero-messages .cta {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    padding: 8px 50px;
    border-radius: 0px 0px 8px 8px;
    color: #fff;
    transition: background 0.3s ease-in-out-in-out, color 0.3s ease-in-out;
    overflow: hidden;
    font-weight: 500;
    font-size: 12px;
    width: max-content;
    line-height: 16px;
}

.hero-messages-content {
    overflow-y: auto;
    line-height: 24px;
    padding-top: 5px;
}

.w-max-content {
    width: max-content;
}

.special {
    font-weight: 700;
    color: #FFF;
    letter-spacing: 0.5px;
}

.ls-05 {
    letter-spacing: 0.5px;
}

.text-justify {
    text-align: justify;
}

.fs-7 {
    font-size: 14px !important;
}

.fs-8 {
    font-size: 12px !important;
}

.fs-9 {
    font-size: 10px !important;
}

#info-carousel .carousel-indicators {
    position: absolute;
    bottom: 0;
    margin-bottom: 0;
}

.how-it-works .steps .col-md-1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-it-works .steps h3 {
    color: #fff;
}

.how-it-works .steps i.arrow {
    color: #ff6a5d;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.hero-messages-content::-webkit-scrollbar,
.table-responsive::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.hero-messages-content::-webkit-scrollbar-track,
.table-responsive::-webkit-scrollbar-track {
    background: #221f2a;
}

.hero-messages-content::-webkit-scrollbar-thumb,
.table-responsive::-webkit-scrollbar-thumb {
    background: #b668ff;
    border-radius: 10px;
}

.hero-messages-content::-webkit-scrollbar-thumb:hover,
.table-responsive::-webkit-scrollbar-thumb:hover {
    cursor: pointer;
    background: #ff6a5d;
}

.mb-6 {
    margin-bottom: 6rem;
}

.accordion {
    --bs-accordion-bg: none !important;
    --bs-accordion-color: #C0C0C0 !important;
    --bs-accordion-active-bg: none !important;
    --bs-accordion-active-color: #C0C0C0 !important;
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e") !important;
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e") !important;
    border: 0;
}

.accordion-button {
    font-weight: 700;
    color: #C0C0C0;
    letter-spacing: 0.5px;
}

.accordion-body {
    color: #C0C0C0;
}

.accordion-button:not(.collapsed) {
    color: #FFF;
}

.accordion-item {
    border: 0 !important;
}

footer {
    padding: 50px 0px 0px 0px;
}

.table th,
.table td {
    padding: .5rem;
    min-width: max-content;
    vertical-align: middle;
    text-wrap: nowrap;
}

.table tbody tr {
    border-bottom: 1px solid #27283d;
}

.table tbody tr:not(.non-clickable):hover {
    cursor: pointer;
    background: linear-gradient(to bottom, #2f3650, #27283d);
}

.ico-text-center {
    display: flex !important;
    align-items: center;
    gap: 5px;
}

.d-flex-centered {
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-pricelist th:first-child {
    background: linear-gradient(135deg, #8a2be2, #24003f);
    border: 1px solid #24003f;
    color: #FFF;
}

.table-pricelist th:not(:first-child) {
    border: 1px solid #24003f;
}

.table-pricelist td:first-child {
    background: linear-gradient(135deg, #8a2be2, #24003f);
    border: 1px solid #24003f;
    color: #FFF;
}

.table-pricelist td:not(:first-child) {
    border: 1px solid #24003f;
}

.ql-toolbar.ql-snow {
    background: #221f2a;
    border: 0 !important;
}

.ql-snow .ql-stroke {
    stroke: #FFF !important;
}

.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill {
    fill: #FFF !important;
}

.ql-snow .ql-picker {
    color: #FFF !important;
}

.ql-editor {
    min-height: 200px;
}

.ql-container.ql-snow {
    border: 0 !important;
}

.ql-snow .ql-picker-options {
    background-color: #221f2a !important;
}

.hero-messages-content p {
    line-height: 22px;
    margin-bottom: 0px;
}

.hero-messages-content p,
.ql-align-left {
    text-align: left;
}

.ql-align-center {
    text-align: center !important;
}

.ql-align-right {
    text-align: right !important;
}

.ql-font-monospace {
    font-family: monospace;
}

.ql-font-roboto {
    font-family: roboto;
}

.ql-bold {
    font-weight: bold;
}

.ql-italic {
    font-style: italic;
}

.ql-underline {
    text-decoration: underline;
}

.ql-strike {
    text-decoration: line-through;
}

h1.ql-size-huge {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

h2.ql-size-large {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

h3.ql-size-medium {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

h4.ql-size-small {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

h5.ql-size-xsmall {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

h6.ql-size-xxsmall {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-messages-content ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.hero-messages-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.hero-messages-content ul li,
ol li {
    margin-bottom: 10px;
    margin-top: 10px;
}

.hero-messages-content blockquote {
    font-style: italic;
    margin-left: 20px;
    border-left: 4px solid #ddd;
    padding-left: 15px;
    color: #777;
}

.hero-messages-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.mt-5rem {
    margin-top: 5rem;
}

.w-fit {
    width: fit-content !important;
}

.rating-bar {
    height: 10px;
    background: #444;
    border-radius: 5px;
    overflow: hidden;
}

.category-badge {
    background: #404055;
    color: #fff;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
    margin-right: 5px;
    white-space: nowrap;
}

.review-actions {
    border-top: 1px solid #404055;
    padding-top: 15px;
}

.btn-custom {
    background: #6b48ff;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.btn-custom:hover {
    background: #5a3de6;
}

.loading {
    text-align: center;
    color: #ccc;
}

.rating-link {
    cursor: pointer;
    color: #ffd700;
}

.rating-link:hover {
    color: #ffeb3b;
}

.star {
    width: 1.2em;
    height: 1.2em;
    transition: transform 0.2s ease, filter 0.2s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.star:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.star path {
    transition: fill 0.3s ease;
}

.additional-rating {
    gap: 10px;
    justify-content: center;
    padding: 0px 12px;
}

.pagination .page-item .page-link {
    border-radius: 50px;
    margin: 4px 2px;
    font-size: 14px;
    border: 0;
    color: #fff;
    background: #696969;
}

.pagination .page-item .page-link:hover {
    background: #808080;
}

.pagination .page-item.active .page-link {
    background-color: #6b48ff;
}

.partners {
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.05) 0%, rgba(255, 102, 51, 0.05) 100%);
}

.partners-logos-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    border-radius: 15px;
    padding: 60px 0;
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.partners-logos {
    display: flex !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    align-items: center;
    white-space: nowrap;
    gap: 60px;
    width: max-content;
}

.partners-logos.scrolling {
    animation: scroll-logos 40s linear infinite;
}

.partners-logos.centered {
    animation: none;
    justify-content: center;
    width: 100%;
}

.partners-logos .logo-item {
    flex: 0 0 auto;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 90px;
    z-index: 1;
    position: relative;
}

.partners-logos .logo-item:hover {
    z-index: 10;
}

.partners-logo {
    max-height: 160px;
    max-width: 360px;
    width: auto;
    height: auto;
    filter: grayscale(0%) opacity(0.8);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    object-fit: contain;
    cursor: pointer;
}

.partners-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25%);
    }
}

.partners-logos-container:hover .partners-logos.scrolling {
    animation-play-state: paused;
}

.custom-dropdown .dropdown-toggle::after {
    display: none;
}

.custom-dropdown .custom-chevron {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.custom-dropdown:hover .custom-chevron {
    transform: rotate(-90deg);
}

.custom-dropdown {
    position: relative;
}

.custom-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
    z-index: 1000;
}

.custom-dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.custom-dropdown .dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(182, 104, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.custom-dropdown .dropdown-item:hover {
    background-color: rgba(182, 104, 255, 0.15);
    color: #e0a6ff;
    padding-left: 23px;
}

.custom-dropdown .dropdown-item:hover::before {
    left: 100%;
}

.dropdown-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(182, 104, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.dropdown-item.active {
    background-color: rgba(182, 104, 255, 0.15);
    color: #e0a6ff;
    padding-left: 23px;
}

.dropdown-item.active::after {
    content: '';
    position: absolute;
    left: 0 !important;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 70% !important;
    background: linear-gradient(180deg, #8a2be2, #ff6a5d);
    transition: height 0.3s ease;
}

.custom-dropdown .dropdown-toggle {
    transition: all 0.3s ease;
    position: relative;
}

.custom-dropdown:hover .dropdown-toggle {
    color: #b668ff !important;
}

.side-panel {
    position: fixed;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.side-panel-item {
    display: flex;
    align-items: center;
    border-radius: 50px;
    padding: 11px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(138, 43, 226, 0.3);
}

.side-panel-item:hover {
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    border-color: #8a2be2;
}

.side-panel-item.expanded {
    width: 235px;
}

.side-panel-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    position: absolute;
}

.side-panel-text {
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
    font-size: 14px;
    margin-left: 35px;
}

.side-panel-item.expanded .side-panel-text {
    opacity: 1;
}

.news-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    animation: news-badge-pulse 2s infinite;
}

@keyframes news-badge-pulse {

    0%,
    100% {
        transform: scale(1);

    }

    50% {
        transform: scale(1.1);

    }
}

.news-slider {
    position: fixed;
    left: -800px;
    top: 0;
    width: 800px;
    height: 100vh;
    background: linear-gradient(135deg, #27283d 0%, #1a1b2e 100%);
    z-index: 10002;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.news-slider.active {
    left: 0;
}

.news-slider-header {
    padding: 22px 20px;
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-slider-header h3 {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.news-slider-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.news-slider-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.news-slider-content {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.news-slider-content::-webkit-scrollbar {
    width: 6px;
}

.news-slider-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.news-slider-content::-webkit-scrollbar-thumb {
    background: #8a2be2;
    border-radius: 10px;
}

.news-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 3px solid #8a2be2;
    transition: all 0.5s ease;
}

.news-item-date {
    color: #b668ff;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-item-content {
    color: #C0C0C0;
    line-height: 1.6;
    font-size: 14px;
}

.news-item.unread {
    background: rgba(138, 43, 226, 0.15);
    border-left: 4px solid #b668ff;
    position: relative;
    animation: slideInLeft 0.4s ease;
}

.news-item.unread::before {
    content: 'NOWY';
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

.news-item.unread .news-item-date {
    color: #ff6a5d;
    font-weight: 700;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-modern.sticky {
    position: sticky;
    top: 60px;
}

.servers-showcase,
.features-modern,
.faq-modern {
    padding-top: 60px;
}

.hero-modern {
    position: relative;
    top: 0;
    min-height: 100vh;
    margin-top: 0;
    padding: calc(var(--header-height-total, 80px) + 40px) 0 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.liquid-glass-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.glass-blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3), rgba(75, 0, 130, 0.2));
    animation: morphBlob 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    right: -50px;
    animation-delay: -7s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: 30%;
    animation-delay: -14s;
}

@keyframes morphBlob {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(30px, -30px) rotate(90deg);
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: translate(-30px, 30px) rotate(180deg);
    }

    75% {
        border-radius: 50% 50% 50% 50% / 40% 70% 30% 60%;
        transform: translate(30px, 30px) rotate(270deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 106, 93, 0.1);
    border: 1px solid rgba(255, 106, 93, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    color: #ff6a5d;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge i {
    animation: fireFlicker 2s ease-in-out infinite;
}

@keyframes fireFlicker {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.gradient-text {
    background: linear-gradient(135deg, #8a2be2, #ff6a5d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: 20px;
    color: #C0C0C0;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 0;
}

.btn-main::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-main:hover::before {
    width: 400px;
    height: 300px;
}

.btn-main span {
    position: relative;
    z-index: 1;
}

.btn-main i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-main:hover i {
    transform: translateX(5px);
}

.btn-purple {
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    color: #fff;
}

.btn-purple:hover {
    transform: translateY(-3px);
}

.btn-peach {
    background: linear-gradient(135deg, #ff6a5d, #ff3535);
    color: #fff;
}

.btn-peach:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-value {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #8a2be2, #ff6a5d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.hero-stat-label {
    color: #C0C0C0;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.servers-showcase {
    padding: 50px 0;
    background: rgba(0, 0, 0, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 20px;
    color: #C0C0C0;
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.server-card {
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.8), rgba(26, 27, 46, 0.8));
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid rgba(138, 43, 226, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.server-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.server-card:hover::before {
    opacity: 1;
}

.server-card:hover {
    transform: translateY(-10px);
    border-color: #8a2be2;
}

.server-card.featured {
    border-color: #8a2be2;
}

.server-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 106, 93, 0.2);
    color: #ff6a5d;
    padding: 6px 15px 4px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 106, 93, 0.3);
}

.server-card-badge.purple {
    background: rgba(138, 43, 226, 0.2);
    color: #b668ff;
    border-color: rgba(138, 43, 226, 0.3);
}

.server-card-icon {
    width: 80px;
    height: 80px;
    margin: 25px auto 25px;
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    transition: transform 0.3s ease;
}

.server-card:hover .server-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #8a2be2, #ff6a5d);
    transition: transform 0.3s ease;
}

.server-card-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.server-card-price {
    margin-bottom: 30px;
}

.price-value {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #8a2be2, #ff6a5d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.server-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.server-card-features li {
    padding: 12px 0;
    color: #C0C0C0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.server-card-features li:last-child {
    border-bottom: none;
}

.server-card-features i {
    color: #00c20c;
    font-size: 14px;
}

.server-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.server-card-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.server-card-btn:hover::before {
    width: 400px;
    height: 400px;
}

.server-card-btn span {
    position: relative;
    z-index: 1;
}

.server-card-btn:hover {
    transform: scale(1.05);
}

.features-modern {
    padding: 50px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(39, 40, 61, 0.5);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(138, 43, 226, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(39, 40, 61, 0.8);
    border-color: #8a2be2;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(255, 106, 93, 0.2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #b668ff;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #8a2be2, #ff6a5d);
    color: #fff;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.feature-card p {
    color: #C0C0C0;
    line-height: 1.6;
    margin: 0;
}

.faq-modern {
    padding: 50px 0;
    background: rgba(0, 0, 0, 0.2);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(39, 40, 61, 0.5);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(138, 43, 226, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #8a2be2;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.faq-question i {
    color: #b668ff;
    transition: transform 0.3s ease;
    font-size: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
    transition: max-height 0.4s ease, padding 0.2s ease;
}

.faq-answer p {
    margin: 0;
    color: #C0C0C0;
    line-height: 1.6;
}

.py-2-lg {
    padding-top: .80rem !important;
    padding-bottom: .80rem !important;
}

.elastic-modern {
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(255, 106, 93, 0.1));
    position: relative;
    overflow: hidden;
}

.elastic-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(138, 43, 226, 0.2), transparent 50%);
    opacity: 0.5;
}

.elastic-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.elastic-feature-card {
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.8), rgba(26, 27, 46, 0.8));
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 2px solid rgba(138, 43, 226, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.elastic-feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.elastic-feature-card:hover::before {
    opacity: 1;
}

.elastic-feature-card:hover {
    transform: translateY(-10px);
    border-color: #8a2be2;
}

.elastic-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    transition: transform 0.3s ease;
}

.elastic-feature-card:hover .elastic-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #8a2be2, #ff6a5d);
}

.elastic-feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.elastic-feature-card p {
    color: #C0C0C0;
    line-height: 1.6;
    margin: 0 0 15px;
}

.elastic-rates {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.elastic-rates li {
    padding: 8px 0;
    color: #C0C0C0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.elastic-rates li:last-child {
    border-bottom: none;
}

.elastic-rates li span {
    color: #b668ff;
    font-weight: 600;
}

.elastic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.elastic-info-card {
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.8), rgba(26, 27, 46, 0.8));
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(138, 43, 226, 0.2);
    margin-bottom: 25px;
}

.elastic-note-card {
    background: rgba(138, 43, 226, 0.05);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 18px;
    padding: 30px 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.elastic-note-card i {
    font-size: 20px;
    color: #b668ff;
    flex-shrink: 0;
}

.elastic-note-card p {
    margin: 0;
    font-size: 14px;
    color: #C0C0C0;
    line-height: 1.5;
}

.elastic-note-card .fa-fire {
    color: #ff6a5d;
    margin-left: 5px;
}

.elastic-info-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.elastic-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.elastic-info-card ul li {
    padding: 12px 0;
    color: #C0C0C0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.elastic-info-card ul li:last-child {
    border-bottom: none;
}

.elastic-info-card ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #00c20c;
    font-size: 14px;
}

.elastic-calc-card {
    background: rgba(26, 27, 46, 0.95);
    border-radius: 24px;
    padding: 35px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    position: relative;
    overflow: hidden;
}

.elastic-calc-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.elastic-calc-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

.elastic-calc-header i {
    font-size: 32px;
    background: linear-gradient(135deg, #ff6a5d, #ff3535);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.elastic-calc-header h4 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -0.5px;
}

.elastic-form .two-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.elastic-form .form-group {
    margin-bottom: 0;
}

.elastic-form label {
    font-size: 14px;
    font-weight: 600;
    color: #C0C0C0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.elastic-form label i {
    color: #b668ff;
    font-size: 14px;
}

.elastic-form input[type="number"],
.elastic-form select {
    width: 100%;
    padding: 12px 20px;
    border-radius: 14px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.elastic-form select option {
    background: #2d2c40;
    color: #fff;
}

.elastic-form input[type="number"]:focus,
.elastic-form select:focus {
    background: rgba(138, 43, 226, 0.1);
    border-color: #8a2be2;
    outline: none;
}

.elastic-form .input-group {
    display: flex;
    gap: 12px;
}

.elastic-form .input-group select {
    flex: 1;
}

.elastic-form .checkbox-panel {
    margin: 10px 0 25px 0;
}

.calc-breakdown {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0;
}

.breakdown-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.item-label {
    font-size: 14px;
    color: rgba(192, 192, 192, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.item-label i {
    color: #b668ff;
    width: 16px;
    text-align: center;
}

.item-value {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.breakdown-total {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid rgba(138, 43, 226, 0.3);
    text-align: center;
}

.total-value {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.total-value span {
    background: linear-gradient(135deg, #8a2be2, #ff6a5d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(138, 43, 226, 0.3));
}

.total-value small {
    font-size: 16px;
    font-weight: 700;
    color: #b668ff;
}

.calc-result {
    text-align: center;
    margin-top: 15px;
    color: #ff6a5d;
    font-size: 14px;
    font-weight: 500;
}

.elastic-note {
    margin-top: 30px;
    text-align: center;
    color: #C0C0C0;
    font-size: 14px;
    opacity: 0.8;
}

.reviews-modern {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: rgba(26, 27, 46, 0.95);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 24px;
    padding: 35px;
    margin-bottom: 1.5rem;
    color: #ddd;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: rgba(138, 43, 226, 0.6);
}

.review-quote-icon {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 40px;
    color: rgba(138, 43, 226, 0.1);
    pointer-events: none;
    transition: all 0.3s ease;
}

.review-card:hover .review-quote-icon {
    color: rgba(138, 43, 226, 0.2);
    transform: scale(1.1);
}

.review-user-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.review-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #8a2be2, #ff6a5d);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

.review-user-details {
    flex: 1;
}

.review-author {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px 0;
}

.review-rating {
    margin-bottom: 20px;
}

.rating-stars {
    color: #ffd700;
    font-size: 32px;
    display: flex;
    align-items: center;
	justify-content: center;
    gap: 5px;
}

.rating-stars i {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.rating-stars i.empty {
    color: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.review-title {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.review-content {
    font-size: 15px;
    color: #C0C0C0;
    line-height: 1.7;
    margin: 0;
}

.rating-stars .empty {
    color: #404055;
}

.contact-modern {
    padding: 50px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-card {
    background: rgba(26, 27, 46, 0.9);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.contact-form-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-form-header i {
    font-size: 32px;
    background: linear-gradient(135deg, #ff6a5d, #ff3535);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-form-header h3 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -0.5px;
}

.contact-form-info {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 14px;
    padding: 15px 20px;
    margin-bottom: 30px;
}

.contact-form-info i {
    color: #b668ff;
    font-size: 20px;
}

.contact-form-info p {
    margin: 0;
    color: #C0C0C0;
    font-size: 14px;
    line-height: 1.5;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #C0C0C0;
    margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 22px;
    border-radius: 14px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form textarea {
    border-radius: 18px;
    resize: vertical;
    min-height: 140px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: rgba(138, 43, 226, 0.08);
    border-color: #8a2be2;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(128, 128, 128, 0.6);
}

.contact-submit-btn {
    width: 100%;
    margin-top: 10px;
}

.contact-form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.contact-form-message.success {
    background: rgba(0, 156, 0, 0.2);
    border: 1px solid #009C00;
    color: #00c20c;
    display: block;
}

.contact-form-message.error {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid #FF0000;
    color: #ff6a5d;
    display: block;
}

.contact-alternative-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-alternative-card {
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.8), rgba(26, 27, 46, 0.8));
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(138, 43, 226, 0.2);
    text-align: center;
}

.contact-alternative-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
}

.contact-alternative-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.contact-alternative-card p {
    color: #C0C0C0;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-features {
    text-align: left;
    margin-bottom: 30px;
}

.contact-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #C0C0C0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-feature-item:last-child {
    border-bottom: none;
}

.contact-feature-item i {
    color: #00c20c;
    font-size: 14px;
}

.contact-info-card {
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.8), rgba(26, 27, 46, 0.8));
    border-radius: 20px;
    padding: 25px;
    border: 2px solid rgba(138, 43, 226, 0.2);
}

.contact-info-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item i {
    font-size: 24px;
    color: #b668ff;
    min-width: 30px;
}

.contact-info-item div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-info-item strong {
    color: #fff;
    font-size: 14px;
}

.contact-info-item span {
    color: #C0C0C0;
    font-size: 13px;
}

.pricing-hero {
    position: relative;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height-total, 80px) + 40px) 0 80px;
    overflow: hidden;
}

.pricing-hero .hero-content {
    max-width: 700px;
}

.pricing-hero .hero-title {
    font-size: 54px;
}

.pricing-hero .hero-description {
    font-size: 18px;
}

.pricing-cards-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.pricing-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 15px;
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature .feature-label {
    color: #C0C0C0;
    font-size: 14px;
    flex: 1;
}

.pricing-feature .feature-value {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-align: right;
}

.pricing-mobile-footer {
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-mobile-footer .btn-main {
    width: 100%;
    justify-content: center;
}

.pricing-table-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-table-scroll {
    overflow-x: auto;
    border-radius: 20px;
}

.pricing-table-scroll::-webkit-scrollbar {
    height: 8px;
}

.pricing-table-scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.pricing-table-scroll::-webkit-scrollbar-thumb {
    background: #8a2be2;
    border-radius: 10px;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.8), rgba(26, 27, 46, 0.8));
}

.pricing-table thead tr {
    background: rgba(0, 0, 0, 0.3);
}

.pricing-table th {
    padding: 0;
    border: none;
    vertical-align: middle;
}

.pricing-table th:first-child {
    border-radius: 20px 0 0 0;
}

.pricing-table th:last-child {
    border-radius: 0 20px 0 0;
}

.feature-column {
    width: 25%;
    min-width: 250px;
}

.plan-column {
    width: 25%;
    min-width: 200px;
    position: relative;
}

.plan-column.featured {
    background: linear-gradient(180deg, rgba(138, 43, 226, 0.15), transparent);
}

.table-header-content {
    padding: 30px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.table-header-content i {
    color: #b668ff;
    font-size: 20px;
}

.plan-header {
    padding: 60px 10px 20px 10px;
    text-align: center;
}

.plan-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
}

.plan-header h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.plan-price {
    color: #C0C0C0;
}

.plan-price .price-value {
    display: inline-block;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #8a2be2, #ff6a5d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-price .price-label {
    display: block;
    font-size: 12px;
    margin-top: 5px;
}

.pricing-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table td {
    padding: 18px 25px;
    text-align: center;
    color: #ccc;
}

.game-pricing-section {
    padding: 40px 0px 20px 0px;
    background: rgba(0, 0, 0, 0.2);
}

.game-pricing-toggle {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(255, 106, 93, 0.1));
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.game-pricing-toggle:hover {
    border-color: rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(251, 146, 60, 0.15) 100%);
    transform: translateY(-2px);
}

.game-pricing-toggle-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.game-pricing-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.game-pricing-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-pricing-info h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.game-pricing-info p {
    margin: 0;
    font-size: 14px;
}

.game-pricing-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.game-pricing-arrow i {
    color: #8b5cf6;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.game-pricing-toggle.active .game-pricing-arrow i {
    transform: rotate(180deg);
}

.game-pricing-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-pricing-content.active {
    max-height: 5000px;
}

.game-pricing-inner {
    padding-top: 10px;
}

.calculator-modern {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.calculator-form-card {
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.9), rgba(26, 27, 46, 0.9));
    border-radius: 20px;
    padding: 35px;
    border: 2px solid rgba(138, 43, 226, 0.2);
}

.calculator-form-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.calculator-form-header i {
    font-size: 28px;
    color: #ff6a5d;
}

.calculator-form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.calculator-form .form-group {
    margin-bottom: 25px;
}

.calculator-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.calculator-form label i {
    color: #b668ff;
    font-size: 16px;
}

.badge-slot {
    margin-left: auto;
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.calc-select {
    width: 100%;
    padding: 12px 16px;
    background: #2d2c40;
    border: 2px solid rgba(138, 43, 226, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calc-select:focus {
    outline: none;
    border-color: #8a2be2;
    background: #2d2c40;
}

.calc-range {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #8a2be2, #ff6a5d);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.calc-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #8a2be2, #ff6a5d);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: #808080;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(138, 43, 226, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-option:hover {
    background: rgba(138, 43, 226, 0.05);
    border-color: rgba(138, 43, 226, 0.3);
}

.checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #8a2be2;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #C0C0C0;
    font-size: 14px;
    flex: 1;
}

.option-price {
    margin-left: auto;
    color: #b668ff;
    font-weight: 600;
    font-size: 13px;
}

.calculator-result-card {
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.9), rgba(26, 27, 46, 0.9));
    border-radius: 20px;
    padding: 35px;
    border: 2px solid rgba(138, 43, 226, 0.2);
}

.result-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.result-header i {
    font-size: 28px;
    color: #ff6a5d;
}

.result-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.result-breakdown {
    margin-bottom: 25px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
}

.breakdown-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.breakdown-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #C0C0C0;
    font-size: 14px;
}

.breakdown-label i {
    color: #00c20c;
    font-size: 12px;
}

.breakdown-value {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.result-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #8a2be2, transparent);
    margin: 25px 0;
}

.result-total {
    text-align: center;
    margin-bottom: 25px;
}

.total-label {
    font-size: 14px;
    font-weight: 600;
    color: #C0C0C0;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.total-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #8a2be2, #ff6a5d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-currency {
    display: block;
    color: #C0C0C0;
    font-size: 24px;
    margin-top: 5px;
    font-weight: 600;
}

.total-note {
    display: block;
    color: #b668ff;
    font-size: 13px;
    font-weight: 500;
}

.result-actions {
    display: flex;
    gap: 12px;
}

.result-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    flex: 1;
}

.btn-order {
    background: linear-gradient(135deg, #00c20c, #009C00);
    color: #fff;
}

.btn-order:hover {
    transform: translateY(-2px);
    color: #fff;
}

.calculator-info-box {
    margin-top: 20px;
    padding: 30px 20px;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    display: flex;
    gap: 15px;
}

.calculator-info-box i {
    font-size: 24px;
    color: #ffd700;
    min-width: 24px;
}

.calculator-info-box strong {
    display: block;
    color: #fff;
    margin-bottom: 5px;
    font-size: 14px;
}

.calculator-info-box p {
    color: #C0C0C0;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.stats-card {
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.9), rgba(26, 27, 46, 0.9));
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 2rem;
    border: 2px solid rgba(138, 43, 226, 0.2);
}

.rating-breakdown {
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rating-breakdown-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rating-breakdown-item:hover {
    background: rgba(138, 43, 226, 0.1);
    transform: translateX(5px);
}

.rating-label {
    min-width: 80px;
    font-size: 16px;
    font-weight: 600;
    color: #ffd700;
}

.rating-bar-container {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    transition: width 0.5s ease;
    border-radius: 10px;
}

.rating-count {
    min-width: 40px;
    text-align: right;
    font-weight: 600;
    color: #b668ff;
    font-size: 16px;
}

.filters-card {
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.8), rgba(26, 27, 46, 0.8));
    border-radius: 15px;
    padding: 25px;
    border: 2px solid rgba(138, 43, 226, 0.2);
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #C0C0C0;
    margin-bottom: 10px;
}

.filter-label i {
    color: #b668ff;
}

.filter-select {
    width: 100%;
    padding: 12px 16px;
    background: #2d2c40;
    border: 2px solid rgba(138, 43, 226, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: #8a2be2;
    background: #2d2c40;
}

.review-card-modern {
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.8), rgba(26, 27, 46, 0.8));
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    border: 2px solid rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.review-card-modern:hover {
    border-color: #8a2be2;
    transform: translateY(-5px);
}

.review-card-modern.featured {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(138, 43, 226, 0.05));
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1b2e;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-badge i {
    font-size: 14px;
}

.review-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}

.review-author-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.review-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8a2be2, #ff6a5d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.review-author-info {
    flex: 1;
}

.review-author-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
}

.review-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 194, 12, 0.2);
    border: 1px solid rgba(0, 194, 12, 0.3);
    color: #00c20c;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.verified-badge i {
    font-size: 14px;
}

.review-meta-section {
    text-align: right;
}

.review-date {
    font-size: 14px;
    color: #C0C0C0;
    display: block;
    margin-bottom: 8px;
}

.review-stats-mini {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #808080;
    justify-content: flex-end;
}

.review-stats-mini span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-stats-mini i {
    color: #b668ff;
}

.review-rating-modern {
    margin-bottom: 20px;
}

.review-title-modern {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.review-content-modern {
    color: #C0C0C0;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.additional-ratings-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.additional-rating-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-name {
    font-size: 13px;
    font-weight: 600;
    color: #C0C0C0;
}

.rating-stars-small {
    display: flex;
    gap: 4px;
    color: #ffd700;
    font-size: 16px;
}

.rating-stars-small .empty {
    color: #404055;
}

.review-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.category-tag {
    display: inline-block;
    background: rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.3);
    color: #b668ff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.review-actions-modern {
    display: flex;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.vote-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: #C0C0C0;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vote-btn:hover {
    transform: translateY(-2px);
}

.vote-helpful:hover {
    background: rgba(0, 194, 12, 0.2);
    border-color: #00c20c;
    color: #00c20c;
}

.vote-unhelpful:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #ff6a5d;
    color: #ff6a5d;
}

.admin-response-modern {
    margin-top: 20px;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(255, 106, 93, 0.1), rgba(138, 43, 226, 0.1));
    border-left: 4px solid #ff6a5d;
    border-radius: 10px;
}

.admin-response-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #ff6a5d;
    font-size: 14px;
}

.admin-response-header i {
    font-size: 16px;
}

.admin-response-date {
    margin-left: auto;
    font-size: 12px;
    color: #808080;
}

.admin-response-content {
    color: #C0C0C0;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

.alert-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    border-radius: 15px;
    font-size: 15px;
}

.alert-error {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.3);
    color: #ff6a5d;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.alert-modern i {
    font-size: 24px;
}

.form-card-modern {
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.9), rgba(26, 27, 46, 0.9));
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(138, 43, 226, 0.2);
}

.form-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(138, 43, 226, 0.2);
}

.form-card-header i {
    font-size: 32px;
    color: #ff6a5d;
}

.form-card-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.form-group-modern {
    margin-bottom: 25px;
}

.form-label-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.form-label-modern.form-label-small {
    font-size: 14px;
}

.form-label-modern i {
    color: #b668ff;
    font-size: 18px;
}

.form-input-modern,
.form-textarea-modern,
.form-select-modern {
    width: 100%;
    padding: 15px 20px;
    background: #2d2c40;
    border: 2px solid rgba(138, 43, 226, 0.2);
    border-radius: 15px;
    color: #fff;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
}

.form-input-modern:focus,
.form-textarea-modern:focus,
.form-select-modern:focus {
    outline: none;
    border-color: #8a2be2;
    background: #2d2c40;
}

.form-textarea-modern {
    resize: vertical;
    min-height: 150px;
}

.rating-select-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating-option {
    position: relative;
    cursor: pointer;
}

.rating-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rating-option-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(138, 43, 226, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.rating-option:hover .rating-option-content {
    background: rgba(138, 43, 226, 0.1);
    border-color: #8a2be2;
}

.rating-option input[type="radio"]:checked+.rating-option-content {
    background: rgba(138, 43, 226, 0.2);
    border-color: #8a2be2;
}

.rating-stars-display {
    display: flex;
    gap: 5px;
    font-size: 20px;
    color: #ffd700;
}

.rating-stars-display .empty {
    color: #404055;
}

.rating-label-text {
    font-weight: 600;
    color: #C0C0C0;
    font-size: 15px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.category-checkbox {
    position: relative;
    cursor: pointer;
}

.category-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.category-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(138, 43, 226, 0.2);
    border-radius: 10px;
    font-size: 14px;
    color: #C0C0C0;
    transition: all 0.3s ease;
}

.category-checkbox-label i {
    font-size: 16px;
    color: #8a2be2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-checkbox:hover .category-checkbox-label {
    background: rgba(138, 43, 226, 0.1);
    border-color: #8a2be2;
}

.category-checkbox input[type="checkbox"]:checked+.category-checkbox-label {
    background: rgba(138, 43, 226, 0.2);
    border-color: #8a2be2;
    color: #fff;
}

.category-checkbox input[type="checkbox"]:checked+.category-checkbox-label i {
    opacity: 1;
}

.additional-ratings-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(138, 43, 226, 0.2);
}

.section-divider {
    text-align: center;
    margin-bottom: 25px;
}

.section-divider span {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    color: #b668ff;
    font-size: 14px;
    font-weight: 600;
}

.reward-info {
    display: flex;
    gap: 15px;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(0, 194, 12, 0.1), rgba(138, 43, 226, 0.1));
    border: 2px solid rgba(0, 194, 12, 0.3);
    border-radius: 15px;
    margin-top: 30px;
}

.reward-info i {
    font-size: 32px;
    color: #00c20c;
}

.reward-info strong {
    display: block;
    color: #fff;
    margin-bottom: 5px;
    font-size: 16px;
}

.reward-info p {
    color: #C0C0C0;
    margin: 0;
    line-height: 1.6;
    font-size: 14px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(138, 43, 226, 0.2);
}

.form-actions .btn-main {
    flex: 1;
}

.auth-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.auth-form-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.auth-form-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(138, 43, 226, 0.2);
    position: relative;
    z-index: 1;
}

.auth-form-header i {
    font-size: 42px;
    background: linear-gradient(135deg, #ff6a5d, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: afh-pulse 2s ease-in-out infinite;
}

@keyframes afh-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.auth-form-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 5px 0;
}

.auth-form-header p {
    font-size: 15px;
    color: #C0C0C0;
    margin: 0;
}

.auth-form-group {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.auth-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #C0C0C0;
    margin-bottom: 10px;
}

.auth-label i {
    color: #b668ff;
    font-size: 14px;
}

.auth-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-icon {
    position: absolute;
    left: 20px;
    font-size: 18px;
    color: #b668ff;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 2;
}

.auth-input {
    width: 100%;
    padding: 16px 20px 16px 55px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(138, 43, 226, 0.2);
    border-radius: 15px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.auth-input::placeholder {
    color: #808080;
}

.auth-input:focus {
    outline: none;
    border-color: #8a2be2;
    background: rgba(138, 43, 226, 0.1);
}

.auth-input-wrapper.focused .auth-input-icon {
    color: #ff6a5d;
    transform: scale(1.1);
}

.auth-password-toggle {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    color: #808080;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    z-index: 2;
}

.auth-password-toggle:hover {
    color: #b668ff;
    transform: scale(1.1);
}

.form-hint {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #808080;
    transition: color 0.3s ease;
    font-weight: 500;
}

.auth-consent-group {
    margin: 30px 0;
    padding: 15px;
    background: rgba(138, 43, 226, 0.05);
    border: 2px solid rgba(138, 43, 226, 0.15);
    border-radius: 15px;
    position: relative;
    z-index: 1;
}

.auth-consent-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    cursor: pointer;
    position: relative;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.auth-consent-item:last-child {
    margin-bottom: 0;
}

.auth-consent-item:hover {
    background: rgba(138, 43, 226, 0.1);
}

.auth-consent-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.auth-consent-checkmark {
    position: relative;
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-consent-checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #fff;
    font-size: 14px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-consent-checkbox:checked~.auth-consent-checkmark {
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    border-color: #8a2be2;
}

.auth-consent-checkbox:checked~.auth-consent-checkmark::after {
    opacity: 1;
    transform: scale(1);
}

.auth-consent-text {
    color: #C0C0C0;
    font-size: 14px;
    line-height: 1.6;
}

.auth-consent-text a {
    color: #b668ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-consent-text a:hover {
    color: #ff6a5d;
    text-decoration: underline;
}

.auth-recaptcha {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    position: relative;
    z-index: 1;
}

.auth-recaptcha>div {
    transform: scale(1);
    transform-origin: center;
}

.auth-alternate {
    text-align: center;
    font-size: 14px;
    color: #C0C0C0;
    position: relative;
    margin-top: 20px;
    z-index: 1;
}

.auth-alternate span {
    margin-right: 8px;
}

.auth-alternate a {
    color: #b668ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-alternate a:hover {
    color: #ff6a5d;
}

.auth-info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(138, 43, 226, 0.2);
    margin-bottom: 30px;
}

.auth-info-header i {
    font-size: 36px;
    color: #ff6a5d;
}

.auth-info-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.auth-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.auth-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    margin-bottom: 12px;
    background: rgba(138, 43, 226, 0.05);
    border: 2px solid rgba(138, 43, 226, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.auth-info-item:hover {
    background: rgba(138, 43, 226, 0.1);
    border-color: rgba(138, 43, 226, 0.3);
    transform: translateX(5px);
}

.auth-info-item i {
    font-size: 24px;
    color: #00c20c;
    min-width: 24px;
    margin-top: 3px;
}

.auth-info-item strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.auth-info-item p {
    font-size: 13px;
    color: #C0C0C0;
    margin: 0;
    line-height: 1.5;
}

.auth-info-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(75, 0, 130, 0.15));
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
}

.auth-info-badge i {
    font-size: 32px;
    color: #b668ff;
}

.auth-info-badge strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.auth-info-badge p {
    font-size: 13px;
    color: #C0C0C0;
    margin: 0;
}

.auth-success-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.auth-success-icon {
    margin-bottom: 30px;
}

.auth-success-icon i {
    font-size: 80px;
    color: #00c20c;
    animation: successPulse 1.5s ease-in-out infinite;
}

@keyframes successPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.auth-success-card h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.auth-success-card>p {
    font-size: 16px;
    color: #C0C0C0;
    line-height: 1.8;
    margin-bottom: 40px;
}

.auth-success-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.auth-success-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
    background: rgba(138, 43, 226, 0.05);
    border: 2px solid rgba(138, 43, 226, 0.15);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.auth-success-step:hover {
    background: rgba(138, 43, 226, 0.1);
    border-color: rgba(138, 43, 226, 0.3);
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.step-content strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.auth-success-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    padding: 15px 20px;
    background: rgba(255, 106, 93, 0.1);
    border: 2px solid rgba(255, 106, 93, 0.2);
    border-radius: 12px;
}

.auth-success-note i {
    font-size: 20px;
    color: #ff6a5d;
}

.auth-success-note p {
    font-size: 13px;
    color: #C0C0C0;
    margin: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-form-card {
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.95), rgba(26, 27, 46, 0.95));
    border-radius: 25px;
    padding: 45px;
    border: 2px solid rgba(138, 43, 226, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease both;
}

.auth-info-panel {
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.95), rgba(26, 27, 46, 0.95));
    border-radius: 25px;
    padding: 40px;
    border: 2px solid rgba(138, 43, 226, 0.2);
    position: sticky;
    top: 100px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.auth-success-card {
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.95), rgba(26, 27, 46, 0.95));
    border-radius: 25px;
    padding: 60px 50px;
    border: 2px solid rgba(0, 194, 12, 0.3);
    text-align: center;
    animation: fadeInUp 0.8s ease both;
}

.auth-info-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 30px 20px;
    background: rgba(138, 43, 226, 0.1);
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.auth-info-box i {
    font-size: 24px;
    color: #b668ff;
    min-width: 24px;
    margin-top: 3px;
}

.auth-info-box strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.auth-info-box p {
    font-size: 14px;
    color: #C0C0C0;
    margin: 0;
    line-height: 1.6;
}

.password-strength-wrapper {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.password-strength {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.password-strength-bar {
    height: 100%;
    width: 0%;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #ff6a5d, #ff3535);
}

.auth-forgot-link {
    text-align: right;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.auth-forgot-link a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #b668ff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.auth-forgot-link a:hover {
    color: #ff6a5d;
    transform: translateX(-3px);
}

.auth-forgot-link a i {
    font-size: 14px;
}

.legal-content-section {
    padding: 80px 0 100px 0;
    position: relative;
}

.legal-content-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.legal-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-self: flex-start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 5px;
}

.legal-sidebar::-webkit-scrollbar {
    width: 6px;
}

.legal-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.legal-sidebar::-webkit-scrollbar-thumb {
    background: rgba(138, 43, 226, 0.5);
    border-radius: 10px;
}

.legal-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(138, 43, 226, 0.7);
}

.legal-toc-card {
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.95), rgba(26, 27, 46, 0.95));
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(138, 43, 226, 0.2);
}

.legal-toc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(138, 43, 226, 0.2);
}

.legal-toc-header i {
    font-size: 24px;
    color: #ff6a5d;
}

.legal-toc-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.legal-toc-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-toc-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid transparent;
    border-radius: 12px;
    color: #C0C0C0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.legal-toc-link:hover {
    background: rgba(138, 43, 226, 0.1);
    border-color: rgba(138, 43, 226, 0.3);
    color: #fff;
    transform: translateX(5px);
}

.legal-toc-link.active {
    background: rgba(138, 43, 226, 0.2);
    border-color: #8a2be2;
    color: #fff;
}

.toc-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 8px;
    background: rgba(138, 43, 226, 0.2);
    color: #b668ff;
    font-size: 13px;
    font-weight: 700;
}

.legal-toc-link.active .toc-number {
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    color: #fff;
}

.legal-contact-card {
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.95), rgba(26, 27, 46, 0.95));
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255, 106, 93, 0.2);
    text-align: center;
}

.legal-contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6a5d, #ff3535);
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-contact-icon i {
    font-size: 28px;
    color: #fff;
}

.legal-contact-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.legal-contact-card p {
    font-size: 14px;
    color: #C0C0C0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.legal-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.legal-contact-btn:hover {
    transform: translateY(-2px);
}

.legal-main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.legal-intro-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(75, 0, 130, 0.15));
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
}

.legal-intro-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-intro-icon i {
    font-size: 24px;
    color: #fff;
}

.legal-intro-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.legal-intro-card p {
    font-size: 15px;
    color: #C0C0C0;
    line-height: 1.8;
    margin: 0;
}

.legal-section {
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.95), rgba(26, 27, 46, 0.95));
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(138, 43, 226, 0.2);
    scroll-margin-top: 100px;
}

.legal-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(138, 43, 226, 0.2);
}

.legal-section-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.legal-section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.legal-section-content {
    font-size: 15px;
    color: #C0C0C0;
    line-height: 1.8;
}

.legal-section-content p {
    margin-bottom: 20px;
}

.legal-section-content p:last-child {
    margin-bottom: 0;
}

.legal-section-content strong {
    color: #fff;
    font-weight: 600;
}

.legal-section-content a {
    color: #b668ff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.legal-section-content a:hover {
    color: #ff6a5d;
    text-decoration: underline;
}

.legal-info-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.legal-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 30px 20px;
    background: rgba(138, 43, 226, 0.1);
    border: 2px solid rgba(138, 43, 226, 0.2);
    border-radius: 15px;
}

.legal-info-item i {
    font-size: 24px;
    color: #b668ff;
    min-width: 24px;
    margin-top: 3px;
}

.legal-info-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.legal-info-item p {
    font-size: 14px;
    color: #C0C0C0;
    margin: 0;
}

.legal-data-category {
    margin-top: 25px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(138, 43, 226, 0.15);
    border-radius: 15px;
}

.legal-data-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.legal-data-category-header i {
    font-size: 22px;
    color: #ff6a5d;
}

.legal-data-category-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.legal-data-category p {
    margin-bottom: 15px;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.legal-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
}

.legal-list li:last-child {
    border-bottom: none;
}

.legal-list li i {
    font-size: 16px;
    color: #00c20c;
    min-width: 16px;
    margin-top: 3px;
}

.legal-list-numbered {
    list-style: none;
    counter-reset: legal-counter;
    padding: 0;
    margin: 20px 0;
}

.legal-list-numbered li {
    counter-increment: legal-counter;
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
}

.legal-list-numbered li::before {
    content: counter(legal-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(138, 43, 226, 0.2);
    color: #b668ff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-alert-box,
.legal-warning-box,
.legal-contact-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 30px 20px;
    margin-top: 25px;
    border-radius: 15px;
}

.legal-alert-box {
    background: rgba(138, 43, 226, 0.1);
    border: 2px solid rgba(138, 43, 226, 0.3);
}

.legal-warning-box {
    background: rgba(0, 194, 12, 0.1);
    border: 2px solid rgba(0, 194, 12, 0.3);
}

.legal-contact-box {
    background: rgba(255, 106, 93, 0.1);
    border: 2px solid rgba(255, 106, 93, 0.3);
}

.legal-alert-box i {
    font-size: 24px;
    color: #b668ff;
    min-width: 24px;
    margin-top: 3px;
}

.legal-warning-box i {
    font-size: 24px;
    color: #00c20c;
    min-width: 24px;
    margin-top: 3px;
}

.legal-contact-box i {
    font-size: 24px;
    color: #ff6a5d;
    min-width: 24px;
    margin-top: 3px;
}

.legal-alert-box strong,
.legal-warning-box strong,
.legal-contact-box strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.legal-alert-box p,
.legal-warning-box p,
.legal-contact-box p {
    margin: 0;
}

.legal-cookies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.legal-cookie-card {
    padding: 25px;
    background: rgba(138, 43, 226, 0.1);
    border: 2px solid rgba(138, 43, 226, 0.2);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.legal-cookie-card:hover {
    background: rgba(138, 43, 226, 0.15);
    border-color: rgba(138, 43, 226, 0.4);
    transform: translateY(-5px);
}

.legal-cookie-card i {
    font-size: 32px;
    color: #b668ff;
    margin-bottom: 15px;
}

.legal-cookie-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.legal-cookie-card p {
    font-size: 13px;
    color: #C0C0C0;
    margin: 0;
}

.legal-security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.legal-security-card {
    padding: 25px;
    background: rgba(0, 194, 12, 0.1);
    border: 2px solid rgba(0, 194, 12, 0.2);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.legal-security-card:hover {
    background: rgba(0, 194, 12, 0.15);
    border-color: rgba(0, 194, 12, 0.4);
    transform: translateY(-5px);
}

.legal-security-card i {
    font-size: 36px;
    color: #00c20c;
    margin-bottom: 15px;
}

.legal-security-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.legal-security-card p {
    font-size: 13px;
    color: #C0C0C0;
    margin: 0;
}

.legal-timeline {
    position: relative;
    padding-left: 40px;
    margin-top: 25px;
}

.legal-timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #8a2be2, #4b0082);
}

.legal-timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.legal-timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -33px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #8a2be2;
    border: 3px solid rgba(39, 40, 61, 1);
}

.timeline-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 14px;
    color: #C0C0C0;
    margin: 0;
}

.legal-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.legal-right-card {
    padding: 25px;
    background: rgba(138, 43, 226, 0.1);
    border: 2px solid rgba(138, 43, 226, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.legal-right-card:hover {
    background: rgba(138, 43, 226, 0.15);
    border-color: rgba(138, 43, 226, 0.4);
    transform: translateY(-5px);
}

.legal-right-card i {
    font-size: 32px;
    color: #b668ff;
    margin-bottom: 15px;
    display: block;
}

.legal-right-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.legal-right-card p {
    font-size: 13px;
    color: #C0C0C0;
    margin: 0;
}

.legal-update-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    margin-top: 25px;
    background: rgba(255, 106, 93, 0.1);
    border: 2px solid rgba(255, 106, 93, 0.2);
    border-radius: 15px;
}

.legal-update-box i {
    font-size: 24px;
    color: #ff6a5d;
    min-width: 24px;
}

.legal-update-box strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.legal-update-box p {
    margin: 0;
}

.legal-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.legal-contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    background: rgba(138, 43, 226, 0.1);
    border: 2px solid rgba(138, 43, 226, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.legal-contact-method:hover {
    background: rgba(138, 43, 226, 0.15);
    border-color: rgba(138, 43, 226, 0.3);
}

.legal-contact-method i {
    font-size: 28px;
    color: #b668ff;
    min-width: 28px;
}

.legal-contact-method strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.legal-contact-method a {
    font-size: 15px;
}

.legal-footer-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: rgba(138, 43, 226, 0.05);
    border: 2px solid rgba(138, 43, 226, 0.15);
    border-radius: 15px;
}

.legal-footer-note i {
    font-size: 24px;
    color: #b668ff;
    min-width: 24px;
    margin-top: 3px;
}

.legal-footer-note p {
    font-size: 13px;
    color: #C0C0C0;
    line-height: 1.8;
    margin: 0;
    font-style: italic;
}

.legal-definitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.legal-definition-card {
    padding: 25px;
    background: rgba(138, 43, 226, 0.1);
    border: 2px solid rgba(138, 43, 226, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.legal-definition-card:hover {
    background: rgba(138, 43, 226, 0.15);
    border-color: rgba(138, 43, 226, 0.4);
    transform: translateY(-5px);
}

.definition-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.definition-icon i {
    font-size: 24px;
    color: #fff;
}

.legal-definition-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.legal-definition-card p {
    font-size: 13px;
    color: #C0C0C0;
    line-height: 1.6;
    margin: 0;
}

.legal-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.legal-feature-card {
    padding: 25px;
    background: rgba(0, 194, 12, 0.1);
    border: 2px solid rgba(0, 194, 12, 0.2);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.legal-feature-card:hover {
    background: rgba(0, 194, 12, 0.15);
    border-color: rgba(0, 194, 12, 0.4);
    transform: translateY(-5px);
}

.legal-feature-card i {
    font-size: 32px;
    color: #00c20c;
    margin-bottom: 15px;
    display: block;
}

.legal-feature-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.legal-feature-card p {
    font-size: 13px;
    color: #C0C0C0;
    margin: 0;
}

.legal-payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.payment-method-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 20px;
    background: rgba(138, 43, 226, 0.1);
    border: 2px solid rgba(138, 43, 226, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.payment-method-card:hover {
    background: rgba(138, 43, 226, 0.15);
    border-color: rgba(138, 43, 226, 0.4);
    transform: translateY(-3px);
}

.payment-method-card i {
    font-size: 32px;
    color: #b668ff;
}

.payment-method-card span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.legal-elastic-pricing {
    margin-top: 25px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(75, 0, 130, 0.15));
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
}

.elastic-pricing-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(138, 43, 226, 0.3);
}

.elastic-pricing-header i {
    font-size: 28px;
    color: #ff6a5d;
}

.elastic-pricing-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.pricing-formula {
    margin: 15px 0;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-left: 4px solid #8a2be2;
    border-radius: 10px;
}

.formula-line {
    font-size: 14px;
    color: #C0C0C0;
    font-family: 'Courier New', monospace;
    padding: 5px 0;
}

.legal-complaint-timeline {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding: 30px;
    background: rgba(138, 43, 226, 0.05);
    border-radius: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.complaint-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.step-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 13px;
    color: #C0C0C0;
    margin: 0;
}

.dispute-resolution-methods {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 30px;
    background: rgba(138, 43, 226, 0.05);
    border-radius: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.resolution-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    background: rgba(138, 43, 226, 0.1);
    border: 2px solid rgba(138, 43, 226, 0.2);
    border-radius: 15px;
    flex: 1;
    min-width: 180px;
    transition: all 0.3s ease;
}

.resolution-method:hover {
    background: rgba(138, 43, 226, 0.15);
    border-color: rgba(138, 43, 226, 0.4);
    transform: translateY(-5px);
}

.method-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.method-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.method-content p {
    font-size: 13px;
    color: #C0C0C0;
    margin: 0;
}

.resolution-arrow {
    font-size: 32px;
    color: #b668ff;
    font-weight: 700;
}

.faq-search-section {
    padding: 40px 0 80px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.faq-search-card {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.95), rgba(26, 27, 46, 0.95));
    border-radius: 25px;
    padding: 20px 30px 20px 70px;
    border: 2px solid rgba(138, 43, 226, 0.3);
    display: flex;
    align-items: center;
}

.faq-search-card>i {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #b668ff;
}

.faq-search-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

.faq-search-input::placeholder {
    color: #808080;
}

.faq-search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.98), rgba(26, 27, 46, 0.98));
    border-radius: 20px;
    border: 2px solid rgba(138, 43, 226, 0.3);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.faq-search-results.active {
    max-height: 500px;
    overflow-y: auto;
    opacity: 1;
}

.search-results-header {
    padding: 20px 25px;
    font-size: 14px;
    font-weight: 700;
    color: #b668ff;
    border-bottom: 2px solid rgba(138, 43, 226, 0.2);
}

.search-result-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(138, 43, 226, 0.1);
}

.search-result-item>i {
    font-size: 20px;
    color: #ff6a5d;
    min-width: 20px;
    margin-top: 3px;
}

.search-result-item strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.search-result-item p {
    font-size: 13px;
    color: #C0C0C0;
    margin: 0;
    line-height: 1.6;
}

.search-no-results {
    padding: 40px 25px;
    text-align: center;
}

.search-no-results i {
    font-size: 48px;
    color: #808080;
    margin-bottom: 15px;
    display: block;
}

.search-no-results p {
    font-size: 15px;
    color: #C0C0C0;
    margin: 0;
}

.faq-categories-section {
    padding: 40px 0 80px 0;
}

.faq-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-category-card {
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.95), rgba(26, 27, 46, 0.95));
    border-radius: 20px;
    padding: 35px;
    border: 2px solid rgba(138, 43, 226, 0.2);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-category-card:hover {
    transform: translateY(-10px);
    border-color: rgba(138, 43, 226, 0.5);
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-icon i {
    font-size: 32px;
    color: #fff;
}

.faq-category-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.faq-category-card p {
    font-size: 14px;
    color: #C0C0C0;
    margin: 0;
}

.faq-content-section {
    padding: 0 0 100px 0;
}

.faq-category-section {
    margin-bottom: 80px;
}

.faq-category-section:last-child {
    margin-bottom: 0;
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(138, 43, 226, 0.2);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.category-header-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-header-icon i {
    font-size: 28px;
    color: #fff;
}

.faq-category-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.faq-items-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item-modern {
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.95), rgba(26, 27, 46, 0.95));
    border-radius: 20px;
    border: 2px solid rgba(138, 43, 226, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-modern:hover {
    border-color: rgba(138, 43, 226, 0.4);
}

.faq-item-modern.active {
    border-color: #8a2be2;
}

.faq-item-modern.highlight {
    animation: highlightPulse 2s ease;
}

@keyframes highlightPulse {

    0%,
    100% {}

    50% {}
}

.faq-question-modern {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.question-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 12px;
    background: rgba(138, 43, 226, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-item-modern.active .question-icon {
    background: linear-gradient(135deg, #8a2be2, #4b0082);
}

.question-icon i {
    font-size: 22px;
    color: #b668ff;
    transition: all 0.3s ease;
}

.faq-item-modern.active .question-icon i {
    color: #fff;
}

.faq-question-modern h3 {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.5;
}

.faq-toggle-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(138, 43, 226, 0.1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-toggle-btn:hover {
    background: rgba(138, 43, 226, 0.2);
}

.faq-toggle-btn i {
    font-size: 18px;
    color: #b668ff;
    transition: transform 0.3s ease;
}

.faq-item-modern.active .faq-toggle-btn {
    background: rgba(138, 43, 226, 0.2);
}

.faq-item-modern.active .faq-toggle-btn i {
    transform: rotate(180deg);
}

.faq-answer-modern {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item-modern.active .faq-answer-modern {
    max-height: 500px;
    padding: 0 30px 30px 30px;
    transition: max-height 0.4s ease, padding 0.2s ease;
}

.faq-answer-modern p {
    font-size: 15px;
    color: #C0C0C0;
    line-height: 1.8;
    margin: 0;
    padding-left: 65px;
}

.faq-contact-section {
    padding: 80px 0 100px 0;
}

.faq-contact-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.95), rgba(26, 27, 46, 0.95));
    border-radius: 25px;
    padding: 60px;
    border: 2px solid rgba(138, 43, 226, 0.3);
    text-align: center;
}

.faq-contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6a5d, #ff3535);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-contact-icon i {
    font-size: 40px;
    color: #fff;
}

.faq-contact-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.faq-contact-content p {
    font-size: 16px;
    color: #C0C0C0;
    line-height: 1.8;
    margin-bottom: 30px;
}

.faq-contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-contact-buttons .btn-main {
    min-width: 200px;
}

.faq-search-results::-webkit-scrollbar {
    width: 8px;
}

.faq-search-results::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.faq-search-results::-webkit-scrollbar-thumb {
    background: rgba(138, 43, 226, 0.5);
    border-radius: 10px;
}

.faq-search-results::-webkit-scrollbar-thumb:hover {
    background: rgba(138, 43, 226, 0.7);
}

.notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: 80%;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.98), rgba(26, 27, 46, 0.98));
    border-radius: 15px;
    z-index: 10001;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    gap: 15px;
    overflow: hidden;
}

.notification-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 22px;
    position: relative;
}

.notification-success .notification-icon {
    background: linear-gradient(135deg, rgba(0, 194, 12, 0.2), rgba(0, 156, 0, 0.2));
    color: #00c20c;
}

.notification-error .notification-icon {
    background: linear-gradient(135deg, rgba(255, 106, 93, 0.2), rgba(255, 53, 53, 0.2));
    color: #ff6a5d;
}

.notification-warning .notification-icon {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.2));
    color: #ffc107;
}

.notification-info .notification-icon {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(75, 0, 130, 0.2));
    color: #b668ff;
}

.notification-icon i {
    animation: iconPulse 0.6s ease-out;
}

@keyframes iconPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.notification-content {
    flex: 1;
    min-width: 0;
    padding-top: 2px;
}

.notification-message {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    word-wrap: break-word;
}

.notification-close-btn {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #C0C0C0;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: -2px;
}

.notification-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.notification-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transform-origin: left;
    transform: scaleX(1);
    transition: transform 6s linear;
}

.notification-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: left;
    transform: scaleX(1);
    transition: transform 6s linear;
}

.notification-success .notification-progress-bar::after {
    background: linear-gradient(90deg, #00c20c, #009C00);
}

.notification-error .notification-progress-bar::after {
    background: linear-gradient(90deg, #ff6a5d, #ff3535);
}

.notification-warning .notification-progress-bar::after {
    background: linear-gradient(90deg, #ffc107, #ff9800);
}

.notification-info .notification-progress-bar::after {
    background: linear-gradient(90deg, #8a2be2, #4b0082);
}

.notification-success {
    border-left: 4px solid #00c20c;
}

.notification-error {
    border-left: 4px solid #ff6a5d;
}

.notification-warning {
    border-left: 4px solid #ffc107;
}

.notification-info {
    border-left: 4px solid #b668ff;
}

.notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.notification.hide {
    opacity: 0;
    transform: translateX(450px);
    transition: all 0.4s ease-in;
}

.footer-section {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    padding: 60px 0 0 0;
    margin-top: 100px;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-description {
    color: #C0C0C0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(138, 43, 226, 0.1);
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 50%;
    color: #b668ff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    border-color: #8a2be2;
    color: #fff;
    transform: translateY(-3px);
}

.footer-widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(138, 43, 226, 0.3);
    position: relative;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, #8a2be2, #ff6a5d);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    color: #C0C0C0;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #b668ff;
    transform: translateX(5px);
}

.footer-links i {
    font-size: 10px;
    transition: all 0.3s ease;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #C0C0C0;
    font-size: 14px;
}

.footer-contact i {
    font-size: 20px;
    color: #b668ff;
    min-width: 20px;
    margin-top: 2px;
}

.footer-contact strong {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-contact a {
    color: #C0C0C0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: #b668ff;
}

.footer-bottom {
    margin-top: 50px;
    padding: 25px 0;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
}

.footer-copyright {
    color: #C0C0C0;
    font-size: 14px;
}

.footer-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    color: #b668ff;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.5);
    transform: translateY(-2px);
}

.badge-item i {
    font-size: 14px;
}

.news-modern-section {
    padding: 80px 0 100px 0;
    position: relative;
}

.news-content-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.news-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-self: flex-start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.news-sidebar::-webkit-scrollbar {
    width: 6px;
}

.news-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.news-sidebar::-webkit-scrollbar-thumb {
    background: rgba(138, 43, 226, 0.5);
    border-radius: 10px;
}

.news-stats-card {
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.95), rgba(26, 27, 46, 0.95));
    border-radius: 20px;
    padding: 25px;
    border: 2px solid rgba(138, 43, 226, 0.2);
}

.stats-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(138, 43, 226, 0.2);
}

.stats-header i {
    font-size: 20px;
    color: #b668ff;
}

.stats-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(138, 43, 226, 0.2);
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #8a2be2, #ff6a5d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    color: #C0C0C0;
    font-weight: 500;
}

.news-filter-card {
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.95), rgba(26, 27, 46, 0.95));
    border-radius: 20px;
    padding: 25px;
    border: 2px solid rgba(138, 43, 226, 0.2);
}

.filter-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(138, 43, 226, 0.2);
}

.filter-header i {
    font-size: 20px;
    color: #b668ff;
}

.filter-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid transparent;
    border-radius: 12px;
    color: #C0C0C0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn i {
    font-size: 16px;
    margin-right: 10px;
}

.filter-btn span:first-of-type {
    flex: 1;
    text-align: left;
}

.filter-count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    background: rgba(138, 43, 226, 0.2);
    border-radius: 20px;
    color: #b668ff;
    font-size: 12px;
    font-weight: 700;
}

.filter-btn:hover {
    background: rgba(138, 43, 226, 0.1);
    border-color: rgba(138, 43, 226, 0.3);
    color: #fff;
}

.filter-btn.active {
    background: rgba(138, 43, 226, 0.2);
    border-color: #8a2be2;
    color: #fff;
}

.filter-btn.active .filter-count {
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    color: #fff;
}

.news-main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-search-wrapper {
    position: relative;
    z-index: 10;
    margin-bottom: 5px;
}

.news-search-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.98), rgba(26, 27, 46, 0.98));
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.news-search-card:focus-within {
    border-color: #8a2be2;
}

.news-search-card>i {
    font-size: 20px;
    color: #b668ff;
}

.news-search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.news-search-input::placeholder {
    color: #808080;
}

.search-clear-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #C0C0C0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-clear-btn:hover {
    background: rgba(255, 106, 93, 0.2);
    border-color: #ff6a5d;
    color: #ff6a5d;
    transform: rotate(90deg);
}

.news-list {
    display: grid;
    gap: 25px;
}

.news-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #8a2be2, #ff6a5d);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card-modern:hover {
    border-color: rgba(138, 43, 226, 0.5);
    transform: translateY(-5px);
}

.news-card-modern:hover::before {
    opacity: 1;
}

.news-card-header {
    margin-bottom: 20px;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b668ff;
    font-size: 14px;
    font-weight: 600;
}

.news-date i {
    font-size: 16px;
}

.date-time {
    color: #808080;
    font-weight: 500;
}

.news-page-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    color: #b668ff;
    font-size: 12px;
    font-weight: 600;
}

.news-card-content {
    color: #C0C0C0;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 20px;
}

.news-card-content h1,
.news-card-content h2,
.news-card-content h3 {
    color: #fff;
    margin-top: 20px;
    margin-bottom: 15px;
}

.news-card-content p {
    margin-bottom: 12px;
}

.news-card-content a {
    color: #b668ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card-content a:hover {
    color: #ff6a5d;
}

.news-card-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.news-actions {
    display: flex;
    gap: 10px;
}

.news-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(138, 43, 226, 0.1);
    border: 2px solid rgba(138, 43, 226, 0.2);
    border-radius: 12px;
    color: #b668ff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-action-btn:hover {
    background: rgba(138, 43, 226, 0.2);
    border-color: #8a2be2;
    transform: translateY(-2px);
}

.news-empty-state,
.news-error-state,
.news-no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.95), rgba(26, 27, 46, 0.95));
    border-radius: 20px;
    border: 2px solid rgba(138, 43, 226, 0.2);
}

.empty-icon,
.error-icon,
.no-results-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
    border-radius: 50%;
    background: rgba(138, 43, 226, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #b668ff;
}

.error-icon {
    background: rgba(255, 106, 93, 0.1);
    color: #ff6a5d;
}

.news-empty-state h3,
.news-error-state h3,
.news-no-results h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.news-empty-state p,
.news-error-state p,
.news-no-results p {
    font-size: 16px;
    color: #C0C0C0;
    line-height: 1.8;
    max-width: 500px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-card-modern {
    background: linear-gradient(135deg, rgba(39, 40, 61, 0.95), rgba(26, 27, 46, 0.95));
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(138, 43, 226, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.5s ease-out;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

.header-user-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-user-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    background: rgba(138, 43, 226, 0.08);
    border: 1px solid rgba(138, 43, 226, 0.25);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.header-user-card:hover {
    background: rgba(138, 43, 226, 0.12);
    border-color: rgba(138, 43, 226, 0.4);
    transform: translateY(-2px);
}

.header-user-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header-user-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}

.header-user-name i {
    font-size: 13px;
}

.header-user-details {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #C0C0C0;
}

.header-user-id {
    display: flex;
    align-items: center;
    gap: 3px;
    font-weight: 500;
}

.header-user-id i {
    font-size: 11px;
    color: #b668ff;
}

.header-user-wallet {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.header-user-wallet i {
    font-size: 11px;
    color: #b668ff;
}

.header-user-wallet .amount {
    color: #00c20c;
    font-weight: 700;
}

.header-user-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-action-btn i {
    font-size: 16px;
}

.mobile-auth-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
    width: 100%;
}

.mobile-auth-section .btn-main {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    font-size: 16px;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    padding: 15px 0;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    transform: scale(0.95);
}

.nav-link {
    position: relative;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8a2be2, #ff6a5d);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link i {
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: scale(1.15);
}

.custom-dropdown .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(182, 104, 255, 0.3);
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg,
            rgba(42, 45, 58, 0.98) 0%,
            rgba(30, 30, 46, 0.98) 100%);
    margin-top: 8px;
    padding: 0;
    pointer-events: none;
    z-index: 1001;
}

.custom-dropdown .dropdown-item {
    color: #fff;
    padding: 12px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateX(0);
}

.custom-dropdown .dropdown-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #8a2be2, #ff6a5d);
    transition: height 0.3s ease;
}

.custom-dropdown .dropdown-item:hover::after {
    height: 70%;
}

.btn-mobile-menu-open {
    background: rgba(138, 43, 226, 0.1);
    border: 2px solid rgba(138, 43, 226, 0.3);
    color: #fff;
    border-radius: 12px;
    padding: 10px 14px;
    transition: all 0.3s ease;
}

.btn-mobile-menu-open:hover {
    background: rgba(138, 43, 226, 0.2);
    border-color: #8a2be2;
    transform: scale(1.05);
}

.btn-mobile-menu-open i {
    transition: transform 0.3s ease;
}

.btn-mobile-menu-open:hover i {
    transform: rotate(90deg);
}

.offcanvas {
    background: linear-gradient(to bottom, #27283d, #252434, #221f2a);
    color: #C0C0C0;
    font-size: 16px;
    z-index: 2000;
    border-right: 2px solid rgba(138, 43, 226, 0.3);
}

.offcanvas-header {
    padding: 20px 25px;
    border-bottom: 2px solid rgba(138, 43, 226, 0.3);
    background: rgba(138, 43, 226, 0.05);
}

.offcanvas-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offcanvas-body {
    padding: 25px;
}

.offcanvas .nav-item {
    margin-bottom: 8px;
}

.offcanvas .nav-link {
    border-radius: 12px;
    padding: 12px 16px !important;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.offcanvas .nav-link:hover,
.offcanvas .nav-link.active {
    background: rgba(138, 43, 226, 0.15);
    border-color: rgba(138, 43, 226, 0.3);
    transform: translateX(5px);
}

.offcanvas .nav-link::after {
    display: none;
}

.tooltip-purple {
    --bs-tooltip-bg: linear-gradient(135deg, #8a2be2, #4b0082);
    --bs-tooltip-color: #fff;
}

.tooltip-purple .tooltip-inner {
    background: linear-gradient(135deg, #8a2be2, #4b0082) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 7px 15px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    font-size: 0.875rem !important;
}

.tooltip-purple .tooltip-arrow::before {
    border-top-color: #8a2be2 !important;
    border-bottom-color: #8a2be2 !important;
}

.tooltip-peach {
    --bs-tooltip-bg: linear-gradient(135deg, #ff6a5d, #ff3535);
    --bs-tooltip-color: #fff;
}

.tooltip-peach .tooltip-inner {
    background: linear-gradient(135deg, #ff6a5d, #ff3535) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 7px 15px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    font-size: 0.875rem !important;
}

.tooltip-peach .tooltip-arrow::before {
    border-top-color: #ff6a5d !important;
    border-bottom-color: #ff6a5d !important;
}

@keyframes glow {

    0%,
    100% {}

    50% {}
}

@keyframes glowPeach {

    0%,
    100% {}

    50% {}
}

.header-user-card:hover,
.header-action-btn:hover {
    animation: glow 2s ease-in-out infinite;
}

.logout-btn:hover {
    animation: glowPeach 2s ease-in-out infinite;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.btn-header:active,
.header-action-btn:active,
.mobile-action-btn:active {
    transform: scale(0.95) !important;
    transition: transform 0.1s ease;
}

.offcanvas-body::-webkit-scrollbar-thumb:hover {
    background: #9d3ef7;
}

.header-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(138, 43, 226, 0.1);
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 50%;
    color: #b668ff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.header-action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.header-action-btn:hover::before {
    width: 100%;
    height: 100%;
}

.header-action-btn:hover {
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    border-color: #8a2be2;
    color: #fff;
    transform: translateY(-3px);
}

.header-action-btn.logout-btn {
    border-color: rgba(255, 106, 93, 0.3);
    background: rgba(255, 106, 93, 0.1);
    color: #ff6a5d;
}

.header-action-btn.logout-btn:hover {
    background: linear-gradient(135deg, #ff6a5d, #ff3535);
    border-color: #ff6a5d;
    color: #fff;
}

.btn-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-header:hover::before {
    left: 100%;
}

.btn-header i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-header:hover i {
    transform: scale(1.15);
}

.header-user-mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.header-user-info-mobile {
    background: rgba(138, 43, 226, 0.08);
    border: 1px solid rgba(138, 43, 226, 0.25);
    border-radius: 15px;
    padding: 15px;
}

.user-name-mobile {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.user-details-mobile {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: #C0C0C0;
}

.user-details-mobile span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.wallet-mobile i {
    color: #ffd700;
}

.header-actions-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    background: rgba(138, 43, 226, 0.1);
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 12px;
    color: #fff;
    transition: all 0.3s ease;
}

.mobile-action-btn:hover {
    background: rgba(138, 43, 226, 0.2);
    border-color: #8a2be2;
    color: #e0a6ff;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.checkbox-panel {
    display: block;
    cursor: pointer;
    margin-bottom: 15px;
    width: 100%;
}

.checkbox-panel input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkbox-panel-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(138, 43, 226, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 100%;
}

.checkbox-panel:hover .checkbox-panel-content {
    background: rgba(138, 43, 226, 0.1);
    border-color: #8a2be2;
}

.checkbox-panel input[type="checkbox"]:checked~.checkbox-panel-content {
    background: rgba(138, 43, 226, 0.2);
    border-color: #8a2be2;
}

.checkbox-panel-icon {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkbox-panel-icon i {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #fff;
}

.checkbox-panel input[type="checkbox"]:checked~.checkbox-panel-content .checkbox-panel-icon {
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    border-color: #8a2be2;
    color: #fff;
}

.checkbox-panel input[type="checkbox"]:checked~.checkbox-panel-content .checkbox-panel-icon i {
    opacity: 1;
    transform: scale(1);
}

.checkbox-panel-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.checkbox-panel-text strong {
    color: #fff;
    font-size: 15px;
}

.checkbox-panel-price {
    font-size: 13px;
    color: #b668ff;
    font-weight: 500;
}

.savings-badge {
    background: linear-gradient(135deg, #00c20c, #008a09);
    color: #fff;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 194, 12, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.original-price-strikethrough {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4);
    margin-right: 4px;
    font-size: 0.95rem;
    font-weight: 400;
}

#calcSavingsContainer {
    animation: fadeInSlideUp 0.4s ease forwards;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-item {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
}

.partners-logo.inactive {
    filter: grayscale(1);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.logo-item:hover .partners-logo.inactive {
    filter: grayscale(0.5);
    opacity: 0.8;
}

.inactive-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6a5d, #ff3535);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 53, 53, 0.4);
    pointer-events: none;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partners-logos.scrolling-reverse {
    animation: scroll-logos-reverse 45s linear infinite;
}

@keyframes scroll-logos-reverse {
    0% { transform: translateX(-25%); }
    100% { transform: translateX(0); }
}

@media (min-width: 768px) {
    .footer-badges {
        justify-content: flex-end;
    }
}

@media (min-width: 992px) {
    .header-user-mobile,
    .mobile-auth-section {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .nav-item-desktop {
        display: block !important;
    }

    .nav-item-more {
        display: none !important;
    }
}

@media (max-width: 1200px) {
    .auth-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
    }

    .auth-info-wrapper {
        width: 100%;
    }

    .legal-content-wrapper {
        grid-template-columns: 1fr;
        max-width: 900px;
    }

    .legal-sidebar {
        position: relative !important;
        top: 0 !important;
    }

    .news-content-wrapper {
        grid-template-columns: 1fr;
        max-width: 900px;
    }

    .news-sidebar {
        position: relative !important;
        top: 0 !important;
        max-height: none;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 1199.98px) {
    .nav-item-desktop {
        display: none !important;
    }

    .nav-item-more {
        display: block !important;
    }
}

@media (max-width: 992px) {
    .elastic-grid {
        grid-template-columns: 1fr;
    }

    .navbar {
        overflow-x: hidden;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .calculator-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .header-user-section {
        display: none;
    }
}

@media (max-width: 768px) {
    .how-it-works .steps i.arrow {
        transform: rotate(90deg);
        margin-bottom: 15px;
    }

    .partners-logos.scrolling {
        animation-duration: 20s;
    }

    .partners-logos {
        gap: 20px;
    }

    .side-panel {
        left: 5px;
        gap: 10px;
    }

    .side-panel-item {
        width: 45px;
        height: 45px;
        padding: 8px;
    }

    .side-panel-item.expanded {
        width: 230px;
    }

    .news-slider {
        width: 100%;
        left: -100%;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-main {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 30px;
    }

    .hero-stat-value {
        font-size: 36px;
    }

    .section-title {
        font-size: 36px;
    }

    .servers-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .glass-blob {
        opacity: 0.5;
    }

    .blob-1 {
        width: 300px;
        height: 300px;
    }

    .blob-2 {
        width: 250px;
        height: 250px;
    }

    .blob-3 {
        width: 200px;
        height: 200px;
    }

    .elastic-features {
        grid-template-columns: 1fr;
    }

    .elastic-form .two-cols {
        grid-template-columns: 1fr;
    }

    .contact-form-card,
    .contact-alternative-card,
    .contact-info-card {
        padding: 30px 20px;
    }

    .contact-form-header h3,
    .contact-alternative-card h3 {
        font-size: 20px;
    }

    .contact-submit-btn,
    .contact-chat-btn {
        font-size: 16px;
        padding: 14px 30px;
    }

    .game-pricing-toggle {
        padding: 30px 20px;
    }

    .game-pricing-icon {
        width: 50px;
        height: 50px;
    }

    .game-pricing-toggle-content {
        gap: 15px;
    }

    .game-pricing-info h3 {
        font-size: 20px;
    }

    .game-pricing-info p {
        font-size: 13px;
    }

    .review-header-modern {
        flex-direction: column;
    }

    .review-meta-section {
        text-align: left;
    }

    .review-stats-mini {
        justify-content: flex-start;
    }

    .additional-ratings-modern {
        grid-template-columns: 1fr;
    }

    .review-actions-modern {
        flex-direction: column;
    }

    .vote-btn {
        justify-content: center;
    }

    .form-card-modern {
        padding: 25px 20px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .stats-card {
        padding: 25px 20px;
    }

    .filters-card {
        padding: 30px 20px;
    }

    .auth-success-steps {
        grid-template-columns: 1fr;
    }

    .auth-form-card,
    .auth-info-panel {
        padding: 30px 25px;
    }

    .auth-form-header h2 {
        font-size: 26px;
    }

    .auth-info-header h3 {
        font-size: 20px;
    }

    .auth-success-card {
        padding: 40px 30px;
    }

    .auth-success-card h2 {
        font-size: 26px;
    }

    .legal-section {
        padding: 30px 25px;
    }

    .legal-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .legal-section-header h2 {
        font-size: 24px;
    }

    .legal-intro-card {
        flex-direction: column;
    }

    .legal-info-box {
        grid-template-columns: 1fr;
    }

    .legal-cookies-grid,
    .legal-security-grid,
    .legal-rights-grid {
        grid-template-columns: 1fr;
    }

    .legal-toc-card,
    .legal-contact-card {
        padding: 25px 20px;
    }

    .legal-definitions-grid {
        grid-template-columns: 1fr;
    }

    .legal-features-grid,
    .legal-payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }

    .legal-complaint-timeline,
    .dispute-resolution-methods {
        flex-direction: column;
    }

    .resolution-arrow {
        transform: rotate(90deg);
    }

    .complaint-step {
        width: 100%;
    }

    .faq-search-card {
        padding: 15px 25px 15px 60px;
    }

    .faq-search-card>i {
        left: 25px;
        font-size: 20px;
    }

    .faq-search-input {
        font-size: 14px;
    }

    .faq-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .faq-category-card {
        padding: 25px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
    }

    .category-icon i {
        font-size: 28px;
    }

    .faq-category-card h3 {
        font-size: 18px;
    }

    .faq-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .faq-category-header h2 {
        font-size: 26px;
    }

    .faq-question-modern {
        padding: 30px 20px;
        gap: 15px;
    }

    .question-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .question-icon i {
        font-size: 20px;
    }

    .faq-question-modern h3 {
        font-size: 16px;
    }

    .faq-answer-modern p {
        padding-left: 55px;
        font-size: 14px;
    }

    .faq-contact-card {
        padding: 40px 30px;
    }

    .faq-contact-content h2 {
        font-size: 26px;
    }

    .faq-contact-buttons {
        flex-direction: column;
    }

    .faq-contact-buttons .btn-main {
        width: 100%;
    }

    .news-modern-section {
        padding: 60px 0 80px 0;
    }

    .news-sidebar {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .news-search-card {
        padding: 15px 20px;
    }

    .news-search-input {
        font-size: 14px;
    }

    .news-card-modern {
        padding: 25px 20px;
    }

    .news-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-card-content {
        font-size: 14px;
    }

    .empty-icon,
    .error-icon,
    .no-results-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .news-empty-state h3,
    .news-error-state h3,
    .news-no-results h3 {
        font-size: 24px;
    }

    .news-empty-state p,
    .news-error-state p,
    .news-no-results p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .footer-bottom {
        text-align: center;
    }

    .footer-copyright {
        margin-bottom: 20px !important;
    }

    .footer-badges {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .star {
        width: 1em;
        height: 1em;
    }

    .elastic-form .two-cols {
        grid-template-columns: 1fr;
    }

    .elastic-calc-card {
        padding: 30px 20px;
    }

    .calculator-modern {
        padding: 60px 0;
    }

    .calculator-form-card,
    .calculator-result-card {
        padding: 25px 20px;
    }

    .calculator-form-header h3,
    .result-header h3 {
        font-size: 20px;
    }

    .price-amount {
        font-size: 36px;
    }

    .price-currency {
        font-size: 18px;
    }

    .auth-recaptcha>div {
        transform: scale(0.85);
    }

    .auth-form-card,
    .auth-info-panel {
        padding: 25px 20px;
    }

    .auth-input {
        padding: 14px 18px 14px 50px;
        font-size: 14px;
    }

    .auth-input-icon {
        left: 16px;
        font-size: 16px;
    }

    .auth-password-toggle {
        right: 16px;
    }

    .auth-section {
        padding: 0;
        padding-bottom: 60px;
    }

    .auth-info-box {
        padding: 15px;
    }

    .auth-info-box i {
        font-size: 20px;
    }

    .auth-info-box strong {
        font-size: 14px;
    }

    .auth-info-box p {
        font-size: 13px;
    }

    .legal-section {
        padding: 25px 20px;
    }

    .legal-section-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 20px;
    }

    .legal-section-header h2 {
        font-size: 22px;
    }

    .legal-section-content {
        font-size: 14px;
    }

    .faq-categories-grid {
        grid-template-columns: 1fr;
    }

    .faq-search-card {
        padding: 15px 20px 15px 55px;
    }

    .faq-search-card>i {
        left: 20px;
        font-size: 18px;
    }

    .faq-question-modern {
        padding: 18px;
        gap: 12px;
    }

    .faq-answer-modern p {
        padding-left: 0;
    }

    .faq-item-modern.active .faq-answer-modern {
        padding: 0 18px 18px 18px;
    }

    .faq-contact-card {
        padding: 30px 20px;
    }

    .faq-contact-icon {
        width: 70px;
        height: 70px;
    }

    .faq-contact-icon i {
        font-size: 36px;
    }

    .faq-contact-content h2 {
        font-size: 24px;
    }

    .faq-contact-content p {
        font-size: 14px;
    }

    .notification {
        top: 70px;
        max-width: 90%;
        padding: 18px 20px;
    }

    .notification-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .notification-message {
        font-size: 14px;
    }

    .notification-close-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .news-card-modern {
        padding: 20px 15px;
    }

    .news-date {
        font-size: 13px;
    }

    .date-time {
        display: block;
        margin-top: 4px;
    }

    .stat-value {
        font-size: 28px;
    }

    .stat-label {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .partners-logos.scrolling {
        animation-duration: 15s;
    }

    .partners-logos {
        gap: 10px;
    }

    .legal-payment-methods {
        grid-template-columns: 1fr;
    }
}

@media print {
    .auth-form-card,
    .auth-info-panel,
    .auth-success-card {
        border: 1px solid #333;
    }
}

/* Belka Informacyjna */
.info-bar {
 padding: 12px 0;
 font-size: 14px;
 font-weight: 500;
 text-align: center;
 position: relative;
 z-index: 1060;
 letter-spacing: 0.3px;
 box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.info-bar .container {
 max-width: 1200px;
}

.info-bar-link {
 color: #fff;
 text-decoration: underline;
 margin-left: 10px;
 font-weight: 600;
 transition: opacity 0.2s;
}

.info-bar-link:hover {
 color: #fff;
 opacity: 0.8;
}

.info-bar.purple { background: linear-gradient(90deg, #8a2be2 0%, #b668ff 100%); color: #fff; }
.info-bar.red { background: linear-gradient(90deg, #ef4444 0%, #ff7e7e 100%); color: #fff; }
.info-bar.orange { background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%); color: #fff; }
.info-bar.blue { background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%); color: #fff; }
.info-bar.green { background: linear-gradient(90deg, #10b981 0%, #34d399 100%); color: #fff; }

@media (max-width: 768px) {
 .info-bar {
 font-size: 12px;
 padding: 10px 15px;
 }
 .info-bar .container {
 flex-direction: column;
 line-height: 1.4;
 }
 .info-bar-link {
 margin-left: 0;
 margin-top: 5px;
 }
}
.info-bar.admin-only { 
position: relative;
}
