@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
    font-weight: 400;
    padding: 0;
    margin: 0;
    position: relative;
    background-color: #121212;
    background-image: linear-gradient(to bottom right, #121212, #1a1a1a);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    overflow-x: hidden;
}

body.page-trns-active {
    position: relative;
}

body.page-trns-active::after {
    position: absolute;
    content: "\f110";
    font-family: 'Line Awesome Free';
    font-weight: 900;
    color: #fff;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    font-size: 3rem;
    z-index: 999;
    animation: spinRoll 1s infinite linear;
}

body.page-trns-active::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #121212;
    z-index: 99;
    opacity: 0.75;
}

@keyframes spinRoll {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

img {
    max-width: 100%;
    height: auto;
    user-select: none;
}

select {
    cursor: pointer;
}

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

button {
    cursor: pointer;
}

*:focus {
    outline: none;
}

button {
    border: none;
}

button:focus {
    outline: none;
}

span {
    display: inline-block;
}

a:hover {
    color: #d19148;
}

.body-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99;
    transition: .3s ease;
    visibility: hidden;
    opacity: 0;
    backdrop-filter: blur(5px);
}

@media (max-width: 1199px) {
    .body-overlay.show {
        visibility: visible;
        opacity: 1;
    }
}

/* Color System */
.text--primary {
    color: #d19148 !important;
}

.text--secondary {
    color: #9e9e9e !important;
}

.text--success {
    color: #4CAF50 !important;
}

.text--danger {
    color: #F44336 !important;
}

.text--warning {
    color: #FFC107 !important;
}

.text--info {
    color: #00BCD4 !important;
}

.text--dark {
    color: #212121 !important;
}

.text--muted {
    color: #757575 !important;
}

.text--base {
    color: #d19148 !important;
}

.bg--primary {
    background-color: #d19148 !important;
}

.bg--secondary {
    background-color: #9e9e9e !important;
}

.bg--success {
    background-color: #4CAF50 !important;
}

.bg--danger {
    background-color: #F44336 !important;
}

.bg--warning {
    background-color: #FFC107 !important;
}

.bg--info {
    background-color: #00BCD4 !important;
}

.bg--dark {
    background-color: #212121 !important;
}

.bg--light {
    background-color: #f5f5f5 !important;
}

.bg--base {
    background-color: #d19148 !important;
}

/* Spacing */
.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pt-100 {
    padding-top: 100px;
}

@media (max-width: 767px) {
    .pt-100 {
        padding-top: 70px;
    }
}

.pb-100 {
    padding-bottom: 100px;
}

@media (max-width: 767px) {
    .pb-100 {
        padding-bottom: 70px;
    }
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-none-70 {
    margin-bottom: -70px;
}

.bg_img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section--bg {
    background-color: #18181f !important;
}

.section-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.opacity-20 {
    opacity: 0.2;
}

.dark--overlay {
    position: relative;
    z-index: 1;
}

.dark--overlay::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    z-index: -1;
}

.dark--overlay-two {
    position: relative;
    z-index: 1;
}

.dark--overlay-two::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.8;
    z-index: -1;
}

.text-shadow--base {
    text-shadow: 0 0 5px #d19148;
}

.base--bg {
    background-color: #d19148;
}

.bg--one {
    background-color: #121212;
}

.slick-arrow {
    cursor: pointer;
}

.z-index-2 {
    z-index: 2;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    word-break: break-word;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.25rem;
}

@media (max-width: 991px) {
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    h2 {
        font-size: 1.75rem;
    }
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.375rem;
}

@media (max-width: 767px) {
    h4 {
        font-size: 1.25rem;
    }
}

h5 {
    font-size: 1.25rem;
}

@media (max-width: 767px) {
    h5 {
        font-size: 1.125rem;
    }
}

h6 {
    font-size: 1.125rem;
}

h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a {
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-weight: 600;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    line-height: 1.3;
    word-break: break-word;
}

p, li, span {
    margin: 0;
    font-family: "Open Sans", sans-serif;
}

a {
    text-decoration: none;
    display: inline-block;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    color: #d19148;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

a:hover {
    text-decoration: none;
    color: #3a78e7;
}

.h--font {
    font-family: "Montserrat", sans-serif !important;
}

.p--font {
    font-family: "Open Sans", sans-serif !important;
}

.fw-medium {
    font-weight: 500 !important;
}

/* Font sizes */
.fs--18px {
    font-size: 1.125rem !important;
}

.fs--16px {
    font-size: 1rem !important;
}

.fs--14px {
    font-size: 0.875rem !important;
}

.fs--12px {
    font-size: 0.75rem !important;
}

/* Main Content Structure */
.main-wrapper {
    position: relative;
}

.section-header {
    margin-bottom: 2.5rem;
    position: relative;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-subtitle {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #9e9e9e;
}

.section-subtitle.border-left {
    padding-left: 1.5rem;
    position: relative;
    z-index: 1;
}

.section-subtitle.border-left::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: #d19148;
    margin-top: -1px;
}

a.text-white:hover {
    color: #d19148 !important;
}

.text--link {
    text-decoration: underline;
    color: #d19148;
}

.text--link:hover {
    text-decoration: underline;
    color: #3a78e7;
}

.has--link {
    position: relative;
}

.has--link .item--link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Button redesign */
.btn {
    padding: 0.75rem 1.875rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    text-transform: none;
    letter-spacing: 0.5px;
    font-family: "Montserrat", sans-serif;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease;
    z-index: 0;
}

.btn:hover:before {
    width: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn--primary {
    background-color: #d19148;
    color: #fff;
}

.btn--primary:hover {
    background-color: #3a78e7;
}

.btn--secondary {
    background-color: #9e9e9e;
    color: #fff;
}

.btn--secondary:hover {
    background-color: #757575;
}

.btn--success {
    background-color: #4CAF50;
    color: #fff;
}

.btn--success:hover {
    background-color: #388E3C;
}

.btn--danger {
    background-color: #F44336;
    color: #fff;
}

.btn--danger:hover {
    background-color: #D32F2F;
}

.btn--warning {
    background-color: #FFC107;
    color: #212121;
}

.btn--warning:hover {
    background-color: #FFA000;
}

.btn--info {
    background-color: #00BCD4;
    color: #fff;
}

.btn--info:hover {
    background-color: #0097A7;
}

.btn--dark {
    background-color: #212121;
    color: #fff;
}

.btn--dark:hover {
    background-color: #121212;
}

.btn--base {
    background-color: #d19148;
    color: #fff;
    font-weight: 600;
}

.btn--base:hover {
    background-color: #3a78e7;
}

/* Outline buttons */
[class*="btn-outline--"] {
    background-color: transparent;
    border-width: 2px;
    border-style: solid;
}

.btn-outline--primary {
    color: #d19148;
    border-color: #d19148;
}

.btn-outline--primary:hover {
    background-color: #d19148;
    color: #ffffff;
}

.btn-outline--secondary {
    color: #9e9e9e;
    border-color: #9e9e9e;
}

.btn-outline--secondary:hover {
    background-color: #9e9e9e;
    color: #ffffff;
}

.btn-outline--success {
    color: #4CAF50;
    border-color: #4CAF50;
}

.btn-outline--success:hover {
    background-color: #4CAF50;
    color: #ffffff;
}

.btn-outline--danger {
    color: #F44336;
    border-color: #F44336;
}

.btn-outline--danger:hover {
    background-color: #F44336;
    color: #ffffff;
}

.btn-outline--warning {
    color: #FFC107;
    border-color: #FFC107;
}

.btn-outline--warning:hover {
    background-color: #FFC107;
    color: #212121;
}

.btn-outline--info {
    color: #00BCD4;
    border-color: #00BCD4;
}

.btn-outline--info:hover {
    background-color: #00BCD4;
    color: #ffffff;
}

.btn-outline--dark {
    color: #e0e0e0;
    border-color: #424242;
}

.btn-outline--dark:hover {
    background-color: #424242;
    color: #ffffff;
}

.btn-outline--base {
    color: #d19148;
    border-color: #d19148;
}

.btn-outline--base:hover {
    background-color: #d19148;
    color: #fff;
}

/* Button sizes */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.85rem;
    border-radius: 6px;
}

.btn-md {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 10px;
}

/* Button with icon */
.btn i, .btn svg {
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Capsule buttons */
.btn--capsule {
    border-radius: 50px;
}

/* Button shadow effects */
[class*="btn-shadow--"] {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-shadow--primary:hover {
    box-shadow: 0 6px 15px rgba(100, 149, 237, 0.4);
}

.btn-shadow--secondary:hover {
    box-shadow: 0 6px 15px rgba(158, 158, 158, 0.4);
}

.btn-shadow--success:hover {
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.4);
}

.btn-shadow--danger:hover {
    box-shadow: 0 6px 15px rgba(244, 67, 54, 0.4);
}

.btn-shadow--warning:hover {
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
}

.btn-shadow--info:hover {
    box-shadow: 0 6px 15px rgba(0, 188, 212, 0.4);
}

.btn-shadow--dark:hover {
    box-shadow: 0 6px 15px rgba(33, 33, 33, 0.4);
}

.btn-shadow--base:hover {
    box-shadow: 0 6px 15px rgba(100, 149, 237, 0.4);
}

/* Icon buttons */
.icon-btn {
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: rgba(100, 149, 237, 0.1);
    color: #d19148;
}

.icon-btn:hover {
    transform: translateY(-2px);
    background-color: #d19148;
    color: #fff;
}

.icon-btn--sm {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.75rem;
    border-radius: 6px;
}

.icon-btn--lg {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.25rem;
    border-radius: 10px;
}

/* Badges redesign */
.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
    border-radius: 6px;
    font-size: 0.75em;
}

.badge--primary {
    background-color: rgba(100, 149, 237, 0.15);
    border: 1px solid #d19148;
    color: #d19148;
}

.badge--secondary {
    background-color: rgba(158, 158, 158, 0.15);
    border: 1px solid #9e9e9e;
    color: #9e9e9e;
}

.badge--success {
    background-color: rgba(76, 175, 80, 0.15);
    border: 1px solid #4CAF50;
    color: #4CAF50;
}

.badge--danger {
    background-color: rgba(244, 67, 54, 0.15);
    border: 1px solid #F44336;
    color: #F44336;
}

.badge--warning {
    background-color: rgba(255, 193, 7, 0.15);
    border: 1px solid #FFC107;
    color: #FFC107;
}

.badge--info {
    background-color: rgba(0, 188, 212, 0.15);
    border: 1px solid #00BCD4;
    color: #00BCD4;
}

.badge--light {
    background-color: rgba(245, 245, 245, 0.15);
    border: 1px solid #f5f5f5;
    color: #f5f5f5;
}

.badge--dark {
    background-color: rgba(33, 33, 33, 0.15);
    border: 1px solid #9e9e9e;
    color: #e0e0e0;
}

.badge--base {
    background-color: rgba(100, 149, 237, 0.15);
    border: 1px solid #d19148;
    color: #d19148;
}

/* Tables redesign */
.custom--table {
    border-radius: 10px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.custom--table.white-space-nowrap th {
    white-space: nowrap;
}

.custom--table thead th {
    border-top: none;
    padding: 1rem 1.25rem;
    color: #fff;
    background-color: #1e1e2d;
    border: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

.custom--table thead th:first-child {
    border-radius: 10px 0 0 0;
    text-align: left;
}

.custom--table thead th:last-child {
    border-radius: 0 10px 0 0;
    text-align: right;
}

.custom--table tbody td {
    border-top: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 1.25rem;
    color: #e0e0e0;
    vertical-align: middle;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.2s ease;
}

.custom--table tbody td:first-child {
    text-align: left;
}

.custom--table tbody td:last-child {
    text-align: right;
}

.custom--table tbody tr {
    transition: all 0.3s ease;
    background-color: #18181f;
}

.custom--table tbody tr:hover {
    background-color: #1e1e2d;
    transform: scale(1.01);
}

.custom--table tbody tr:last-child td {
    border-bottom: none;
}

.custom--table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 10px;
}

.custom--table tbody tr:last-child td:last-child {
    border-radius: 0 0 10px 0;
}

.table-game {
    align-items: center;
}

.table-game img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
    border: 2px solid #d19148;
    transition: all 0.3s ease;
}

.table-game img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(100, 149, 237, 0.5);
}

.table-game .name {
    padding-left: 1rem;
    font-weight: 500;
}

/* Form controls redesign */
.form-group {
    margin-bottom: 1.25rem;
}

.form--control {
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(100, 149, 237, 0.2);
    width: 100%;
    background-color: rgba(30, 30, 45, 0.8);
    border-radius: 8px;
    color: #e0e0e0;
    height: 3.2rem;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.form--control:focus {
    background-color: rgba(30, 30, 45, 1);
    border-color: #d19148 !important;
    box-shadow: 0 0 0 3px rgba(100, 149, 237, 0.2);
    color: #fff;
}

.form--control:placeholder-shown {
    border-color: rgba(255, 255, 255, 0.15);
    color: #9e9e9e;
}

.form--control::placeholder {
    color: #757575;
    opacity: 0.8;
}

.form--control[readonly] {
    background-color: rgba(18, 18, 18, 0.1);
    cursor: not-allowed;
}

.form--control.style--two {
    border-width: 0 0 2px 0;
    padding: 0.625rem 0;
    border-radius: 0;
    font-family: "Space Grotesk", sans-serif;
    border-bottom-color: rgba(158, 158, 158, 0.3);
    background-color: transparent;
}

.form--control.style--two:focus {
    box-shadow: none;
    border-color: #d19148;
}

.form--control.form-control-sm {
    height: 2.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 6px;
}

.select {
    padding: 0.625rem 1.25rem;
    width: 100%;
    border: 1px solid rgba(100, 149, 237, 0.2);
    cursor: pointer;
    color: #e0e0e0;
    background-color: rgba(30, 30, 45, 0.8);
    height: 3.2rem;
    border-radius: 8px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236495ED' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.select option {
    padding: 0.625rem 0;
    background-color: #1e1e2d;
    color: #e0e0e0;
}

.select.style--trans {
    background-color: transparent;
    color: #e0e0e0;
    border-color: rgba(255, 255, 255, 0.3);
}

.select.style--trans option {
    color: #e0e0e0;
}

.select.select-sm {
    height: 2.5rem;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

textarea {
    min-height: 9.375rem !important;
    resize: none;
    width: 100%;
    border-radius: 8px;
}

label {
    color: #e0e0e0;
    margin-bottom: 0.625rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: block;
}

/* Checkboxes & Radios */
.custom-radio {
    position: relative;
    padding-left: 0;
}

.custom-radio input[type=radio] {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    cursor: pointer;
}

.custom-radio input[type=radio]:checked ~ label::before {
    border-width: 2px;
    border-color: #d19148;
}

.custom-radio input[type=radio]:checked ~ label::after {
    opacity: 1;
}

.custom-radio label {
    margin-bottom: 0;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
    cursor: pointer;
}

.custom-radio label::before {
    position: absolute;
    content: '';
    top: 4px;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #9e9e9e;
    border-radius: 50%;
    transition: all 0.3s;
}

.custom-radio label::after {
    position: absolute;
    content: '';
    top: 8px;
    left: 4px;
    width: 10px;
    height: 10px;
    background-color: #d19148;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s;
}

.custom--checkbox {
    padding-left: 1.75rem;
}

.custom--checkbox input {
    display: none;
}

.custom--checkbox input:checked ~ label::before {
    content: "\f14a";
    color: #d19148;
}

.custom--checkbox label {
    position: relative;
    font-size: 0.95rem;
    font-weight: 400;
    cursor: pointer;
    margin-bottom: 0;
}

.custom--checkbox label::before {
    position: absolute;
    content: "\f04d";
    font-family: 'Line Awesome Free';
    font-weight: 900;
    top: 3px;
    left: -1.75rem;
    font-size: 1.25rem;
    line-height: 1;
    color: #757575;
    transition: all 0.3s;
}

/* Cards redesign */
.custom--card {
    border: 1px solid rgba(100, 149, 237, 0.2);
    background-color: #1e1e2d;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    height: auto;
    overflow: hidden;
    transition: all 0.3s ease;
}

.custom--card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.custom--card .card-header {
    background-color: rgba(30, 30, 45, 0.7);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(100, 149, 237, 0.1);
}

.custom--card .card-body {
    padding: 1.5rem;
}

/* Modal redesign */
.modal .modal-content {
    padding: 20px;
    background-color: #1e1e2d;
    border-radius: 15px;
    border: 1px solid rgba(100, 149, 237, 0.2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.modal .modal-header,
.modal .modal-footer {
    border-color: rgba(255, 255, 255, 0.1);
}

.modal .btn-close {
    color: #fff;
    background-color: transparent;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
    background-size: 1rem;
    background-position: center;
    background-repeat: no-repeat;
    width: 2rem;
    height: 2rem;
    padding: 0;
}

.modal .btn-close:hover {
    opacity: 0.75;
}

.modal-open {
    overflow: hidden;
    overflow-y: auto;
    padding-right: 0 !important;
}

/* Header redesign */
.header {
    position: sticky;
    top: 0;
    z-index: 99;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.header.menu-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header.menu-fixed .header__bottom {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 0.75rem 0;
}

.header.menu-fixed .header__top {
    display: none;
}

.header__top {
    padding: 0.625rem 0;
    background-color: rgba(25, 25, 35, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header__bottom {
    padding: 1rem 0;
}

.header .site-logo img {
    max-width: 10.625rem;
    max-height: 3.5rem;
}

@media (max-width: 1199px) {
    .header .site-logo img {
        max-width: 9.375rem;
    }
}

.header .main-menu {
    margin-left: 3rem;
}

@media (max-width: 1199px) {
    .header .main-menu {
        margin-left: 0;
        padding: 1rem 0;
    }
}

.header .main-menu li {
    position: relative;
}

@media (max-width: 1199px) {
    .header .main-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

.header .main-menu li:last-child a {
    padding-right: 0;
}

.header .main-menu li.menu_has_children {
    position: relative;
}

.header .main-menu li.menu_has_children.open .sub-menu {
    display: block;
}

.header .main-menu li.menu_has_children > a {
    padding-right: 1.5rem;
}

@media (max-width: 1199px) {
    .header .main-menu li.menu_has_children > a {
        display: block;
    }
}

.header .main-menu li.menu_has_children > a::before {
    position: absolute;
    content: "\f067";
    font-family: "Line Awesome Free";
    font-weight: 900;
    top: 15px;
    right: 0;
    color: #e0e0e0;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

@media (max-width: 1199px) {
    .header .main-menu li.menu_has_children > a::before {
        display: block;
        top: 0.5625rem;
    }
}

.header .main-menu li.menu_has_children:hover > a::before {
    content: "\f068";
    color: #d19148;
}

.header .main-menu li a {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.9375rem 0.9375rem 0.9375rem 0;
    font-size: 0.875rem;
    color: #e0e0e0;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.header .main-menu li a.active {
    color: #d19148;
}

@media (max-width: 1199px) {
    .header .main-menu li a {
        color: #e0e0e0;
        padding: 0.75rem 0;
        display: block;
    }
}

.header .main-menu li a:hover,
.header .main-menu li a:focus {
    color: #d19148;
}

.header .main-menu li .sub-menu {
    position: absolute;
    width: 220px;
    top: 120%;
    left: 0;
    z-index: 9999;
    background-color: #1e1e2d;
    padding: 0.75rem 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 149, 237, 0.1);
    transform: translateY(10px);
}

@media (max-width: 1199px) {
    .header .main-menu li .sub-menu {
        opacity: 1;
        visibility: visible;
        display: none;
        position: static;
        transition: none;
        width: 100%;
        background-color: rgba(18, 18, 18, 0.5);
        border: none;
        box-shadow: none;
        transform: none;
        border-radius: 0;
        padding: 0 0 0 1.5rem;
    }
}

.header .main-menu li .sub-menu::before {
    position: absolute;
    content: '';
    top: -8px;
    left: 20px;
    width: 16px;
    height: 16px;
    background-color: #1e1e2d;
    transform: rotate(45deg);
    border-top: 1px solid rgba(100, 149, 237, 0.1);
    border-left: 1px solid rgba(100, 149, 237, 0.1);
    z-index: -1;
}

@media (max-width: 1199px) {
    .header .main-menu li .sub-menu::before {
        display: none;
    }
}

.header .main-menu li .sub-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header .main-menu li .sub-menu li:last-child {
    border-bottom: none;
}

.header .main-menu li .sub-menu li a {
    padding: 0.75rem 1.5rem;
    display: block;
    color: #e0e0e0;
    position: relative;
    font-size: 0.875rem;
    text-transform: capitalize;
    font-weight: 400;
    transition: all 0.3s ease;
}

.header .main-menu li .sub-menu li a:hover {
    background-color: rgba(100, 149, 237, 0.1);
    color: #d19148;
    padding-left: 1.75rem;
}

.header .main-menu li .sub-menu li + li {
    margin-left: 0;
}

.header .main-menu li:hover .sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header .main-menu li + li {
    margin-left: 1.5rem;
}

@media (max-width: 1199px) {
    .header .main-menu li + li {
        margin-left: 0;
    }
}

.header .nav-right {
    padding-left: 3.125rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 1199px) {
    .header .nav-right {
        padding-left: 0;
    }
}

/* Language selector */
.language-select {
    background-color: transparent;
    color: #e0e0e0;
    height: 35px;
    padding: 0 10px;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23e0e0e0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 1rem;
    padding-right: 1.5rem;
}

.language-select option {
    background-color: #1e1e2d;
    color: #e0e0e0;
}

@media (max-width: 1199px) {
    .navbar-collapse {
        margin-top: 20px !important;
        background-color: #1e1e2d;
        padding: 1rem 1.5rem;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
}

.navbar-toggler {
    padding: 0;
    border: none;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.menu-toggle {
    margin: 10px 0;
    position: relative;
    display: block;
    width: 2.1875rem;
    height: 1.25rem;
    cursor: pointer;
    background: transparent;
    border-top: 2px solid;
    border-bottom: 2px solid;
    color: #fff;
    font-size: 0;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
}

.menu-toggle:before,
.menu-toggle:after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    background: currentColor;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: -webkit-transform 0.25s ease-in-out;
    -webkit-transition: -webkit-transform 0.25s ease-in-out;
    -o-transition: -webkit-transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out;
    -moz-transition: -webkit-transform 0.25s ease-in-out;
    -ms-transition: -webkit-transform 0.25s ease-in-out;
}

@media (max-width: 1199px) {

    .menu-toggle:before,
    .menu-toggle:after {
        background-color: #fff;
    }
}

/* Hero section redesign */
.hero {
    padding-top: 9.375rem;
    padding-bottom: 9.375rem;
    position: relative;
    z-index: 1;
    background-image: linear-gradient(to bottom right, rgba(30, 30, 45, 0.9), rgba(18, 18, 24, 0.95));
    overflow: hidden;
}

@media (max-width: 1199px) {
    .hero {
        padding-top: 11.5625rem;
        padding-bottom: 7.5rem;
    }
}

@media (max-width: 767px) {
    .hero {
        padding-top: 10.3125rem;
        padding-bottom: 6.25rem;
    }
}

@media (max-width: 575px) {
    .hero {
        padding-top: 9.06rem;
        padding-bottom: 5rem;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(100, 149, 237, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1e1e2d;
    opacity: 0.4;
    z-index: -2;
}

.hero__title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(to right, #fff 0%, #d19148 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .hero__title {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .hero__title {
        font-size: 2.625rem;
    }
}

@media (max-width: 575px) {
    .hero__title {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }
}

.hero__description {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .hero__description {
        width: 100%;
        font-size: 1rem;
    }
}

/* Inner hero (page headers) */
.inner-hero {
    padding: 6rem 0 4rem;
    position: relative;
    z-index: 1;
    background-image: linear-gradient(to bottom, rgba(30, 30, 45, 0.9), rgba(18, 18, 24, 0.95));
}

@media (max-width: 1199px) {
    .inner-hero {
        padding-top: 9.0625rem;
    }
}

.inner-hero::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 24, 0.7);
    z-index: -1;
}

/* Package cards (pricing) */
.package-card {
    padding: 3rem 2rem;
    border: 1px solid rgba(100, 149, 237, 0.2);
    background-color: #1e1e2d;
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #d19148, #00BCD4);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(100, 149, 237, 0.4);
}

.package-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: .5rem;
    padding-top: .5rem;
    border-radius: 10px;
}

.package-card__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #d19148;
    border-radius: 3px;
}

.package-card__range {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #d19148;
    margin-bottom: 1.5rem;
}

.package-card__features {
    margin-bottom: 2rem;
}

.package-card__features li {
    padding: 0.75rem 0;
    position: relative;
}

.package-card__features li::before {
    content: "\f058";
    font-family: 'Line Awesome Free';
    font-weight: 900;
    margin-right: 0.75rem;
    color: #d19148;
    font-size: 1.25rem;
}

/* Feature cards */
.feature-card {
    padding: 2rem;
    border: 1px solid rgba(100, 149, 237, 0.15);
    background-color: #1e1e2d;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(100, 149, 237, 0.3);
}

.feature-card:hover .feature-card__icon {
    color: #d19148;
    transform: scale(1.1);
}

.feature-card__icon {
    font-size: 3rem;
    color: #d19148;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card h4 {
    margin-bottom: 1rem;
    font-size: 1.375rem;
}

.feature-card p {
    color: #9e9e9e;
    margin-bottom: 0;
}

/* Team member cards */
.member-card {
    padding: 1.5rem;
    align-items: center;
    background-color: #1e1e2d;
    height: 100%;
    border-radius: 15px;
    border: 1px solid rgba(100, 149, 237, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(100, 149, 237, 0.3);
}

.member-card__thumb {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .member-card__thumb {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 575px) {
    .member-card__thumb {
        width: 90px;
        height: 90px;
    }
}

.member-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.member-card:hover .member-card__thumb img {
    transform: scale(1.05);
}

.member-card__content {
    width: calc(100% - 100px);
    padding-left: 1.5rem;
}

@media (max-width: 767px) {
    .member-card__content {
        width: calc(100% - 80px);
        padding-left: 1rem;
    }
}

@media (max-width: 575px) {
    .member-card__content {
        width: calc(100% - 90px);
        padding-left: 1.25rem;
    }
}

.member-card__content h5 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.member-card__content p {
    color: #9e9e9e;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

/* Testimonial items */
.testimonial-item {
    padding: 2rem;
    background-color: #1e1e2d;
    border-radius: 15px;
    border: 1px solid rgba(100, 149, 237, 0.15);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-item::before {
    content: '\201C';
    font-family: Georgia, serif;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: rgba(100, 149, 237, 0.2);
    line-height: 1;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(100, 149, 237, 0.3);
}

.testimonial-item .client-details {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-item .client-details .thumb {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(100, 149, 237, 0.3);
}

.testimonial-item .client-details .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-item .client-details .content {
    padding-left: 1.25rem;
}

.testimonial-item .client-details .content h5 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.testimonial-item .client-details .content p {
    color: #9e9e9e;
    font-size: 0.875rem;
    margin-bottom: 0;
}

.testimonial-item p {
    color: #e0e0e0;
    font-style: italic;
    line-height: 1.8;
}

.ratings i {
    color: #FFC107;
}

/* Dashboard cards - enhanced */
.dashboard-card {
    padding: 1.75rem 2rem;
    background-color: #1e1e2d;
    background-image: linear-gradient(to bottom right, rgba(30, 30, 45, 1), rgba(25, 25, 40, 1));
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(100, 149, 237, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(100, 149, 237, 0.3);
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 40%;
    background: linear-gradient(to bottom, #d19148, transparent);
    border-radius: 4px;
}

.dashboard-card span {
    font-size: 0.95rem;
    color: #9e9e9e;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-card .number {
    font-size: 2.5rem;
    color: #d19148;
    margin-top: 0.5rem;
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    position: relative;
    z-index: 2;
}

.dashboard-card .number.up {
    color: #4CAF50;
}

.dashboard-card .number.down {
    color: #F44336;
}

.dashboard-card .icon {
    position: absolute;
    color: #d19148;
    font-size: 7rem;
    bottom: -1.5rem;
    right: -1.5rem;
    opacity: 0.07;
    transition: all 0.5s ease;
    z-index: 1;
}

.dashboard-card:hover .icon {
    transform: scale(1.2) rotate(15deg);
    opacity: 0.12;
}

.dashboard-card .view--btn {
    padding: 0.5rem 1.125rem;
    font-size: 0.75rem;
    background-color: rgba(100, 149, 237, 0.1);
    color: #d19148;
    border-radius: 50px;
    align-self: flex-end;
    margin-top: -1.75rem;
    border: 1px solid rgba(100, 149, 237, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
}

.dashboard-card .view--btn:hover {
    background-color: #d19148;
    color: #fff;
    box-shadow: 0 5px 10px rgba(100, 149, 237, 0.2);
    transform: translateY(-2px);
}

.dashboard-card .view--btn i {
    margin-left: 0.25rem;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dashboard-card .view--btn:hover i {
    transform: translateX(3px);
}

/* Status indicator */
.dashboard-card .status {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.dashboard-card .status.up {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.dashboard-card .status.down {
    background-color: rgba(244, 67, 54, 0.1);
    color: #F44336;
    border: 1px solid rgba(244, 67, 54, 0.2);
}

@media (max-width: 767px) {
    .dashboard-card {
        padding: 1.5rem;
    }

    .dashboard-card .number {
        font-size: 2rem;
    }

    .dashboard-card .icon {
        font-size: 6rem;
    }
}

@media (max-width: 575px) {
    .dashboard-card .view--btn {
        margin-top: 1rem;
        align-self: flex-start;
    }
}

/* Support for col-lg-2-4 custom column */
.col-lg-2-4 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Footer redesign */
.footer {
    padding-top: 5rem;
    padding-bottom: 2rem;
    background-color: #18181f;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #d19148, #00BCD4);
}

.footer hr {
    background-color: rgba(255, 255, 255, 0.1);
    margin: 2.5rem 0;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 1.5rem;
}

.footer-about {
    margin-bottom: 2rem;
}

.footer-about p {
    color: #9e9e9e;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-widget h5 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    font-size: 1.25rem;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #d19148;
    border-radius: 3px;
}

.inline-menu {
    margin: -0.25rem -0.625rem;
}

.inline-menu li {
    padding: 0.25rem 0.625rem;
    transition: all 0.3s ease;
}

.inline-menu li a {
    color: #9e9e9e;
    position: relative;
    padding-left: 1rem;
    transition: all 0.3s ease;
}

.inline-menu li a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 5px;
    background-color: #d19148;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.inline-menu li a:hover {
    color: #d19148;
    padding-left: 1.25rem;
}

.inline-menu li a:hover::before {
    width: 7px;
    height: 7px;
}

.inline-social-links {
    margin: -0.25rem -0.5rem;
}

.inline-social-links li {
    padding: 0.25rem 0.5rem;
}

.inline-social-links li a {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #9e9e9e;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.inline-social-links li a i {
    font-size: 30px;
    color: color(srgb 0.8214 0.5697 0.2831);
}

.inline-social-links li a i:hover {
    color: #fff;
}

.inline-social-links li a:hover .inline-social-links li a i {
    color: #fff;
}

.inline-social-links li a:hover {
    background-color: #d19148;
    color: #fff;
    border-color: #d19148;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    color: #9e9e9e;
    font-size: 0.875rem;
}

.copyright a {
    color: #d19148;
}

/* Account & Authentication */
.account-wrapper {
    padding: 3rem;
    border: 1px solid rgba(100, 149, 237, 0.2);
    border-radius: 15px;
    background-color: #1e1e2d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

@media (max-width: 440px) {
    .account-wrapper {
        padding: 2rem;
    }
}

.account-thumb-area {
    margin-bottom: 2.5rem;
    text-align: center;
}

.account-thumb-area .title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 440px) {
    .account-thumb-area .title {
        font-size: 1.75rem;
    }
}

.account-thumb-area .account-thumb {
    width: 6rem;
    height: 6rem;
    border: 2px solid #d19148;
    border-radius: 50%;
    color: #d19148;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    background-color: rgba(100, 149, 237, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    margin-left: auto;
    margin-right: auto;
    margin-top: -6rem;
}

/* Animations */
@keyframes shadowGlow {
    0% {
        box-shadow: 0 0 15px rgba(100, 149, 237, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(100, 149, 237, 0.4);
    }
    100% {
        box-shadow: 0 0 15px rgba(100, 149, 237, 0.2);
    }
}

.shadow-glow {
    animation: shadowGlow 2s infinite ease;
}

@keyframes upDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

.animate-updown {
    animation: upDown 3s infinite ease-in-out;
}

.fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInLeft {
    animation-name: fadeInLeft;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInRight {
    animation-name: fadeInRight;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInDown {
    animation-name: fadeInDown;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.shadow-sm {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
}

.shadow-md {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
}

.rounded-sm {
    border-radius: 6px !important;
}

.rounded-md {
    border-radius: 10px !important;
}

.rounded-lg {
    border-radius: 15px !important;
}

.rounded-xl {
    border-radius: 20px !important;
}

.border-light {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.border-primary {
    border: 1px solid rgba(100, 149, 237, 0.3) !important;
}

/* Scroll to top */
.scroll-to-top {
    height: 3.5rem;
    width: 3.5rem;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: none;
    z-index: 99;
    cursor: pointer;
    text-align: center;
    border-radius: 10px;
    background-color: #d19148;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-to-top:hover {
    background-color: #3a78e7;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.scroll-to-top .scroll-icon {
    font-size: 1.5rem;
    color: #ffffff;
}

.input-group {
    flex-wrap: nowrap;
}

.show-pass {
    width: 5px;
}

/* How it works section */
.how-work-card {
    padding: 2.5rem 1.5rem;
    background-color: #1e1e2d;
    border-radius: 15px;
    position: relative;
    border: 1px solid rgba(100, 149, 237, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    overflow: hidden;
}

.how-work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(100, 149, 237, 0.3);
}

.how-work-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 50%;
    background: linear-gradient(to bottom, #d19148, transparent);
    border-radius: 5px 0 0 5px;
}

.how-work-card__step {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: rgba(100, 149, 237, 0.1);
    border: 2px solid #d19148;
    color: #d19148;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    margin: 0 auto;
    position: relative;
    transition: all 0.3s ease;
}

.how-work-card:hover .how-work-card__step {
    transform: scale(1.1);
    background-color: rgba(100, 149, 237, 0.2);
}

.how-work-card .title {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

.how-work-card p {
    color: #9e9e9e;
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.how-work-item {
    transition: all 0.5s ease;
}

@media (max-width: 991px) {
    .how-work-card {
        padding: 2rem 1.25rem;
    }

    .how-work-card__step {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .how-work-card .title {
        font-size: 1.125rem;
    }
}

@media (max-width: 575px) {
    .how-work-card {
        padding: 1.75rem 1rem;
    }
}

.table-responsive--md {
    overflow-y: scroll;
    scrollbar-width: none;
}

.navbar-brand {
    width: 50px;
}

.navbar-toggler {
    color: #fff;
}

/* Feature Section Styling */
.feature-section {
    position: relative;
    background-color: #1e1e2d;
}

.pb-150 {
    padding-bottom: 150px;
}

.pt-150 {
    padding-top: 150px;
}

.section-header {
    margin-bottom: 60px;
}

.section__title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.section-header p {
    font-size: 16px;
    line-height: 1.8;
    color: #9e9e9e;
}

.feature--item {
    background-color: #2a2a3a;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature--item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-color: rgba(100, 149, 237, 0.3);
}

.feature-thumb.icon {
    font-size: 3rem;
    color: #d19148;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-thumb.icon i {
    font-size: 45px;
}

.feature--item:hover .feature-thumb.icon {
    transform: scale(1.1);
}

.feature-content .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.feature-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
    color: #9e9e9e;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .pb-150 {
        padding-bottom: 100px;
    }

    .pt-150 {
        padding-top: 100px;
    }

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

@media (max-width: 575px) {
    .pb-150 {
        padding-bottom: 70px;
    }

    .pt-150 {
        padding-top: 70px;
    }

    .section__title {
        font-size: 28px;
    }

    .feature--item {
        padding: 25px;
    }
}

.feature-item-wrapper {
    margin-bottom: 20px;
}

.gateway-option {
    margin-bottom: 0;
}

.userData * {
    color: white;
}

.filter-button {
    padding: 15px 20px !important;
}

.table > :not(caption) > * > * {
    padding: 1rem 1.5rem;
}