@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg: #050505;
    --main-bg: rgba(29, 29, 29, 1);
    --main-color: rgba(72, 157, 31, 1);
    --main-color-rgb: 72, 157, 31;
    --surface: rgba(255, 255, 255, 0.03);
    --surface-hover: rgba(255, 255, 255, 0.06);
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glow: 0 0 40px rgba(var(--main-color-rgb), 0.25);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
}

html {
    overflow-x: hidden !important;
}

body {
    margin-top: 0;
    font-family: "Inter", sans-serif;
    background-color: #030303;
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(var(--main-color-rgb), 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(var(--main-color-rgb), 0.05) 0%, transparent 40%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
    background-attachment: fixed;
    color: #fff;
    overflow-x: hidden !important;
}

@media (min-width: 1200px) {
    .container {
        width: 1400px;
    }
}

.header {
    margin: 0;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.header-glow {
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(var(--main-color-rgb), 0.2) 0%, rgba(var(--main-color-rgb), 0.05) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: pulseGlow 6s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

nav.navbar.navbar-default {
    background: transparent;
    border: unset;
    border-radius: 0;
    margin: 0;
}

.head {
    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        rgba(3, 3, 3, 0.85);
    background-size: 60px 60px, 60px 60px, 100% 100%;
    backdrop-filter: blur(25px) saturate(1.5);
    -webkit-backdrop-filter: blur(25px) saturate(1.5);
    border-bottom: 1px solid rgba(var(--main-color-rgb), 0.2);
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: all 0.3s;
}

.head .container {
    display: flex;
    align-items: center;
}

.faq {
    max-width: 80%;
    margin: 0 auto;
}

.navbar-default .navbar-nav>li>a {
    color: rgba(160, 160, 160, 1);
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
    color: var(--main-color);
    background-color: transparent !important;
    text-shadow: 0 0 15px rgba(var(--main-color-rgb), 0.5);
}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
    color: var(--main-color);
    text-decoration: none;
}

a,
a:hover,
a:focus {
    transition: 0.3s ease-in-out;
}

.logo img {
    height: 62px;
}

.head {
    height: 105px;
}

.head .container {
    display: flex;
    align-items: center;
    height: 105px;
}

@media (min-width: 768px) {
    .body .content {
        float: left;
        width: 100%;
    }
}


h2.question.active {
    background: rgba(var(--main-color-rgb), 0.12);
    border-color: rgba(var(--main-color-rgb), 0.3);
}

.question {
    text-align: left;
    color: rgba(255, 255, 255, 1);
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0px;
    vertical-align: middle;
    cursor: pointer;
    padding: 20px;
    padding-right: 55px;
    display: flex;
    background: rgba(var(--main-color-rgb), 0.03);
    border: 1px solid rgba(var(--main-color-rgb), 0.08);
    margin-bottom: 0;
    min-height: 80px;
    align-items: center;
    transition: all .3s;
    border-radius: 8px;
    margin-bottom: 8px;
    position: relative;
}

.question::after {
    content: "\2b";
    position: absolute;
    right: 25px;
    transition: 0.2s;
    font-family: "Font Awesome 6 Free";
    width: 27px;
    height: 27px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.64);
    transition: .3s;
}

.answer {
    font-family: Inter;
    font-weight: 500;
    font-size: 16.6px;
    line-height: 120%;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #fff;
    border: 0.79px solid rgba(255, 255, 255, 0.15);
    border-top: unset;
    margin: 0;
    padding: 15px;
    min-height: 88px;
    display: flex;
    align-items: center;
}

.answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.question.active::after {
    content: "\f068";
    color: #fff;
    transition: .3s;
}

.qnr {
    font-family: Inter;
    font-weight: 700;
    font-size: 26.39px;
    line-height: 120%;
    letter-spacing: 0.14px;
    color: rgba(255, 255, 255, 1);
    margin-right: 1em;
}

.ficon {
    width: 48px;
    height: 48px;
    background: rgba(217, 217, 217, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ftext {
    display: flex;
    flex-direction: column;
    color: rgba(255, 255, 255, 1);
}

.ftext b {
    font-family: Inter;
    font-weight: 800;
    font-size: 23.3px;
    line-height: 28.48px;
}

.ftext span {
    font-family: Inter;
    font-weight: 400;
    font-size: 16.34px;
    line-height: 19.97px;
}

.ftitle {
    display: flex;
    gap: 1em;
    align-items: center;
}

.features-section {
    margin-top: 8em;
    text-align: center;
}

.features-heading {
    margin-bottom: 4em;
}

.features-label {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--main-color);
    display: inline-block;
    padding: 8px 20px;
    background: rgba(var(--main-color-rgb), 0.1);
    border: 1px solid rgba(var(--main-color-rgb), 0.2);
    border-radius: 30px;
    margin-bottom: 1em;
}

.features-title {
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: 42px;
    color: #fff;
    margin: 0;
}

.features-title span {
    color: var(--main-color);
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5em;
    text-align: left;
}

.fficon {
    width: 60px;
    height: 60px;
    background: rgba(var(--main-color-rgb), 0.15);
    border: 1px solid rgba(var(--main-color-rgb), 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--main-color);
    border-radius: 14px;
    transition: all .3s ease;
    margin-bottom: 1.5em;
}

.fftitle {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8em;
}

.ffdesc {
    font-family: Inter;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.ffblock:hover .fficon {
    background: var(--main-color);
    color: #fff;
    box-shadow: 0 0 30px rgba(var(--main-color-rgb), 0.4), 0 0 60px rgba(var(--main-color-rgb), 0.15);
    transition: .3s;
}

.ffblock {
    background: rgba(var(--main-color-rgb), 0.03);
    border: 1px solid rgba(var(--main-color-rgb), 0.1);
    border-radius: 18px;
    padding: 2.5em 2em;
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.ffblock::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--main-color), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.ffblock:hover::before {
    opacity: 1;
}

.ffblock:hover {
    border-color: rgba(var(--main-color-rgb), 0.3);
    background: rgba(var(--main-color-rgb), 0.06);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(var(--main-color-rgb), 0.08);
}

a,
a:hover,
a:focus {
    transition: .3s;
}

.ffdesc a {
    color: var(--main-color);
}

/* Top Customer — Compact Bar */

.tc-mini {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    padding: 16px 22px;
    transition: all 0.3s ease;
    max-width: 400px;
}

.tc-mini:hover {
    border-color: rgba(255, 215, 0, 0.25);
    background: rgba(255, 215, 0, 0.03);
}

.tc-mini-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tc-mini-crown {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffd700;
    font-size: 15px;
    flex-shrink: 0;
}

.tc-mini-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.25);
    object-fit: cover;
}

.tc-mini-info {
    display: flex;
    flex-direction: column;
}

.tc-mini-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tc-mini-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.tc-mini-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.15);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #ffd700;
    flex-shrink: 0;
}

.tc-mini-badge i {
    font-size: 10px;
}

.mod {
    width: 70%;
    margin: 0 auto;
    margin-top: 8em;
}

/* ═══════════════════════════════════════════════════════════════
   Recent Payments — Horizontal Infinite Scroll
   ═══════════════════════════════════════════════════════════════ */

@keyframes rp-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
    }
}

.rp-section {
    margin-top: 60px;
    margin-bottom: 60px;
    width: 100%;
    position: relative;
    overflow: hidden !important;
}

.rp-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    padding: 0;
}

.rp-header-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.rp-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(var(--main-color-rgb), 0.1);
    border: 1px solid rgba(var(--main-color-rgb), 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    font-size: 18px;
}

.rp-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.rp-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.rp-live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #00e676;
    letter-spacing: 0.5px;
}

.rp-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00e676;
    animation: rp-pulse 1.5s ease-in-out infinite;
}

@keyframes rp-pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 0 6px rgba(0, 230, 118, 0);
    }
}

.rp-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.rp-scroll-track {
    display: flex;
    gap: 25px;
    width: fit-content;
    animation: rp-scroll 40s linear infinite;
}

.rp-scroll-track:hover {
    animation-play-state: paused;
}

.rp-card {
    min-width: 260px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.rp-card:hover {
    border-color: rgba(var(--main-color-rgb), 0.25);
    background: rgba(var(--main-color-rgb), 0.04);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.rp-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rp-avatar {
    flex-shrink: 0;
}

.rp-avatar img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 2px solid rgba(var(--main-color-rgb), 0.2);
    object-fit: cover;
}

.rp-user-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.rp-username {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rp-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
}

.rp-price-badge {
    flex-shrink: 0;
    background: rgba(var(--main-color-rgb), 0.1);
    color: var(--main-color);
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
    border: 1px solid rgba(var(--main-color-rgb), 0.15);
}

.rp-card-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.rp-card-bottom i {
    color: rgba(var(--main-color-rgb), 0.5);
    font-size: 11px;
}

.rp-card-bottom span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

div#payments-module {
    margin-top: 3em;
}

div#donator-module {
    width: 100%;
    position: relative;
    padding-left: 9%;
    margin-bottom: 20px;
    overflow-x: hidden;
}

.tophead {
    margin-bottom: 1em;
}

.mod {
    margin-bottom: 10em;
}

.cathead::before {
    content: "";
    background: linear-gradient(180deg, rgba(54, 212, 11, 0.53) -16.88%, rgba(0, 0, 0, 0) 119.02%);
    width: 100%;
    height: 100%;
    position: absolute;
}

.cathead {
    margin: 0;
    background: url(https://i.imgur.com/IydULAZ.png);
    height: 475px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.cathead .container {
    display: flex;
    position: relative;
    flex-direction: column;
    height: 100%;
    align-content: center;
    justify-content: center;
    text-align: center;
}

@media (max-width: 768px) {
    .cathead .container {
        gap: 30px;
        height: auto;
        padding: 16px;
        flex-direction: column;
        align-items: center;
    }

    .catselect .tab {
        top: -8em;
        position: relative;
        margin-top: 10px;
    }
}

.catname {
    font-family: Inter;
    font-weight: 800;
    font-size: 63.39px;
    line-height: 77.48px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
}

.catdesc a {
    color: rgba(254, 159, 169, 1);
}

.catdesc {
    font-family: Inter;
    font-weight: 500;
    font-size: 13.35px;
    line-height: 18.69px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: rgba(255, 255, 255, 1);
    max-width: 65%;
    max-height: 15%;
    margin: 0 auto;
}

.package {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(var(--main-color-rgb), 0.08);
    border-radius: 16px;
    margin: 0 !important;
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.package::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--main-color), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.package:hover::before {
    opacity: 1;
}

.package .image {
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    object-fit: cover;
}

.package .image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.package:hover .image img {
    transform: scale(1.08);
}

.package .pfooter {
    margin-top: auto;
}

.package:hover {
    border-color: rgba(var(--main-color-rgb), 0.3);
    background: rgba(var(--main-color-rgb), 0.04);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(var(--main-color-rgb), 0.06);
}

@media (min-width: 992px) {
    .category .packages-image {
        display: grid;
        gap: 16px;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .category .packages-image .package,
    .category .packages-image .fpack {
        float: none;
        width: 100%;
        max-width: 400px;
    }
}

.category .packages-image .fpack {
    height: 100%;
    display: flex;
}

.category .packages-image .fpack a.featured-package,
.category .packages-image .fpack div.featured-package {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.category .packages-image .fpack-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.category .packages-image .fpack-footer {
    margin-top: auto;
}

.packages-image::before {
    display: none !important;
}

.category {
    margin: 15px;
}

.tags {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    height: auto;
}

.taglist {
    min-height: 40px;
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.product {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 18px;
    color: rgba(255, 255, 255, 1);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 10px;
}

.pfooter span {
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: 22px;
    line-height: 28px;
    color: rgba(255, 255, 255, 1);
}

.pfooter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5em;
    padding-top: 1em;
    border-top: 1px solid rgba(var(--main-color-rgb), 0.08);
}

.pfooter .price {
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: 22px;
    line-height: 28px;
    color: rgba(255, 255, 255, 1);
}

.pbtn .btn:hover::before {
    background: var(--main-color);
    transition: .3s;
}

.pbtn .btn::before {
    background: rgba(var(--main-color-rgb), 0.12);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    z-index: -1;
    transition: all .3s;
}

.pbtn .btn {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 11px;
    line-height: 14px;
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    background: transparent;
    border: 1px solid rgba(var(--main-color-rgb), 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    margin-top: 1em;
    transition: all .3s;
    border-radius: 10px;
}

.psearch {
    background: rgba(var(--main-color-rgb), 0.03);
    border: 1px solid rgba(var(--main-color-rgb), 0.08);
    border-radius: 12px;
    height: 70px;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    transition: all 0.3s;
}

.psearch:focus-within {
    border-color: rgba(var(--main-color-rgb), 0.3);
    background: rgba(var(--main-color-rgb), 0.06);
}

.psearch i {
    color: rgba(172, 172, 172, 1);
    font-size: 20px;
}

.psearch input {
    height: 80px;
    background: transparent;
    border: transparent;
    outline: unset;
    box-shadow: none;
    font-family: Inter;
    font-weight: 400;
    font-size: 23.79px;
    line-height: 120%;
    letter-spacing: 0px;
    vertical-align: middle;
    color: rgba(255, 255, 255, 0.54);
    margin-left: 1em;
    width: 100%;
}

.search-container {
    margin-top: 5em;
    margin-bottom: 2em;
}

.tab::Before {
    background: rgba(255, 255, 255, 0.2);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    z-index: -1;
    transition: .3s;
    opacity: .5;
    display: flex;
    height: 45px;
}

.catselect .tab {
    position: relative;
    font-family: Inter;
    font-weight: 600;
    font-size: 16.73px;
    vertical-align: middle;
    color: rgba(255, 255, 255, 1);
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    height: 45px;
    cursor: pointer;
    transition: .3s;
    border-radius: 12px;
}

.catselect {
    display: flex;
    gap: 1em;
    justify-content: center;
    position: relative;
    top: 8em;
}

.tab.active::Before,
.tab:hover::Before {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    transition: .3s;
}

.tab.active,
.tab:hover {
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 12px;
    transition: .3s;
}

.package {
    transition: .3s;
}

.pbtn .btn:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
    box-shadow: 0 4px 20px rgba(var(--main-color-rgb), 0.3);
    transition: .3s;
}

.pbtn .btn:hover::before {
    background: var(--main-color);
    transition: .3s;
}

.package-footer-buttons .btn span {
    position: absolute;
    left: 50%;
    transform: translateX(-60%);
    font-family: Inter;
    font-weight: 700;
    font-size: 15.01px;
    line-height: 29.66px;
    vertical-align: middle;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

.pbtns {
    margin-top: 1em;
}

::-webkit-scrollbar {
    width: 4px;
    height: 20px;
}

::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 25px;
}

::-webkit-scrollbar-track {
    background-color: rgba(217, 217, 217, 0.13);
}

::-webkit-scrollbar-corner {
    background-color: var(--main-color);
}

.pack {
    margin-top: 5em;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    height: 400px;
    border: 1px solid rgba(var(--main-color-rgb), 0.1);
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 400px;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
}

.nav-button {
    width: 50px;
    height: 50px;
    background-color: rgb(0 0 0 / 61%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    border: 1.29px solid rgba(255, 255, 255, 0.24);
}

.nav-button:hover {
    background-color: rgb(0 0 0 / 80%);
}

.nav-button svg {
    width: 24px;
    height: 24px;
    fill: white;
}


.pack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3em;
}

.pname {
    font-family: Inter;
    font-weight: 700;
    font-size: 15.71px;
    line-height: 24.03px;
    color: rgba(242, 242, 242, 1);
    vertical-align: middle;
}

.pdesc h2 {
    font-family: Inter;
    font-weight: 700;
    font-size: 15.71px;
    line-height: 24.03px;
    vertical-align: middle;
    color: rgba(242, 242, 242, 1);
    margin-top: 10px;
}

.ppdesc a {
    color: var(--main-color);
}

.ppdesc {
    background: rgba(217, 217, 217, 0.06);
    height: 328px;
    padding: 15px;
    border: 0.92px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    font-family: Inter;
    font-weight: 500;
    font-size: 10px;
    line-height: 18.89px;
    color: rgba(242, 242, 242, 1);
    vertical-align: middle;
    overflow: auto;
}

a.youtube i {
    border-right: 0.92px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.23);
    width: 70px;
    height: 100%;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    max-width: 90px;
    position: absolute;
    left: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

a.youtube span {
    position: absolute;
    left: 50%;
    transform: translateX(-25%);
    font-family: Inter;
    font-weight: 700;
    font-size: 15.01px;
    line-height: 29.66px;
    vertical-align: middle;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

a.youtube {
    height: 60px;
    display: flex;
    border-radius: 3px;
    background: rgba(223, 67, 69, 1);
    align-items: center;
    max-width: 100%;
    position: relative;
    justify-content: center;
}

.package-footer-buttons .btn {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: unset;
    font-family: Inter;
    font-weight: 700;
    font-size: 15.01px;
    line-height: 29.66px;
    color: rgba(255, 255, 255, 1);
    vertical-align: middle;
    position: relative;
}

.package-footer-buttons .btn i {
    border-left: 0.92px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.23);
    width: 70px;
    height: 100%;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    max-width: 90px;
    position: absolute;
    right: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.pbtns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
}

.ppfooter {
    margin-top: 1em;
}

.fftitle {
    font-family: Inter;
    font-weight: 700;
    font-size: 15.05px;
    line-height: 30.15px;
    color: rgba(242, 242, 242, 1);
    vertical-align: middle;
}

.featured {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.ppfooter {
    display: flex;
    justify-content: space-between;
}

.slider {
    position: relative;
}

.sfeatured {
    position: absolute;
    color: rgba(255, 255, 255, 1);
    font-family: Inter;
    font-weight: 600;
    font-size: 12.47px;
    line-height: 20.18px;
    vertical-align: middle;
    width: 120px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
    top: 1em;
}

.sfeatured::before {
    background: rgba(255, 255, 255, 0.08);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    z-index: -1;
    transition: .3s;
    opacity: .5;
    display: flex;
    vertical-align: middle;
}

.spremium {
    background: linear-gradient(90deg, rgba(255, 193, 94, 0.7) 0%, rgba(244, 139, 58, 0.7) 50%, rgba(255, 155, 78, 0.7) 100%);
    min-width: 139px;
    width: fit-content;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Inter;
    font-weight: 600;
    font-size: 12.47px;
    line-height: 20.18px;
    vertical-align: middle;
    color: rgba(255, 255, 255, 1);
    position: absolute;
    right: 2%;
    top: 1em;
}

.stags {
    position: relative;
    z-index: 9;
}

.sep {
    background: radial-gradient(50% 50% at 50% 50%, rgba(200, 200, 200, 0.1) 0%, rgba(0, 0, 0, 0) 80%);
    height: 2px;
    width: 100%;
    margin-top: 10em;
    margin-bottom: 10em;
}

@media (max-width: 991px) {
    .pack {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 2em;
    }

    a.youtube i {
        border-right: 0.92px solid rgba(255, 255, 255, 0.3);
        background: rgba(0, 0, 0, 0.23);
        width: 50px;
    }

    .package-footer-buttons .btn i {
        border-left: 0.92px solid rgba(255, 255, 255, 0.3);
        background: rgba(0, 0, 0, 0.23);
        width: 50px;
    }

    a.youtube {
        height: 40px;
    }

    a.youtube span {
        position: absolute;
        left: 50%;
        transform: translateX(-25%);
        font-family: Inter;
        font-weight: 700;
        font-size: 11px;
    }

    .package-footer-buttons a {
        width: 100%;
        margin-left: 0px;
        margin-bottom: 0;
    }

    .package-footer-buttons .btn span {
        position: absolute;
        left: 50%;
        transform: translateX(-60%);
        font-family: Inter;
        font-weight: 700;
        font-size: 12px;
        line-height: 29.66px;
        vertical-align: middle;
        color: rgba(255, 255, 255, 1);
        text-decoration: none;
    }

    .package-footer-buttons .btn {
        width: 100%;
        height: 40px;
    }

    .package-footer-buttons .btn span {
        position: absolute;
        left: 50%;
        transform: translateX(-70%);
    }

    .slider-container {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 10px;
        height: 250px;
    }

    .slider {
        display: flex;
        transition: transform 0.5s ease-in-out;
        height: 250px;
    }

    .slider .slide {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 100%;
    }

    .slider .slide img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        border-radius: 8px;
    }

    .sfeatured {
        left: 3%;
        transform: unset;
        top: 1em;
    }

    .category .packages-image {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .category .packages-image .package {
        float: none;
        width: 100%;
        margin: 0 !important;
    }
}

.fp {
    font-family: Inter, sans-serif;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 2em;
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.fp,
.fp span {
    background: linear-gradient(120deg,
            #444 0%,
            #777 20%,
            #aaa 40%,
            #fff 50%,
            #aaa 60%,
            #777 80%,
            #444 100%);
    background-size: 250% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: darkMetalShine 6s ease-in-out infinite alternate;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
}

.fp {
    transform: rotateX(18deg);
}

.fp span {
    font-weight: 600;
    transform: rotateX(18deg);
    opacity: 0.96;
}

@keyframes darkMetalShine {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 100% center;
    }
}

.sep2 {
    background: radial-gradient(50% 50% at 50% 50%, rgba(200, 200, 200, 0.1) 0%, rgba(0, 0, 0, 0) 80%);
    height: 2px;
    width: 100%;
    margin-top: 0em;
    margin-bottom: 7em;
}

.htitle {
    font-family: "Outfit", sans-serif;
    font-weight: 900;
    font-size: 60px;
    line-height: 1.05;
    vertical-align: middle;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    letter-spacing: -1px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.htitle-accent {
    color: var(--main-color);
    text-shadow: 0 0 60px rgba(var(--main-color-rgb), 0.5), 0 0 120px rgba(var(--main-color-rgb), 0.2);
}

.hdesc {
    font-family: Inter;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    vertical-align: middle;
    max-width: 500px;
}

.hdesc {
    margin-top: 1.5em;
}

a.login {
    border: 1px solid rgba(var(--main-color-rgb), 0.3);
    border-radius: 12px;
    height: 44px;
    display: flex;
    padding: 12px 18px;
    align-items: center;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 1);
    background: rgba(var(--main-color-rgb), 0.08);
    transition: all 0.3s;
}

a.login:hover {
    background: rgba(var(--main-color-rgb), 0.15);
    border-color: rgba(var(--main-color-rgb), 0.5);
    color: var(--main-color);
    text-decoration: none;
}

.currency .btn {
    border: 1px solid rgba(var(--main-color-rgb), 0.15) !important;
    border-radius: 12px;
    height: 44px;
    display: flex;
    padding: 12px 15px;
    align-items: center;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    background: transparent !important;
    gap: 5px;
    outline: unset !important;
    box-shadow: unset !important;
    position: relative;
    transition: all 0.3s;
}

.currency .btn:hover,
.currency .btn:focus {
    color: var(--main-color);
    border-color: rgba(var(--main-color-rgb), 0.3) !important;
}

ul.navright {
    margin-bottom: 0;
    display: flex;
    gap: 1em;
    margin-left: auto;
}


@media (min-width: 992px) {
    .collapse.navbar-collapse {
        display: flex !important;
        width: 100%;
        align-items: center;
        justify-content: space-between;
    }
}

nav.navbar.navbar-default {
    width: 100%;
    position: relative;
}

.discount2::before {
    content: "";
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(var(--main-color-rgb), 0.5), transparent);
    inset: -1px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    padding: 1px;
    border-radius: 12px;
}

.discount2 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 22px;
    border-radius: 12px;
    background: rgba(var(--main-color-rgb), 0.06);
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.ddesc b {
    color: var(--main-color);
}

.ddesc {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 11px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.currency {
    position: relative;
}

.header .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 95%;
    position: relative;
    z-index: 1;
    flex: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4em;
    width: 100%;
    padding: 3em 0;
}

.hero-left {
    flex: 1;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}


.cbicon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    border-radius: 50%;
    border: 1.15px solid rgba(255, 255, 255, 0.27);
}

.cbhead {
    display: flex;
    align-items: center;
    gap: 1em;
}

.cbnr {
    font-family: Inter;
    font-weight: 500;
    font-size: 14.06px;
    line-height: 17.18px;
    color: rgba(255, 255, 255, 0.66);
    vertical-align: middle;
    text-transform: uppercase;
}

.cbname {
    font-family: Inter;
    font-weight: 600;
    font-size: 18.5px;
    line-height: 22.61px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
}

.cbname b {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.62);
}

.cpack::before {
    background: rgba(21, 21, 21, 0.8);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    left: 0;
    backdrop-filter: blur(116.906005859375px);
}

.cpack {
    display: flex;
    align-items: center;
    position: relative;
    padding: 20px;
}

.cpack::after {
    content: "";
    background: var(--main-color);
    width: 4px;
    height: 40px;
    position: absolute;
    left: -1px;
}

.cpack {
    margin-bottom: 15px;
}

.cpname {
    font-family: Inter;
    font-weight: 500;
    font-size: 11.96px;
    line-height: 14.61px;
    color: rgba(255, 255, 255, 0.66);
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
}

.cpprice {
    font-family: Inter;
    font-weight: 700;
    font-size: 14.05px;
    line-height: 21.5px;
    color: rgba(242, 242, 242, 1);
}

.cprem .btn {
    background: rgba(255, 255, 255, 0.08);
    min-width: 100px;
    display: flex;
    justify-content: center;
    border-radius: 7px;
    height: 40px;
    align-items: center;
    border: unset !important;
    color: var(--main-color);
}

.cprem {
    margin-left: auto;
    min-width: 100px;
    display: flex;
    justify-content: center;
    border-radius: 7px;
    height: 40px;
    align-items: center;
}

.cpackages {
    height: 475px;
    overflow: auto;
}

.cpackages {
    margin-top: 2em;
}

.cbasket {
    display: flex;
    gap: 5em;
}

.cbleft {
    width: 70%;
}

.cbright {
    width: 30%;
}

.cbtext2 {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

.cbicon2 {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    border-radius: 50%;
    border: 1.15px solid rgba(255, 255, 255, 0.27);
}

.cbtext2 {
    font-family: Inter;
    font-weight: 500;
    font-size: 19.81px;
    line-height: 134%;
    color: rgba(255, 255, 255, 0.61);
    vertical-align: middle;
}

.cbtext2 b {
    color: rgba(255, 255, 255, 0.95);
}

tebex-checkout a:hover {
    transition: .3s;
    transform: scale(1.02);
}

tebex-checkout a::before {
    content: "";
    border: 0.87px solid rgba(var(--main-color-rgb), 0.96);
    width: 103%;
    height: 120%;
    position: absolute;
    display: flex;
    border-radius: 8px;
    top: -5px;
    z-index: -1;
}

tebex-checkout a {
    background: linear-gradient(180deg, var(--main-color) 0%, rgba(var(--main-color-rgb), 0.85) 100%);
    box-shadow: 0px 0px 41.15px 0px rgba(var(--main-color-rgb), 0.96);
    font-family: Inter;
    font-weight: 600;
    font-size: 13.14px;
    line-height: 19.85px;
    letter-spacing: -0.26px;
    vertical-align: middle;
    color: rgba(255, 255, 255, 1) !important;
    width: 100%;
    border-radius: 8px;
    display: flex;
    padding: 15px;
    min-width: 100%;
    text-transform: uppercase;
    text-decoration: none !important;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: .3s;
}

.cbicon2 {
    box-shadow: 1px 1px 20px 70px rgba(33, 55, 200, 0.1);
}

.cbicon {
    box-shadow: 1px 1px 20px 70px rgba(35, 219, 2, 0.1);
}

.cpackages {
    position: relative;
    z-index: 2;
}

.cbasket {
    margin-top: 10em;
}

div#bg {
    background: radial-gradient(ellipse at center, rgba(var(--main-color-rgb), 0.15) 0%, transparent 70%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    background-position: center;
    left: 0;
    top: 0;
}

.lcont p {
    display: none;
}

.ltext {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ltext span {
    font-family: Inter;
    font-weight: 500;
    font-size: 25px;
    line-height: 137%;
    color: rgba(255, 255, 255, 0.61);
    text-align: center;
    vertical-align: middle;
}

.ltext b {
    font-family: Inter;
    font-weight: 600;
    font-size: 25px;
    line-height: 137%;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    vertical-align: middle;
}



.username .btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.username .btn::before {
    content: "";
    width: 103%;
    height: 100%;
    border: 1.36px solid rgba(var(--main-color-rgb), 0.47);
    position: absolute;
    border-radius: 10px;
    padding: 35px;
}

.username .btn {
    background: linear-gradient(180deg, var(--main-color) 0%, rgba(var(--main-color-rgb), 0.85) 100%);
    box-shadow: 0px 3.57px 25.01px 0px rgba(var(--main-color-rgb), 0.13);
    border: unset;
    font-family: Inter;
    font-weight: 600;
    font-size: 20.53px;
    line-height: 31.02px;
    letter-spacing: -0.41px;
    vertical-align: middle;
    color: rgba(255, 255, 255, 1);
    width: 310px;
    position: relative;
    border-radius: 10px;
    height: 60px;
}

.username {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lpage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3em;
    margin-top: 10em;
    margin-bottom: 10em;
}

.username {
    margin-top: 5em;
}

.lbottom::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    /* background: url(https://i.imgur.com/eOlqa8u.png); */
    background-size: 100% 100%;
}

.lbottom {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0) 0%, rgba(143, 143, 143, 0.67) 50%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    height: 2px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lbottom {
    margin-bottom: 30vh;
}

div#bg {
    z-index: -1;
}

a.login {
    text-decoration: unset;
}

a.socblock {
    display: flex;
    text-decoration: none;
    align-items: center;
    gap: 1em;
}

.sicon::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    bottom: -10px;
    height: 5px;
    width: 32px;
    border-radius: 12px;
    box-shadow: 0px 0px 8.51px 0px rgba(var(--main-color-rgb), 0.8);
}

.sicon {
    font-size: 2em;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stext span {
    font-family: Inter;
    font-weight: 600;
    font-size: 13px;
    vertical-align: middle;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.stext h5 {
    font-family: Inter;
    font-weight: 600;
    font-size: 16px;
    vertical-align: middle;
    text-transform: uppercase;
    margin: 0;
    color: rgba(255, 255, 255, 1);
    display: flex;
    gap: 5px;
}

.lsocials {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 70%;
}

.username .btn {
    z-index: 99;
}

.lhead i {
    font-size: 3em;
    color: #fff;
}


input.form-control.input-lg {
    background: linear-gradient(180deg, rgba(var(--main-color-rgb), 0.5) 0%, rgba(var(--main-color-rgb), 0.7) 100%);
    box-shadow: 0px 3.57px 25.01px 0px rgba(var(--main-color-rgb), 0.13);
    border: unset;
    color: #fff;
    text-align: center;
    font-family: Inter;
    font-weight: 600;
    font-size: 20.53px;
    line-height: 31.02px;
    letter-spacing: -0.41px;
    vertical-align: middle;
    position: relative;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}


a#login-with-discord {
    background: linear-gradient(180deg, var(--main-color) 0%, rgba(var(--main-color-rgb), 0.85) 100%);
    box-shadow: 0px 3.57px 25.01px 0px rgba(var(--main-color-rgb), 0.13);
    border: unset;
    font-family: Inter;
    font-weight: 600;
    font-size: 20.53px;
    line-height: 31.02px;
    letter-spacing: -0.41px;
    vertical-align: middle;
    color: rgba(255, 255, 255, 1);
    width: 380px;
    position: relative;
    border-radius: 10px;
    height: 70px;
}

a#login-with-discord {
    display: flex;
    align-items: center;
    justify-content: center;
}

a#login-with-discord::before {
    content: "";
    width: 103%;
    height: 100%;
    border: 1.36px solid rgba(var(--main-color-rgb), 0.47);
    position: absolute;
    border-radius: 10px;
    padding: 40px;
}

.lcont .form-group {
    display: flex;
    flex-direction: column;
    gap: 2em;
    margin-top: 5em;
}

.lcont .continue {
    width: 50%;
}

.lcont .back {
    width: 50%;
}

.lcont .buttons {
    position: relative;
    display: flex;
    z-index: 1;
    justify-content: space-between;
    gap: 1em;
}

@media (max-width: 991px) {
    .ltext span {
        font-family: Inter;
        font-weight: 500;
        font-size: 20.96px;
    }

    .ltext b {
        font-family: Inter;
        font-weight: 600;
        font-size: 25.96px;
    }

    .username {
        margin-top: 0em;
    }

    .lsocials {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        width: 100%;
        margin-top: -5em;
        flex-direction: column;
        margin-bottom: 5em;
        gap: 3em;
    }

    .discount2 {
        display: none;
    }
}

.continue input {
    background: var(--main-color) !important;
    border: unset;
    box-shadow: 0px 0px 112.74px 0px rgba(var(--main-color-rgb), 0.76);
    font-family: Inter;
    font-weight: 700;
    font-size: 15px;
    vertical-align: middle;
    text-transform: uppercase;
    padding: 10px;
}

.back .btn {
    background: linear-gradient(180deg, rgba(var(--main-color-rgb), 0.3) 0%, rgba(var(--main-color-rgb), 0.7) 100%) !important;
    border: unset;
    font-family: Inter;
    font-weight: 700;
    font-size: 15px;
    vertical-align: middle;
    text-transform: uppercase;
    padding: 10px;
}

.btn:hover,
a:hover {
    opacity: .9;
}

button,
input {
    outline: unset !important;
}

.basket .btn {
    background: rgba(11, 11, 11, 1) !important;
    border: 1px solid rgba(62, 62, 62, 1) !important;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    border-radius: 50%;
    opacity: 1;
}

.basket .dropdown-menu {
    border: 1px solid rgba(62, 62, 62, 1);
    background: rgba(27, 27, 27, 1);
    border-radius: 15px;
    min-width: 400px;
    overflow: hidden;
    padding: 0;
}

@media (max-width: 768px) {
    .basket .dropdown-menu {
        position: absolute;
        left: -315px;
        transform: translateX(-80%);
        transform: scale(0.85);
    }
}


.droptitle {
    font-family: Inter;
    font-weight: 600;
    font-size: 11.76px;
    line-height: 14.37px;
    vertical-align: middle;
    color: rgba(255, 255, 255, 1);
    text-transform: uppercase;
}

.droptitle b {
    font-family: Inter;
    font-weight: 400;
    font-size: 11.76px;
    line-height: 14.37px;
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 0.62);
}

.drophead i {
    color: #fff;
    transform: rotate(-45deg);
}

.drophead {
    display: flex;
    justify-content: space-between;
    padding: 20px 15px;
}

.drophead {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(62, 62, 62, 1);
    padding: 15px;
    background: rgba(13, 13, 13, 1);
}

.baitem .price {
    font-family: Inter;
    font-weight: 500;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.66);
}

.baitem .name {
    font-family: Inter;
    font-weight: 700;
    font-size: 12px;
    line-height: 11.21px;
    color: #fff;
    vertical-align: middle;
    text-transform: uppercase;
}

.baright {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    gap: .5em;
}

.baright .remove a {
    background: rgba(200, 33, 50, 0.31);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
}

.baproduct a {
    background: rgba(0, 0, 0, 0.45);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
}

.baitem {
    display: flex;
    margin: 10px;
    background: rgba(61, 61, 61, 1);
    padding: 15px;
    align-items: center;
}

li.checkout .btn {
    background: linear-gradient(180deg, #2D2D2D 0%, #2A2A2A 100%) !important;
    width: 100%;
    border-radius: 4px;
    font-family: Inter;
    font-weight: 600;
    font-size: 12px;
    line-height: 12.34px;
    letter-spacing: -0.16px;
    vertical-align: middle;
    text-transform: uppercase;
}

li.checkout {
    margin: 10px;
    margin-top: 2em;
}

.login img {
    width: 25px;
    margin-right: 10px;
    border-radius: 50%;
}

.ricon {
    background: rgba(67, 67, 67, 1);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.15px solid rgba(255, 255, 255, 0.27);
}

.rpart {
    display: flex;
    align-items: center;
    gap: 1em;
}

.rtext b {
    font-family: Inter;
    font-weight: 400;
    font-size: 18.5px;
    line-height: 22.61px;
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 0.62);
    vertical-align: middle;
}

.rtext h1 {
    font-family: Inter;
    font-weight: 600;
    font-size: 18.5px;
    line-height: 22.61px;
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 1);
    vertical-align: middle;
    margin: 0;
}

.rtext span {
    font-family: Inter;
    font-weight: 500;
    font-size: 14.06px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: rgba(255, 255, 255, 0.66);
}

.coupons {
    display: grid;
    align-items: center;
    gap: 5em;
    grid-template-columns: 30% 62%;
}

.redeem form {
    width: 100%;
}

.redeem {
    width: 100%;
    background: rgba(22, 22, 22, 1);
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    padding: 15px;
    position: relative;
}

.redeem .btn {
    background: linear-gradient(180deg, #424242 0%, rgba(74, 74, 74, 0.85) 100%);
    border: 1px solid rgba(189, 189, 189, 0.47) !important;
    height: 37px;
    font-family: Inter;
    font-weight: 600;
    font-size: 10.75px;
    line-height: 16.23px;
    letter-spacing: -0.22px;
    vertical-align: middle;
    color: #fff;
    text-transform: uppercase;
    width: 120px;
    border-radius: 6px !important;
}

.redeem input {
    height: 37px;
    background: transparent !important;
    border: unset !important;
    font-family: Inter;
    font-weight: 500;
    font-size: 13.14px;
    line-height: 19.85px;
    letter-spacing: -0.26px;
    vertical-align: middle;
    color: #fff !important;
    text-align: center;
}

.redeem::before {
    content: "";
    position: absolute;
    width: 105%;
    height: 130%;
    background: url(https://i.imgur.com/DYE56yx.png);
    background-size: 100% 100%;
}

.redeem .btn:hover {
    background: linear-gradient(180deg, rgba(72, 157, 31, 1) 0%, rgba(72, 157, 31, 0.85) 100%);
    box-shadow: 0px 0px 33.65px 0px rgba(72, 157, 31, 0.96);

}

@media (max-width: 991px) {
    .cbasket {
        display: flex;
        gap: 5em;
        flex-direction: column-reverse;
    }

    .cbright {
        width: 100%;
    }

    .cbleft {
        width: 100%;
    }

    .coupons {
        display: grid;
        align-items: center;
        gap: 3em;
        grid-template-columns: 100%;
    }
}

.currency.open .dropdown-menu {
    border: 1px solid rgba(62, 62, 62, 1);
    background: rgba(27, 27, 27, 1);
    border-radius: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    padding: 10px;
}

.currency li a {
    color: #fff;
    font-size: 12px;
}

.currency li.active a {
    background: var(--main-color);
}

.currency .dropdown-menu>li>a:hover {
    color: #fff;
    background: var(--main-color);
}

.currency .dropdown-menu>li>a {
    border-radius: 10px;
    margin-bottom: 5px;
}

.mfooter {
    position: relative;
    border-top: 1px solid var(--glass-border);
    padding: 5em 0 3em;
    margin-top: 8em;
    background: none;
}

.mfooter {
    position: relative;
    border-top: 1px solid var(--glass-border);
    padding: 5em 0 3em;
    margin-top: 8em;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--main-color), transparent);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3em;
}

.footer-brand img {
    width: 180px;
    margin-bottom: 1em;
}

.footer-desc {
    font-family: Inter;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    max-width: 350px;
}

.footer-links-group h4 {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5em;
    margin-top: 0;
}

.footer-links-group a {
    display: block;
    font-family: Inter;
    font-weight: 400;
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.8em;
    transition: color 0.3s;
}

.footer-links-group a:hover {
    color: var(--main-color);
}

.footer-socials {
    display: flex;
    gap: 1em;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    transition: all 0.3s;
}

.footer-socials a:hover {
    background: rgba(var(--main-color-rgb), 0.15);
    border-color: rgba(var(--main-color-rgb), 0.3);
}

.footer-socials a i {
    color: #fff;
    font-size: 16px;
}

.hdiscount {
    width: 300px;
    background: rgba(255, 255, 255, 0.07);
    padding: 15px;
    border-radius: 12px;
    position: relative;
}

.hdhead {
    display: flex;
    align-items: center;
    gap: 1em;
    text-align: left;
}

.hdicon {
    background: rgba(0, 0, 0, 0.2);
    height: 55px;
    width: 55px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hdicon img {
    width: 50px;
}

.hdtext h3 {
    font-family: Inter;
    font-weight: 700;
    font-size: 15.78px;
    line-height: 16.53px;
    letter-spacing: 0.54px;
    vertical-align: middle;
    color: #fff;
    margin: 0;
}

.hdtext span {
    font-family: Inter;
    font-weight: 400;
    font-size: 10.86px;
    line-height: 14.78px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: rgba(255, 255, 255, 0.85);
}

.offer {
    height: 54px;
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.31px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 1.31px 1.31px 1.31px rgba(255, 255, 255, 0.05) inset;
    border-radius: 11px;
    font-family: Inter;
    font-weight: 600;
    font-size: 11.33px;
    line-height: 15.42px;
    letter-spacing: 0.84px;
    vertical-align: middle;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 3em;
    margin-bottom: 2em;
}

div#otime {
    margin-left: auto;
    margin-right: 1em;
    font-family: Inter;
    font-weight: 700;
    font-size: 14.92px;
    line-height: 20.31px;
    letter-spacing: 0.95px;
    vertical-align: middle;
}

.offer i {
    font-size: 1.5em;
    color: #fff;
}

.omsg {
    background: rgba(0, 0, 0, 0.2);
    border: 1.31px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 2.61px 10.46px 0px rgba(0, 0, 0, 0.15);
    font-family: Inter;
    font-weight: 400;
    font-size: 10.53px;
    line-height: 14.04px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    vertical-align: middle;
}

.hdiscount a {
    background: linear-gradient(79.98deg, #36d40b 0%, #2aa608 100%);
    border: 1.31px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 1.31px 1.31px 1.31px rgba(255, 255, 255, 0.2) inset;
    width: 100%;
    display: flex;
    border-radius: 8px;
    padding: 10px;
    margin-top: 2em;
    justify-content: center;
    font-family: Inter;
    font-weight: 600;
    font-size: 12.9px;
    line-height: 17.55px;
    letter-spacing: 0.51px;
    vertical-align: middle;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1) !important;
    text-decoration: none;
}

.loffer {
    background: linear-gradient(102.94deg, #36d40b 0%, #2aa608 100%);
    border: 1.31px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0px 3.92px 7.84px 0px rgba(0, 0, 0, 0.2);
    border-radius: 14px;
    height: 26px;
    font-family: Inter;
    font-weight: 700;
    font-size: 10.98px;
    line-height: 14.94px;
    letter-spacing: 0.65px;
    vertical-align: middle;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    width: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -15px;
    right: -15px;
}

.hdiscount {
    margin-left: auto;
}

.fleft,
.fright {
    width: 25%;
}

.ffcont {
    display: flex;
    justify-content: space-between;
}

.fleft,
.fright {
    width: 25%;
    transform: rotate(-2deg);
    font-family: Inter;
    font-weight: 500;
    font-size: 14.57px;
    line-height: 24.02px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: rgba(255, 255, 255, 1);
}

.alinks a {
    color: #fff;
    text-decoration: none;
}

.alinks {
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin-top: 2em;
    color: #fff !important;
}

.fleft .alinks {
    transform: rotate(-2deg);
}

.ffcont {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.fright {
    margin-top: -5em;
}

.fright .fftext {
    transform: rotate(2deg);
}

.fleft .fftext {
    margin-top: -2em;
    margin-bottom: 2em;
}

.aflink span {
    color: rgba(255, 255, 255, 0.39);
    font-family: Inter;
    font-weight: 600;
    font-size: 13.84px;
    line-height: 20.06px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.aflink {
    display: flex;
    flex-direction: column;
    gap: .5em;
}

.hmain.hm2 {
    width: 100%;
}

@media (max-width: 991px) {
    .hmain.hmainright {
        display: none;
    }

    .hmain {
        width: 100%;
    }


    .features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5em;
    }

    .mod {
        margin-bottom: 10em;
    }

    .mod {
        width: 100%;
        margin: 0 auto;
        margin-top: 10em;
    }



    .head .container {
        display: unset;
        align-items: center;
        height: 105px;
    }

    .navbar-collapse {
        background: #030303;
        padding-bottom: 1em;
    }

    .navbar-default .navbar-collapse,
    .navbar-default .navbar-form {
        border-color: #000;
    }

    .navbar-default .navbar-nav>.active>a::before {
        display: none;
    }

    .navbar-default .navbar-toggle:hover,
    .navbar-default .navbar-toggle:focus {
        background-color: unset;
    }

    .navbar-default .navbar-toggle {
        border-color: #000;
    }

    .logo {
        position: absolute;
    }

    .psearch input {
        height: 34px;
        background: transparent;
        border: transparent;
        outline: unset;
        box-shadow: none;
        font-family: Inter;
        font-weight: 400;
        font-size: 16.79px;
        line-height: 0%;
        letter-spacing: 0px;
        vertical-align: middle;
        color: rgba(255, 255, 255, 0.54);
        margin-left: 1em;
        width: 100%;
    }

    .category .packages-image .package {
        float: none;
        width: 100%;
    }

    .catselect .tab {
        position: relative;
        font-family: Inter;
        font-weight: 600;
        font-size: 11.73px;
        vertical-align: middle;
        color: rgba(255, 255, 255, 1);
        border: 1px solid transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
        height: 40px;
        cursor: pointer;
        transition: .3s;
        border-radius: 12px;
    }

    .catname {
        font-family: Inter;
        font-weight: 800;
        font-size: 50.39px;
    }

    .catdesc {
        max-width: 100%;
        margin: 0 auto;
    }

    .ppfooter {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 2em;
    }

    .featured {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-collapse {
        background: #030303;
        z-index: 9999;
        position: relative;
    }
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    display: none;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    display: none;
}

.features {
    margin-top: 10em;
}

.dcopy {
    cursor: pointer;
}

.fpart {
    position: relative;
}

.fpart [itemtype="https://schema.org/FAQPage"] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: start;
}

.cmspage {
    border: 0.92px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(217, 217, 217, 0.06);
    font-family: Inter;
    font-weight: 500;
    font-size: 12px;
    line-height: 18.89px;
    color: rgba(242, 242, 242, 1);
    vertical-align: middle;
    margin-top: 5em;
}

a,
a:hover,
a:focus {
    color: var(--main-color);
}

.mbtns a {
    border-radius: 8px;
    background: rgba(47, 47, 47, 1);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 245px;
    font-family: Inter;
    font-weight: 600;
    font-size: 15.47px;
    line-height: 20.63px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: rgba(255, 255, 255, 1);
    gap: 5px;
    text-decoration: none;
}

a.mdsc {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    box-shadow: 0px 2.56px 17.9px 0px rgba(255, 255, 255, 0.13);
    color: rgba(25, 26, 31, 0.8);
}

.mbtns {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin-top: 7em;
}

.carousel-slider {
    overflow: hidden !important;
    position: relative;
}

.nav>li {
    padding: 0px 15px;
}

.nav>li>a {
    position: relative;
    display: block;
    padding: unset;
}

.ssep {
    width: 100%;
    border-top: 1.55px solid rgba(223, 239, 254, 0.14);
    border-radius: 37px;
    height: 45px;
}

.discount2 {
    top: 0;
}

.head::before {
    display: none;
}

.head {
    position: sticky;
}

.head::after {
    display: none;
}

.ssep::after {
    content: "";
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0) 0%, rgba(143, 143, 143, 0.67) 50%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    width: 450px;
    height: 1.5px;
    left: 50%;
    transform: translateX(-50%);
}

.ssep::before {
    content: "";
    position: absolute;
    background: url(https://i.imgur.com/v4aWJlN.png);
    background-size: 100% 100%;
    width: 100%;
    height: 200px;
    max-width: 600px;
    max-height: 200px;
    left: 50%;
    transform: translateX(-50%);
    top: -175%;
}

.ssep {
    position: relative;
}

.hdesc {
    margin-top: 1em;
}

@media (max-width: 991px) {
    .swiper-wrapper {
        height: 250px;
    }

    .features {
        margin-top: 5em;
        grid-template-columns: 1fr;
    }

    .faq {
        max-width: 100%;
        margin: 0 auto;
        margin-top: 5em;
    }

    .lsocials {
        position: relative !important;
    }

    .lbottom::before {
        content: "";
        position: absolute;
        width: 100%;
    }
}

.fpack .tags li {
    background: rgba(255, 255, 255, 0.26);
    border-radius: 5px;
}

.fcontent {
    display: flex;
    justify-content: space-between;
    width: 95%;
    align-items: center;
}

.swiper-slide:hover {
    transition: .3s;
    filter: unset !important;
}

.head .container {
    z-index: 999;
    position: relative;
}


.swiper-slide:not(.fpack) {
    width: clamp(400px, 50%, 750px);
    height: clamp(200px, 50%, 400px);
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-wrapper {
    height: 500px;
}

.swiper-slide-next:not(.fpack),
.swiper-slide-prev:not(.fpack),
.swiper-slide:not(.fpack) {
    transition: 0.5s ease-in-out;
    border-radius: 5px;
    filter: brightness(0.25);
}

.carousel-slider .swiper-wrapper {
    display: flex;
    align-items: center;
}

.carousel-slider .swiper-slide.swiper-slide-active {
    filter: brightness(1);
    transition: .2s ease-in-out;
}

.carousel-slider .swiper-slide:not(.fpack) {
    height: 400px;
}

.swiper-slide-active {
    transition: .2s ease-in-out;
}

a.featured-package .image::before {
    content: "Featured";
    position: absolute;
    font-family: Inter;
    font-weight: 600;
    font-size: 14.06px;
    line-height: 18.75px;
    vertical-align: middle;
    color: rgba(28, 28, 28, 1);
    width: 100px;
    height: 28px;
    background: rgba(255, 255, 255, 1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 3%;
    top: 5%;
}

.swiper-slide:not(.fpack) a.featured-package {
    display: block;
    text-decoration: none;
    position: relative;
    width: -webkit-fill-available;
}

.swiper-slide:not(.fpack) a.featured-package img {
    width: -webkit-fill-available;
    height: 400px;
}

.fcontent {
    position: absolute;
    bottom: 5%;
    left: 3%;
}

.fcontent .name {
    font-family: Inter;
    font-weight: 700;
    font-size: 18.62px;
    line-height: 28.64px;
    vertical-align: middle;
    color: rgba(242, 242, 242, 1);
    margin-bottom: 5px;
}

.ffleft {
    display: flex;
    flex-direction: column;
}

.ffleft .price {
    font-family: Inter;
    font-weight: 700;
    font-size: 16.62px;
    color: rgba(242, 242, 242, 1);
    vertical-align: middle;
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 8px;
}

/* For the category page price display */
.pfooter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2em;
}

.pfooter span {
    font-family: Inter;
    font-weight: 600;
    font-size: 20.19px;
    line-height: 31.41px;
    vertical-align: middle;
    color: rgba(242, 242, 242, 1);
}

.pfooter .price {
    font-family: Inter;
    font-weight: 600;
    font-size: 20.19px;
    line-height: 31.41px;
    color: rgba(242, 242, 242, 1);
    vertical-align: middle;
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 8px;
}



.swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    display: inline-block;
    border-radius: 50%;
    background: rgba(217, 217, 217, 0.17);
    opacity: 1;

}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: unset;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: unset;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: unset;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--main-color);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: unset;
    position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: unset;
}


a.featured-package img {
    filter: brightness(0.5);
    transition: .2s;
}

a.featured-package img:hover {
    filter: brightness(1);
    transition: .2s;
}

@media (max-width: 991px) {
    a.featured-package img {
        width: -webkit-fill-available;
        height: 200px;
    }

    .carousel-slider .swiper-slide {
        height: 200px;
    }

    .swiper-wrapper {
        height: 300px;
    }

    .sep2 {
        margin-bottom: 3em;
    }

    .mbtns {
        margin-top: 2em;
    }

    .question {
        font-size: 12px;
        min-height: 70px;
    }

    .qnr {
        font-family: Inter;
        font-weight: 700;
        font-size: 18px;
        line-height: 120%;
        letter-spacing: 0.14px;
        color: rgba(255, 255, 255, 1);
        margin-right: .5em;
    }

    .ftext b {
        font-family: Inter;
        font-weight: 800;
        font-size: 18.3px;
        line-height: 28.48px;
    }

    .topbody {
        height: 300px;
    }

    .payment img {
        width: 45px;
        height: 45px;
    }

    .ppprice {
        font-family: Inter;
        font-weight: 600;
        font-size: 14.4px;
    }

    .flogo img {
        width: 150px;
    }

    .flogo {
        margin-top: -3em;
        margin-bottom: 1em;
    }

    .htitle {
        font-family: Inter;
        font-weight: 800;
        font-size: 30.66px;
        line-height: 35.47px;
    }

    .ssep::after {
        width: 100%;
    }

    .fp {
        display: flex;
        justify-content: center;
        margin-bottom: 0em;
    }

    .hdesc {
        font-family: Inter;
        font-weight: 500;
        font-size: 11.42px;
    }

    .tophead {
        font-family: Inter;
        font-weight: 400;
        font-size: 15.74px;
    }

    .swiper-slide {
        width: 350px;
    }

    .fficon {
        width: 50px;
        height: 50px;
    }

    .ffsub {
        font-family: Inter;
        font-weight: 400;
        font-size: 19.57px;
        line-height: 14.15px;
        color: #fff;
    }

    .nav>li {
        padding: 10px 15px;
    }
}

.ddesc b::before {
    background: rgba(72, 157, 31, 0.24);
    filter: blur(20px);
    content: "";
    position: absolute;
    width: 100%;
    height: 40px;
    border-radius: 50%;
    top: -10px;
    left: 10px;
    z-index: -1;
}

.ddesc b {
    position: relative;
    background: transparent;
}

@media (max-width:991px) {
    .mfooter {
        padding: 3em 0 2em;
        margin-top: 5em;
    }

    .mfooter .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ffcont {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column;
    }

    .fleft,
    .fright {
        display: block;
        width: 100%;
        transform: unset;
    }

    .fleft .fftext {
        margin-top: 0em;
        margin-bottom: 0em;
    }

    .fleft .alinks {
        transform: none;
    }

    .aflink {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .fright {
        margin-top: 0;
    }

    .fright .fftext {
        transform: none !important;
    }


    .logo {
        margin-left: 1em;
    }

    ul.navright {
        padding-inline: 0;
    }

    .mfooter {
        margin-top: 5em;
    }

    .pack {
        margin-top: 0em;
    }

    a.youtube i,
    .package-footer-buttons .btn i {
        width: 40px;
        font-size: 16px;
    }

    a.youtube span {
        width: 100%;
    }

    .sep {
        margin-top: 3em;
        margin-bottom: 2em;
    }

    .search-container {
        margin-top: 1em;
        margin-bottom: 2em;
    }

    .lbottom {
        margin-bottom: 5vh;
    }

    .cpackages {
        min-height: 200px;
        overflow: auto;
        height: auto;
    }
}

@media (min-width: 767px) and (max-width: 1200px) {
    ul.nav.navbar-nav {
        width: 100%;
    }

    .collapse.navbar-collapse {
        display: flex !important;
        width: 100%;
        align-items: center;
        flex-direction: column-reverse;
    }



    .discount {
        position: relative;
        left: 0;
    }

    .nav>li {
        padding: 20px 15px;
    }

    .head .container {
        display: flex;
        align-items: center;
        height: -webkit-fill-available;
        padding: 20px 0;
        margin-bottom: 1em;
    }

    .head {
        height: auto;
    }

    .navbar-collapse {
        background: transparent;
        z-index: 9999;
        position: relative;
    }

    .pack {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 3em;
    }
}

.ffleft .price .discount,
.price .discount {
    font-family: Inter;
    font-weight: 600;
    font-size: 15px;
    color: rgba(200, 33, 50, 0.8);
    vertical-align: middle;
    text-decoration: line-through;
    margin-right: 5px;
}

@media (max-width: 576px) {
    .container-fluid {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
}

ul.nav.navbar-nav {
    display: unset;
    width: auto;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-right: auto;
}

.nav>li {
    padding: 0 12px;
    position: relative;
}

.nav>li>a {
    position: relative;
    display: block;
    padding: 15px 0;
    transition: all 0.3s ease;
}

/* Dropdown styling */


.free-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(90deg, rgba(33, 200, 55, 0.7) 0%, rgba(58, 244, 58, 0.7) 50%, rgba(78, 255, 78, 0.7) 100%);
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.image {
    position: relative;
}

@media (max-width: 991px) {
    .category .packages-image {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .category .packages-image .package {
        float: none;
        width: 100%;
        margin: 0 !important;
    }
}

@media (max-width: 576px) {
    .category .packages-image {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.price .discount::before {
    display: none;
}

.price .discount {
    margin-right: 0;
    padding: 0;
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.open>a:focus {
    background-color: unset;
    color: #555555;
}

.category .packages-image .package .image {
    margin: 0 auto;
    height: 170px;
}

/* Removed .head .container width override to allow it to align with the main 1400px grid */

.container-fluid {
    display: flex;
    align-items: center;
}

ul.nav.navbar-nav {
    display: flex;
    align-items: center;
}

.tags {
    margin: 5px 0;
}

@media (max-width: 991px) {
    .logo {
        position: relative;
    }
}

a.login {
    width: max-content;
}

ul.navright {
    width: 50%;
}

ul.navright {
    justify-content: flex-end;
    padding-inline-start: 0;
}

.discount2 {
    margin-right: auto;
}

.logo {
    margin-right: 3em;
}

@media (max-width: 767px) {
    .container-fluid {
        display: block;
        align-items: center;
        width: 100%;
    }

    ul.nav.navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin: 0; /* Prevents Bootstrap's -15px margin left-overflow */
        padding: 0;
        width: 100%;
    }
    
    ul.nav.navbar-nav > li {
        width: 100%;
        padding: 0;
    }

    ul.nav.navbar-nav > li > a {
        padding: 12px 15px;
        display: block;
        width: 100%;
    }



    ul.navright {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: flex-start !important;
        padding-top: 15px;
    }

    .cathead .container {
        gap: 5px;
    }

    .navbar-header {
        width: 100%;
    }

    .head .container {
        display: block;
        align-items: center;
        height: 105px;
        padding: 0;
    }
}

.logo2 {
    display: none;
}

@media (max-width: 767px) {
    .logo {
        display: none;
    }

    .logo2 {
        display: block;
    }

    .logo2 img {
        height: 62px;
    }

    .navbar-header {
        width: 100%;
        margin-top: 1em;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-collapse.in {
        overflow-y: unset;
    }
}

.currency.open .dropdown-menu {
    opacity: 1;
    transform: none !important;
    visibility: unset;
}

ul.dropdown-menu {
    border: 1px solid rgba(62, 62, 62, 1);
    background: rgba(27, 27, 27, 1);
    border-radius: 10px !important;
}

.dropdown-menu>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    white-space: nowrap;
    color: rgba(82, 82, 82, 1);
    font-family: "Chakra Petch", sans-serif;
    font-weight: 700;
    font-size: 15.56px;
    line-height: 20.74px;
    vertical-align: middle;
    text-transform: uppercase;
}

.dropdown-menu>li>a:hover {
    background: transparent;
    color: var(--main-color);
}

.product {
    height: 35px;
    display: flex;
    align-items: center;
}

.category .packages-image .package .image img {
    height: -webkit-fill-available;
}

.basket {
    position: relative;
}

.bcount {
    position: absolute;
    right: 0;
    top: -10px;
    color: #fff;
    border: 1px solid;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    border-color: #2f2f2f;
}

.category .packages-image .package .image {
    width: -webkit-fill-available;
}

@media (max-width: 991px) {
    .cathead .container {
        height: 100% !important;
    }

    .catdesc {
        max-width: 100%;
        margin: 0 auto;
        max-height: 100%;
    }
}

/* ==========================================
   CINEMATIC HERO â€” FLOATING ORBS + CENTER
   ========================================== */

/* Floating gradient orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(var(--main-color-rgb), 0.12);
    top: -200px;
    left: -100px;
    animation: orbFloat1 12s ease-in-out infinite alternate;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(var(--main-color-rgb), 0.08);
    bottom: -100px;
    right: -50px;
    animation: orbFloat2 10s ease-in-out infinite alternate;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(var(--main-color-rgb), 0.06);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat3 14s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(80px, 60px) scale(1.15);
    }
}

@keyframes orbFloat2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-60px, -40px) scale(1.1);
    }
}

@keyframes orbFloat3 {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Dot grid overlay */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(var(--main-color-rgb), 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

/* Hero centered content */
.hero-center {
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6em 0 4em;
}

/* Hero title */
.hero-title {
    font-family: "Outfit", sans-serif;
    font-weight: 900;
    font-size: 72px;
    line-height: 1.0;
    min-height: 144px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: -2px;
    margin: 0 0 0.4em;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.hero-title-glow {
    color: var(--main-color);
    text-shadow:
        0 0 60px rgba(var(--main-color-rgb), 0.6),
        0 0 120px rgba(var(--main-color-rgb), 0.3),
        0 0 200px rgba(var(--main-color-rgb), 0.1);
    position: relative;
}

/* Hero subtitle */
.hero-subtitle {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 580px;
    margin: 0 auto 2.5em;
}

/* Feature pills */
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 3em;
}

.hero-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(var(--main-color-rgb), 0.06);
    border: 1px solid rgba(var(--main-color-rgb), 0.15);
    border-radius: 50px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.hero-pill:hover {
    background: rgba(var(--main-color-rgb), 0.12);
    border-color: rgba(var(--main-color-rgb), 0.35);
    color: #fff;
    transform: translateY(-2px);
}

.hero-pill i {
    color: var(--main-color);
    font-size: 13px;
}

/* Hero CTA buttons */
.hero-cta {
    display: flex;
    align-items: center;
    gap: 1.5em;
}

.hero-btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--main-color), rgba(var(--main-color-rgb), 0.7));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow:
        0 4px 30px rgba(var(--main-color-rgb), 0.4),
        0 0 60px rgba(var(--main-color-rgb), 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn-main::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: btnShine 4s ease-in-out infinite;
}

@keyframes btnShine {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.hero-btn-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 50px rgba(var(--main-color-rgb), 0.6),
        0 0 80px rgba(var(--main-color-rgb), 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
}

.hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s;
}

.hero-btn-ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Bottom fade gradient */
.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, #030303, transparent);
    z-index: 1;
    pointer-events: none;
}

/* Copyright bar */
.copyright {
    border-top: 1px solid var(--glass-border);
}

.copyright .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Inter;
    font-weight: 400;
    font-size: 12px;
    color: var(--text-secondary);
    height: 60px;
}

.cp {
    color: var(--text-secondary);
}

.flinks a {
    color: var(--main-color);
}

/* ==========================================
   RESPONSIVE â€” CINEMATIC HERO
   ========================================== */

@media (max-width: 991px) {
    .hero-title {
        font-size: 48px;
        line-height: 1.0;
        min-height: 96px;
        letter-spacing: -1px;
    }

    .hero-center {
        padding: 4em 0 3em;
    }

    .hero-subtitle {
        font-size: 14px;
        max-width: 90%;
    }

    .hero-pills {
        gap: 8px;
    }

    .hero-pill {
        padding: 8px 14px;
        font-size: 11px;
    }

    .header {
        min-height: auto;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2em;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .features-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 34px;
        letter-spacing: -0.5px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn-main,
    .hero-btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .hero-pills {
        flex-direction: column;
        align-items: center;
    }

    .features-label {
        font-size: 11px;
    }

    .features-title {
        font-size: 24px;
    }
}

@media (min-width: 1200px) {
    .navbar-collapse {
        padding-right: 0;
    }
}

.featuredp {
    padding: 6em 0 4em;
    position: relative;
    overflow: hidden;
    max-width: 100vw;
}

/* Section Heading */
.fp-heading {
    text-align: center;
    margin-bottom: 3em;
    position: relative;
}

.fp-label {
    font-family: "Outfit", sans-serif;
    font-weight: 900;
    font-size: 100px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.02);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 10px;
}

.fp-title {
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: #fff;
    text-transform: none;
    margin: 0;
    position: relative;
}

.fp-title span {
    color: var(--main-color);
    text-shadow: 0 0 40px rgba(var(--main-color-rgb), 0.4);
}

.fp-line {
    width: 50px;
    height: 3px;
    background: var(--main-color);
    margin: 15px auto 0;
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(var(--main-color-rgb), 0.5);
}

/* Featured Packages — Infinite Scroll */
@keyframes fpack-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

.fpack-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.fpack-scroll-track {
    display: flex !important;
    gap: 25px;
    width: fit-content;
    animation: fpack-scroll 30s linear infinite;
}

#featured-module {
    display: flex !important;
    gap: 25px;
    width: fit-content;
}

#featured-module > * {
    flex-shrink: 0;
}

.fpack-scroll-track:hover {
    animation-play-state: paused;
}

/* Featured Package Card */
.fpack-item {
    min-width: 340px;
    max-width: 380px;
    flex-shrink: 0;
}

a.featured-package,
div.featured-package {
    display: block;
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(var(--main-color-rgb), 0.1);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
}

.swiper-slide-active a.featured-package,
.swiper-slide-active div.featured-package {
    border-color: rgba(var(--main-color-rgb), 0.4);
    box-shadow:
        0 0 40px rgba(var(--main-color-rgb), 0.08),
        0 20px 60px rgba(0, 0, 0, 0.4);
}

a.featured-package:hover,
div.featured-package:hover {
    border-color: rgba(var(--main-color-rgb), 0.5);
    transform: translateY(-4px);
    text-decoration: none;
    box-shadow:
        0 0 50px rgba(var(--main-color-rgb), 0.12),
        0 25px 60px rgba(0, 0, 0, 0.5);
}

/* Card Image */
.fpack-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

.fpack-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    padding: 0;
}

a.featured-package:hover .fpack-image img,
div.featured-package:hover .fpack-image img {
    transform: scale(1.05);
}

/* Discount Badge */
.fpack-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(239, 68, 68, 0.9);
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 6px;
    z-index: 2;
    letter-spacing: 0.5px;
}

/* Card Body */
.fpack-body {
    padding: 20px;
}

.fpack-name {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.fpack-desc {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 14px;
}

/* Framework Tags */
.fpack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.fpack-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
}

.fpack-tag::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    display: inline-block;
}

.tag-esx {
    color: rgba(var(--main-color-rgb), 0.9);
    background: rgba(var(--main-color-rgb), 0.1);
}

.tag-esx::before {
    background: var(--main-color);
}

.tag-qb {
    color: rgba(59, 130, 246, 0.9);
    background: rgba(59, 130, 246, 0.1);
}

.tag-qb::before {
    background: rgb(59, 130, 246);
}

.tag-escrow {
    color: rgba(168, 85, 247, 0.9);
    background: rgba(168, 85, 247, 0.1);
}

.tag-escrow::before {
    background: rgb(168, 85, 247);
}

.tag-config {
    color: rgba(251, 191, 36, 0.9);
    background: rgba(251, 191, 36, 0.1);
}

.tag-config::before {
    background: rgb(251, 191, 36);
}

.tag-qbox {
    color: rgba(6, 182, 212, 0.9);
    background: rgba(6, 182, 212, 0.1);
}

.tag-qbox::before {
    background: rgb(6, 182, 212);
}

.tag-opensource {
    color: rgba(34, 197, 94, 0.9);
    background: rgba(34, 197, 94, 0.1);
}

.tag-opensource::before {
    background: rgb(34, 197, 94);
}

.tag-vorp {
    color: rgba(239, 68, 68, 0.9);
    background: rgba(239, 68, 68, 0.1);
}

.tag-vorp::before {
    background: rgb(239, 68, 68);
}

.tag-rsg {
    color: rgba(249, 115, 22, 0.9);
    background: rgba(249, 115, 22, 0.1);
}

.tag-rsg::before {
    background: rgb(249, 115, 22);
}

.fpack-footer {
    border-top: 1px solid rgba(var(--main-color-rgb), 0.1);
    padding-top: 16px;
}

.fpack-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.fpack-price-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fpack-current {
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #fff;
}

.fpack-original {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: line-through;
}

.fpack-save {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 10px;
    color: var(--main-color);
    background: rgba(var(--main-color-rgb), 0.1);
    border: 1px solid rgba(var(--main-color-rgb), 0.25);
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.fpack-discount-tag {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: #fff;
    background: #ef4444;
    border: none;
    padding: 3px 10px;
    border-radius: 6px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* View Details Button */
.fpack-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--main-color);
    background: transparent;
    border: 1px solid rgba(var(--main-color-rgb), 0.25);
    border-radius: 10px;
    transition: all 0.3s;
}

a.featured-package:hover .fpack-btn,
div.featured-package:hover .fpack-btn {
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
    box-shadow: 0 4px 20px rgba(var(--main-color-rgb), 0.3);
}

.fpack-remove-cart {
    color: #ef4444 !important;
    border-color: rgba(239, 68, 68, 0.3) !important;
    background: rgba(239, 68, 68, 0.08) !important;
}

a.featured-package:hover .fpack-remove-cart,
div.featured-package:hover .fpack-remove-cart {
    background: #ef4444 !important;
    color: #fff !important;
    border-color: #ef4444 !important;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3) !important;
}

/* Old .fp class override */
.fp {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .fp-label {
        font-size: 50px;
    }

    .fp-title {
        font-size: 28px;
    }

    .fpack-item {
        min-width: 280px;
        max-width: 300px;
    }

    .rp-section {
        overflow-x: hidden;
    }

    .rp-scroll-wrapper {
        max-width: 100%;
        overflow: hidden;
    }
}


.pkg-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
}

/* Main Top Split Area */
.pkg-main {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

/* Left Side: Media Gallery */
.pkg-visual-side {
    flex: 1 1 65%;
    min-width: 0;
    /* Allows swiper to shrink */
}

.pkg-visual-side .slider-container {
    position: relative;
    padding: 0;
    height: auto;
    overflow: visible;
    border: none;
    border-radius: 0;
}

.pkg-visual-side .pkg-slider {
    height: 485px;
    background: #050505;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.pkg-visual-side .swiper-slide {
    opacity: 1 !important;
    visibility: visible !important;
    filter: brightness(1) !important;
    -webkit-filter: brightness(1) !important;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    background: #050505;
}

.pkg-visual-side .swiper-slide img {
    opacity: 1 !important;
    filter: brightness(1) !important;
    -webkit-filter: brightness(1) !important;
    mix-blend-mode: normal !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

/* Forcefully remove any overlays or pseudo-elements causing darkening */
.pkg-visual-side .swiper-slide::before,
.pkg-visual-side .swiper-slide::after,
.pkg-visual-side .pkg-slider::before,
.pkg-visual-side .pkg-slider::after {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    content: none !important;
}

.pkg-visual-side .swiper-slide {
    height: 100% !important;
    width: 100%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    background: #050505;
}

.pkg-visual-side .slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0;
}

/* Swiper Thumbnail Navigation (Below Slider) */
.pkg-slider-nav {
    display: flex !important;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
    margin-top: 15px !important;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    z-index: 5;
}

.pkg-slider-nav .swiper-pagination-bullet {
    margin: 0 !important;
    width: 80px;
    height: 55px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 1 !important;
    --swiper-pagination-bullet-inactive-opacity: 1 !important;
    background: transparent;
}

.pkg-slider-nav .swiper-pagination-bullet-active {
    border-color: var(--main-color);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.pkg-thumb {
    width: 100%;
    height: 100%;
    position: relative;
}

.pkg-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pkg-thumb.is-video-thumb .thumb-yt-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ff0000;
    font-size: 24px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Featured / Premium Tags inside Visual Side */
.pkg-visual-side .stags {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.pkg-visual-side .sfeatured,
.pkg-visual-side .spremium {
    position: static;
    transform: none;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
}


/* Right Side: Info Card */
.pkg-info-side {
    flex: 1 1 35%;
    min-width: 350px;
}

.pkg-info-card {
    background: rgba(12, 12, 12, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 0;
    position: sticky;
    top: 120px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pkg-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.pkg-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #fff;
    margin: 0 0 16px 0;
    padding: 28px 28px 0 28px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}


/* Homepage Carousel Fix */
.carousel-slider {
    width: 100%;
    padding: 20px 0 60px 0;
    overflow: hidden !important;
}

.carousel-slider .swiper-slide.fpack {
    width: 320px;
    /* Fixed width needed for slidesPerView: auto */
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.carousel-slider .swiper-slide-active {
    transform: scale(1.05);
    z-index: 10;
}

.carousel-slider .swiper-slide[class*="duplicate"],
.carousel-slider .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.6;
    transform: scale(0.95);
}

.fpack {
    display: flex;
    flex-direction: column;
}


/* Price Area */
.pkg-price-area {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0 28px 20px 28px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pkg-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pkg-price-current {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 36px;
    color: #fff;
    line-height: 1;
}

.pkg-price-old {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: line-through;
    font-weight: 400;
    margin-top: 6px;
}

.pkg-discount-badge {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
    width: fit-content;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Feature List */
.pkg-features {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    overflow: hidden;
}

.pkg-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s;
}

.pkg-feature-item:last-child {
    border-bottom: none;
}

.pkg-feature-item:hover {
    background: rgba(var(--main-color-rgb), 0.04);
}

.pkg-f-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(var(--main-color-rgb), 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    font-size: 14px;
    flex-shrink: 0;
}

.pkg-f-text {
    display: flex;
    flex-direction: column;
}

.pkg-f-text span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.pkg-f-text small {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    margin-top: 1px;
}

/* Supported Frameworks */
.pkg-frameworks {
    padding: 20px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pkg-fw-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 12px 0;
}

.pkg-fw-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pkg-fw-tags .tags {
    margin: 0;
    gap: 8px;
}

.pkg-fw-tags .fpack-tag {
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 8px;
}

/* Actions & Buttons */
.pkg-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 28px 28px 28px;
    margin-top: auto;
}

.pkg-actions .package-footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.pkg-actions .w-100 {
    width: 100%;
}

.pkg-btn-buy {
    width: 100%;
    background: var(--main-color);
    color: #000 !important;
    text-decoration: none !important;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 20px;
    border-radius: 12px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.pkg-btn-buy:hover {
    filter: brightness(1.15);
    box-shadow: 0 0 20px rgba(var(--main-color-rgb), 0.35);
}

.pkg-btn-buy i,
.pkg-btn-buy:hover i {
    color: #000;
}

.pkg-btn-remove {
    width: 100%;
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444 !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 15px 20px;
    border-radius: 14px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    transition: all 0.3s;
}

.pkg-btn-remove:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.4);
}

.pkg-btn-yt {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    color: #fff !important;
    text-decoration: none !important;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 15px 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.pkg-btn-yt i {
    color: #ff0000;
    font-size: 17px;
}

.pkg-btn-yt:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
    color: #fff !important;
    transform: translateY(-2px);
}

.pkg-btn-yt:hover i {
    color: #ff0000;
}

/* Product Detail Bar (Middle Section) */
.pkg-detail-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    padding: 20px 30px;
    margin-bottom: 30px;
}

.pdb-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pdb-left i {
    font-size: 24px;
    color: var(--main-color);
    background: rgba(255, 255, 255, 0.05);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

.pdb-left h3 {
    margin: 0;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.pdb-left span {
    color: #888;
    font-size: 13px;
}

.pdb-right .req-tags {
    display: flex;
    gap: 10px;
}


/* Bottom Description Area */
.pkg-desc-box {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    color: #bbb;
    font-size: 15px;
    line-height: 1.8;
}

.pkg-desc-box h1,
.pkg-desc-box h2,
.pkg-desc-box h3 {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Responsive Package Detail */
@media (max-width: 991px) {
    .pkg-main {
        flex-direction: column;
        gap: 20px;
    }

    .pkg-visual-side {
        width: 100%;
    }

    .pkg-info-side {
        width: 100%;
        min-width: 100%;
    }

    .pkg-info-card {
        position: static;
        padding: 25px;
    }

    .pkg-visual-side .slider-container {
        height: auto;
    }

    .pkg-visual-side .pkg-slider {
        height: 300px;
    }

    .pkg-detail-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .pkg-desc-box {
        padding: 25px;
    }

    .pkg-desc-box img,
    .pkg-desc-box iframe {
        max-width: 100% !important;
        height: auto !important;
    }

    .pkg-desc-box pre,
    .pkg-desc-box code,
    .pkg-desc-box p {
        white-space: pre-wrap;
        word-break: break-word;
        overflow-x: auto;
    }
}

@media (max-width: 576px) {
    .pkg-visual-side .pkg-slider {
        height: 220px;
    }
    
    .pkg-title {
        font-size: 26px;
    }
    
    .pkg-price-current {
        font-size: 32px;
    }
    
    .pkg-container {
        padding: 20px 15px;
    }
    
    .pkg-desc-box {
        padding: 20px 15px;
    }
    
    .pkg-detail-bar {
        padding: 20px 15px;
    }
    
    .pdb-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}