@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
:root {
  --color-primary: #41C4C3;
  --bg-image: url("https://template-assets.tebex.io/images/page-bg.jpg");
}

body {
  font-family: Lato, sans-serif;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-height: 400px;
  z-index: -1;
  background: var(--bg-image) center center/cover no-repeat;
  mask-image: linear-gradient(rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.25));
  pointer-events: none;
}

.btn-primary,
.btn-secondary,
.btn-tertiary {
  border-radius: 2px;
}

.btn-primary:hover, .btn-primary:focus,
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 0 6px rgb(from var(--btn-color-bg-hover) r g b/0.6);
}

.quantity-field {
  border-radius: 5px;
}

.site-header-inner .info .image {
  border-radius: 5px;
}

.site-sale-banner {
  border-radius: 5px;
}

.site-home-categories .category {
  border-radius: 5px;
  padding: 20px var(--widget-padding);
  background: var(--color-brighter-bg);
  transition: color 0.15s ease-in-out;
}
.site-home-categories .category:hover {
  color: var(--color-primary);
}

.category-description {
  border-radius: 5px;
  background: var(--color-brighter-bg);
}

.store-text {
  border-radius: 5px;
  background: var(--color-brighter-bg);
}
.store-text h1,
.store-text h2,
.store-text h3,
.store-text h4,
.store-text h5,
.store-text h6 {
  text-align: center;
}

.store-products-list .store-product,
.store-products-images .store-product {
  border-radius: 5px;
  background: var(--color-brighter-bg);
}

.store-products-images .store-product {
  text-align: center;
}

.widget-title {
  text-align: center;
}

.widget .store-product {
  text-align: center;
}

.no-products {
  color: var(--color-text-secondary);
  background: var(--color-brighter-bg);
  border-radius: 5px;
}

.store-product-full {
  border-radius: 5px;
  background: var(--color-brighter-bg);
}

.store-product .quantity-field {
  border-radius: 5px;
  background: var(--color-brighter-bg);
}
.store-product .quantity-field input[type=number] {
  border: none;
}

@media (width > 960px) {
  .navigation-horizontal > ul {
    border-radius: 5px;
  }
}
.navigation-horizontal .has-children > ul {
  border-radius: 5px;
}

.widget {
  border-radius: 5px;
  background: var(--color-brighter-bg);
}
@media (width <= 960px) {
  .widget.site-navigation {
    border-radius: 0;
    background: transparent;
  }
}

.widget-gift-card .gift-card-input {
  border-radius: 2px;
}

.widget-top-donator .avatar {
  border-radius: 50%;
}

.widget-community-goal .progress,
.widget-goal .progress {
  border-radius: 2px;
}
.widget-community-goal .progress-bar,
.widget-goal .progress-bar {
  border-radius: 2px;
}

.popup-content {
  border-radius: 5px;
}

.popup-close {
  border-radius: 0 5px 0 5px;
}

.basket-popup-content,
.basket-popup-content .popup-close {
  border-radius: 0;
}

.basket-items {
  padding: var(--widget-padding) calc(var(--content-padding) - var(--widget-padding));
}

.basket-item {
  border-radius: 5px;
}
.basket-item .quantity {
  border-radius: 2px;
}

.toast {
  border-radius: 6px;
}

.toast-close {
  border-radius: 2px;
}

.store-category-tiered {
  border-radius: 5px;
  background: var(--color-brighter-bg);
}

.store-category-tiered-header h1,
.store-category-tiered-header h2,
.store-category-tiered-header h3,
.store-category-tiered-header h4,
.store-category-tiered-header h5,
.store-category-tiered-header h6 {
  text-align: center;
}

.store-product-tiered {
  border-radius: 5px;
  background: rgb(from var(--color-bg) r g b/0.5);
}

.media-slider .slider,
.media-slider .thumb {
  border-radius: 5px;
}
.media-slider .open-lightbox {
  border-radius: 2px;
}

.popup.popup-media-slider .thumb {
  border-radius: 5px;
}
.popup.popup-media-slider .popup-close {
  border-radius: 5px;
}

/* ==========================================================
   VORTEXBEY PREMIUM THEME – PIXELCRAFT STYLE FINAL VERSION
   ========================================================== */

/* GLOBAL COLORS */
:root {
    --vb-primary: #00eaff;
    --vb-bg-dark: #0c0f11;
    --vb-bg-card: #13171a;
    --vb-text: #d8dfe3;
    --vb-text-light: #a8b3b8;
}

/* PAGE BACKGROUND FIX */
body {
    background: var(--vb-bg-dark) !important;
    color: var(--vb-text) !important;
    position: relative !important;
}

/* -------------------------------------- */
/*              HEADER + NAVBAR           */
/* -------------------------------------- */

.vortex-header {
    width: 100%;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 234, 255, 0.18);
    box-shadow: 0 0 18px rgba(0, 234, 255, 0.08);
    padding: 12px 0;
}

.vb-header {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 20px;
}

/* LOGO */
.vb-logo img {
    height: 48px;
}

.vb-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--vb-primary);
    text-shadow: 0 0 12px var(--vb-primary);
}

/* DESKTOP NAVIGATION */
.vb-nav-desktop {
    flex: 1;
    display: flex;
    justify-content: center;
}

.vb-nav-desktop ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.vb-nav-desktop a {
    color: var(--vb-text);
    font-weight: 500;
    transition: 0.25s ease;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.vb-nav-desktop a:hover,
.vb-nav-desktop a.active {
    color: var(--vb-primary);
    border-bottom: 2px solid var(--vb-primary);
    text-shadow: 0 0 10px var(--vb-primary);
}

/* USER AREA */
.vb-user-area {
    display: flex;
    align-items: center;
    gap: 16px;
}

.vb-login,
.vb-user {
    color: var(--vb-text);
    transition: 0.25s ease;
}

.vb-login:hover,
.vb-user:hover {
    color: var(--vb-primary);
}

/* BASKET BUTTON */
.vb-btn-basket {
    background: var(--vb-primary) !important;
    padding: 8px 14px !important;
    color: #000 !important;
    border-radius: 4px !important;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.25s ease;
}

.vb-btn-basket:hover {
    box-shadow: 0 0 12px var(--vb-primary);
}

/* MOBILE NAV */
.vb-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--vb-primary);
    font-size: 2rem;
}

.vb-mobile-menu {
    display: none;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    padding: 20px;
}

.vb-mobile-menu ul {
    list-style: none;
    padding: 0;
}

.vb-mobile-menu li {
    margin-bottom: 14px;
}

.vb-mobile-menu a {
    color: var(--vb-primary);
    font-size: 1.2rem;
}

/* RESPONSIVE NAV */
@media (max-width: 960px) {
    .vb-nav-desktop {
        display: none !important;
    }
    .vb-mobile-toggle {
        display: block !important;
    }
}

/* -------------------------------------- */
/*          CATEGORY CARD STYLING         */
/* -------------------------------------- */

.site-home-categories .category {
    border-radius: 10px !important;
    background: var(--vb-bg-card) !important;
    border: 1px solid rgba(0, 234, 255, 0.15);
    transition: 0.3s ease;
    padding: 32px 20px;
}

.site-home-categories .category:hover {
    transform: translateY(-4px);
    border-color: var(--vb-primary);
    box-shadow: 0 0 18px rgba(0, 234, 255, 0.4);
}

/* -------------------------------------- */
/*        PRODUCT CARD PREMIUM LOOK       */
/* -------------------------------------- */

.store-product {
    border-radius: 10px !important;
    background: var(--vb-bg-card) !important;
    border: 1px solid rgba(0, 234, 255, 0.15) !important;
    transition: 0.3s ease;
}

.store-product:hover {
    transform: translateY(-4px);
    border-color: var(--vb-primary) !important;
    box-shadow: 0 0 18px rgba(0, 234, 255, 0.4);
}

/* PRODUCT IMAGES */
.store-product img {
    border-radius: 6px !important;
    transition: 0.25s ease;
}

.store-product:hover img {
    opacity: 0.85;
}

/* FEATURED PACKAGE */
.store-product-full {
    border-radius: 10px !important;
    background: var(--vb-bg-card) !important;
    border: 1px solid rgba(0, 234, 255, 0.2) !important;
}

/* WIDGET PANELS */
.widget {
    background: var(--vb-bg-card) !important;
    border-radius: 10px !important;
    border: 1px solid rgba(0, 234, 255, 0.12);
}

/* TEXT PANELS */
.store-text {
    background: var(--vb-bg-card) !important;
    border-radius: 10px !important;
    color: var(--vb-text-light) !important;
}

/* FOOTER */
.site-footer {
    background: #0b0e10 !important;
    padding: 40px;
    text-align: center;
    color: #7a8a92 !important;
}

/* REMOVE BANNER */
body::before {
    display: none !important;
    height: 0 !important;
}

.vb-nav-desktop a {
    line-height: 40px !important;
}

.vb-nav-desktop ul {
    width: 100% !important;
    justify-content: center !important;
}

.vb-btn-basket {
    font-weight: 700 !important;
    padding: 8px 18px !important;
}
/* ==========================================================
   VortexBey Premium Landing – Hero Slider Styles
   ========================================================== */

body.page-index {
    background: #0f1113 !important;
}

/* HERO AREA */
.vb-hero {
    width: 100%;
    padding: 60px 0 40px 0;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.vb-hero-title {
    font-size: 42px;
    font-weight: 900;
    color: #41c4c3;
    margin-bottom: 10px;
    text-shadow: 0 0 12px #41c4c3;
}

.vb-hero-subtitle {
    font-size: 16px;
    opacity: 0.7;
    margin-bottom: 40px;
}

/* SLIDER WRAPPER */
.vb-slider {
    width: 90%;
    margin: 0 auto;
    display: flex;
    overflow: hidden;
    gap: 20px;
    position: relative;
}

/* SLIDE CARD */
.vb-slide {
    min-width: calc(33.33% - 20px);
    transition: transform 0.4s ease;
}

.vb-slide-card {
    background: #181a1c;
    border: 1px solid #25282a;
    padding: 15px;
    border-radius: 10px;
    display: block;
    text-decoration: none !important;
    color: white;
    transition: 0.25s;
}

.vb-slide-card:hover {
    border-color: #41c4c3;
    transform: translateY(-4px);
}

/* Slide Image */
.vb-slide-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
}

/* Slide Info */
.vb-slide-info {
    margin-top: 12px;
    text-align: left;
}

.vb-slide-name {
    font-size: 18px;
    font-weight: 700;
}

.vb-slide-price {
    font-size: 15px;
    opacity: 0.7;
    margin-bottom: 8px;
}

.vb-slide-button {
    background: #41c4c3;
    border: none;
    padding: 8px 14px;
    color: black;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.vb-slide-button:hover {
    background: #2a8a89;
}

/* SLIDER BUTTONS */
.vb-slide-left,
.vb-slide-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #41c4c3;
    border: none;
    color: #000;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
}

.vb-slide-left {
    left: 40px;
}

.vb-slide-right {
    right: 40px;
}

.vb-slide-left:hover,
.vb-slide-right:hover {
    background: #2a8a89;
}

/* ==========================================================
   Featured Products Section
   ========================================================== */

.vb-featured-wrapper {
    width: 90%;
    margin: 40px auto;
}

.vb-section-title {
    text-align: center;
    color: #41c4c3;
    font-size: 28px;
    font-weight: 800;
    text-shadow: 0 0 10px #41c4c3;
    margin-bottom: 25px;
}

.vb-featured-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.vb-featured-card {
    width: 260px;
    background: #181a1c;
    border: 1px solid #25282a;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: 0.25s;
}

.vb-featured-card:hover {
    border-color: #41c4c3;
    transform: translateY(-5px);
}

.vb-featured-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
}

/* ==========================================================
   VORTEXBEY PREMIUM THEME – PART 1 / 4
   Global Settings / Welcome Section / FAQ Layout
   ========================================================== */

/* ---------- GLOBAL RESETS ---------- */

body.page-index {
    background: #0c0f11 !important;
    color: #d8dfe3 !important;
    font-family: "Lato", sans-serif;
}

.vortex-landing * {
    box-sizing: border-box;
}

/* Remove default Tebex backgrounds */
body::before {
    display: none !important;
}

/* ---------- GLOBAL COLORS ---------- */

:root {
    --vb-primary: #00eaff;
    --vb-primary-soft: #11b3c2;
    --vb-bg: #0c0f11;
    --vb-card: #13171a;
    --vb-card-light: #181c20;
    --vb-text: #d8dfe3;
    --vb-text-light: #a8b3b8;
}

/* ==========================================================
   WELCOME SECTION
   ========================================================== */

.vb-welcome {
    width: 100%;
    text-align: center;
    padding: 60px 20px 20px 20px;
}

.vb-welcome-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--vb-primary);
    text-shadow: 0 0 18px var(--vb-primary);
    margin-bottom: 10px;
}

.vb-welcome-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.8;
}

/* ==========================================================
   FAQ LAYOUT (LEFT TEXT + RIGHT QUESTIONS)
   ========================================================== */

.vb-faq-container {
    width: 90%;
    max-width: 1400px;
    margin: 40px auto;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

/* ---------- LEFT SIDE ---------- */

.vb-faq-left {
    width: 45%;
}

.vb-faq-title {
    font-size: 38px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--vb-primary);
    text-shadow: 0 0 12px var(--vb-primary);
    margin-bottom: 20px;
}

.vb-faq-desc {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Follow Section */

.vb-follow-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--vb-primary);
    text-shadow: 0 0 8px var(--vb-primary);
}

.vb-follow-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Social Buttons */

.vb-btn-discord,
.vb-btn-youtube,
.vb-btn-gitbook {
    padding: 12px 22px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    transition: 0.25s;
}

.vb-btn-discord {
    background: #5865F2;
}
.vb-btn-youtube {
    background: #ff3d3d;
}
.vb-btn-gitbook {
    background: #00a2ff;
}

.vb-btn-discord:hover,
.vb-btn-youtube:hover,
.vb-btn-gitbook:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

/* ---------- RIGHT SIDE: FAQ QUESTIONS ---------- */

.vb-faq-right {
    width: 50%;
}

.vb-faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--vb-card);
    border: 1px solid rgba(255,255,255,0.07);
}

.vb-faq-question {
    width: 100%;
    background: var(--vb-card-light);
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--vb-text);
    cursor: pointer;
    text-align: left;
    transition: 0.25s;
}

.vb-faq-question:hover {
    background: #1d2226;
    color: var(--vb-primary);
    text-shadow: 0 0 6px var(--vb-primary);
}

.vb-faq-answer {
    display: none;
    background: #13171a;
    padding: 14px 18px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--vb-text-light);
}

/* FAQ Open State (JS ekleyeceğiz) */
.vb-faq-item.active .vb-faq-answer {
    display: block;
}

/* ==========================================================
   VORTEXBEY PREMIUM THEME – PART 2 / 4
   Recent Payments Section
   ========================================================== */

.vb-recent-payments {
    width: 90%;
    max-width: 1300px;
    margin: 60px auto;
    text-align: center;
}

.vb-rp-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--vb-primary);
    text-shadow: 0 0 12px var(--vb-primary);
    margin-bottom: 25px;
}

.vb-rp-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Kartlar */
.vb-rp-item {
    background: var(--vb-card);
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.25s ease;
}

.vb-rp-item strong {
    font-size: 16px;
    color: var(--vb-text);
}

.vb-rp-item span {
    font-size: 15px;
    color: var(--vb-primary);
    text-shadow: 0 0 6px var(--vb-primary);
}

/* Hover efekti */
.vb-rp-item:hover {
    background: #1b2024;
    transform: translateY(-3px);
    border-color: var(--vb-primary);
    box-shadow: 0 0 12px rgba(0, 238, 255, 0.25);
}

/* "No Payments" */
.vb-rp-empty {
    font-size: 15px;
    opacity: 0.5;
}

/* ---------------------- */
@media (max-width: 768px) {
    .vb-rp-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* ==========================================================
   VORTEXBEY PREMIUM THEME – PART 3 / 4
   Product Slider / Cards / Buttons
   ========================================================== */

/* ---------------- SLIDER WRAPPER ---------------- */

.vb-hero {
    width: 100%;
    padding: 40px 20px 20px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.vb-hero-title {
    font-size: 40px;
    font-weight: 900;
    color: var(--vb-primary);
    text-shadow: 0 0 18px var(--vb-primary);
}

.vb-hero-subtitle {
    font-size: 17px;
    opacity: 0.8;
    margin-bottom: 25px;
}


/* ---------------- SLIDER LAYOUT ---------------- */

.vb-slider {
    position: relative;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px;
    margin-top: 20px;
}

.vb-slider::-webkit-scrollbar {
    height: 6px;
}

.vb-slider::-webkit-scrollbar-thumb {
    background: var(--vb-primary-soft);
    border-radius: 3px;
}


/* ---------------- INDIVIDUAL SLIDE ---------------- */

.vb-slide {
    min-width: 260px;
    max-width: 260px;
    flex: 0 0 auto;
}

.vb-slide-card {
    display: block;
    background: var(--vb-card);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.25s ease;
}

.vb-slide-card:hover {
    transform: translateY(-5px);
    border-color: var(--vb-primary);
    box-shadow: 0 0 12px rgba(0, 238, 255, 0.25);
}


/* ---------------- PRODUCT IMAGE ---------------- */

.vb-slide-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 12px;
}


/* ---------------- CARD INFO ---------------- */

.vb-slide-info {
    margin-top: 6px;
}

.vb-slide-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--vb-text);
}

.vb-slide-price {
    font-size: 16px;
    margin: 8px 0;
    color: var(--vb-primary);
    text-shadow: 0 0 8px var(--vb-primary);
}


/* ---------------- VIEW PRODUCT BUTTON ---------------- */

.vb-slide-button {
    width: 100%;
    padding: 10px 0;
    background: transparent;
    border: 2px solid var(--vb-primary);
    border-radius: 6px;
    color: var(--vb-primary);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s;
}

.vb-slide-button:hover {
    background: var(--vb-primary);
    color: #000;
    box-shadow: 0 0 15px var(--vb-primary);
}


/* ---------------- SLIDER ARROWS ---------------- */

.vb-slide-left,
.vb-slide-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #111418;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--vb-primary);
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.25s;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Left button */
.vb-slide-left {
    left: -10px;
}

/* Right button */
.vb-slide-right {
    right: -10px;
}

.vb-slide-left:hover,
.vb-slide-right:hover {
    background: #1a1f24;
    border-color: var(--vb-primary);
    box-shadow: 0 0 12px var(--vb-primary);
}


/* ---------------- MOBILE RESPONSIVE ---------------- */

@media (max-width: 768px) {
    .vb-hero-title {
        font-size: 32px;
    }

    .vb-slide {
        min-width: 220px;
    }

    .vb-slide-left,
    .vb-slide-right {
        display: none;
    }
}

/* ==========================================================
   VORTEXBEY PREMIUM THEME – PART 4 / 4
   Tebex Cleanup / Sidebar Removal / Layout Polish
   ========================================================== */


/* ----------------------------------------------------------
   SIDEBAR, STORE TEXT, AND DEFAULT HOMEPAGE ELEMENT CLEANUP
   ---------------------------------------------------------- */

.page-index .site-home-categories,
.page-index .site-content .widget,
.page-index .store-text,
.page-index .category-description,
.page-index .widget,
.page-index .site-content-widgets {
    display: none !important;
}

/* Prevent unknown spacing from removed elements */
.page-index .site-content {
    padding: 0 !important;
    margin: 0 !important;
}

/* Needed so that our new content is centered properly */
.page-index main {
    width: 100% !important;
    max-width: 100% !important;
}


/* ----------------------------------------------------------
   GLOBAL CARD POLISHING (PRODUCT CARDS THROUGHOUT SITE)
   ---------------------------------------------------------- */

.store-product,
.store-product-full,
.store-products-list .store-product,
.store-products-images .store-product {
    background: var(--vb-card) !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    transition: 0.25s ease;
}

.store-product:hover {
    transform: translateY(-4px);
    border-color: var(--vb-primary) !important;
    box-shadow: 0 0 12px rgba(0, 238, 255, 0.25);
}


/* ----------------------------------------------------------
   PRODUCT PAGE POLISHING
   ---------------------------------------------------------- */

.store-product-full .media-slider .slider {
    border-radius: 8px !important;
}

.quantity-field {
    background: #1a1e21 !important;
    border-radius: 6px !important;
}

.btn-primary {
    background: var(--vb-primary) !important;
    border: none !important;
    color: black !important;
    box-shadow: 0 0 12px rgba(0, 238, 255, 0.5);
    font-weight: 700;
}

.btn-primary:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 18px rgba(0, 238, 255, 0.7);
}

.btn-secondary {
    background: #14181b !important;
    border-color: var(--vb-primary) !important;
    color: var(--vb-primary) !important;
}

.btn-secondary:hover {
    background: var(--vb-primary) !important;
    color: black !important;
}



/* ----------------------------------------------------------
   HEADER CLEANUP (TOP BAR FIXES)
   ---------------------------------------------------------- */

.site-header {
    background: #0d1013 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

.site-header .site-title a {
    color: var(--vb-primary) !important;
    text-shadow: 0 0 8px var(--vb-primary);
    font-weight: 900;
}

.navigation-horizontal > ul {
    background: #0d1013 !important;
    border-radius: 8px !important;
}

.navigation-horizontal li a {
    color: var(--vb-text) !important;
    transition: 0.25s ease;
}

.navigation-horizontal li a:hover,
.navigation-horizontal li.active a {
    color: var(--vb-primary) !important;
    text-shadow: 0 0 6px var(--vb-primary);
}


/* ----------------------------------------------------------
   FOOTER POLISHING
   ---------------------------------------------------------- */

.site-footer {
    margin-top: 60px;
    padding: 25px !important;
    background: #0b0e10 !important;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.site-footer p,
.site-footer a {
    color: #7c858a !important;
    font-size: 14px;
}



/* ----------------------------------------------------------
   MOBILE RESPONSIVE FIXES
   ---------------------------------------------------------- */

@media (max-width: 768px) {

    .vb-faq-container {
        flex-direction: column;
        gap: 20px;
    }

    .vb-faq-left,
    .vb-faq-right {
        width: 100%;
    }

    .navigation-horizontal > ul {
        border-radius: 0 !important;
    }

    .vb-rp-list {
        width: 100%;
    }

    .store-product {
        margin-bottom: 20px;
    }
}

.vb-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
}

/* ============================= */
/*   VORTEXBEY ANNOUNCEMENT BAR  */
/* ============================= */

.vb-announcement-bar {
    width: 100%;
    background: linear-gradient(90deg, #00eaff, #11b3c2);
    color: #000;
    font-weight: 700;
    overflow: hidden;
    position: relative;
    z-index: 9999;
}

.vb-announcement-text {
    white-space: nowrap;
    display: inline-block;
    padding: 10px 0;
    animation: vb-marquee 18s linear infinite;
}

@keyframes vb-marquee {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}




