/* ==========================================================================
   JAJANONLINE THEME - SOFT PURPLE SOLID EDITION
   Clean, Solid, Soft Muted Purple Aesthetics (No Gradients, No Glassmorphism)
   Reduced Border Radius
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Condensed:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --jjo-font-primary: 'IBM Plex Sans Condensed', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    
    /* Soft Purple Color Palette */
    --jjo-bg-main: #0f0c19;
    --jjo-bg-card: #171324;
    --jjo-bg-card-hover: #211b34;
    --jjo-bg-footer: #141020;
    --jjo-bg-nav-solid: #141021;
    
    /* Purple Accents (Soft, Muted, No Neon) */
    --jjo-accent-purple: #604696;
    --jjo-accent-purple-hover: #523a82;
    --jjo-accent-purple-light: #a695ce;
    --jjo-accent-purple-glow: rgba(96, 70, 150, 0.2);
    
    /* Text Colors - High Contrast White & Light Text */
    --jjo-text-main: #ffffff;
    --jjo-text-muted: #f1f5f9;
    --jjo-text-white: #ffffff;
    
    /* Solid Borders & Shadows */
    --jjo-border: 1px solid rgba(147, 126, 196, 0.2);
    --jjo-border-hover: 1px solid #604696;
    --jjo-shadow-card: 0 4px 12px rgba(0, 0, 0, 0.35);
    --jjo-shadow-hover: 0 6px 16px rgba(0, 0, 0, 0.45);

    /* Reduced Border Radii */
    --jjo-radius-lg: 8px;
    --jjo-radius-md: 6px;
    --jjo-radius-sm: 4px;
}

/* Global Placeholder Override - High Contrast White */
::placeholder,
::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
    color: #ffffff !important;
    opacity: 0.9 !important;
}

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

/* Base Body */
body {
    font-family: var(--jjo-font-primary) !important;
    background-color: var(--jjo-bg-main) !important;
    color: var(--jjo-text-main) !important;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================================================
   SOLID NAVBAR (NO GLASSMORPHISM)
   ========================================================================== */
.jjo-navbar {
    background: var(--jjo-bg-nav-solid) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid rgba(147, 126, 196, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    padding: 10px 0;
    z-index: 1040;
}

.jjo-nav-container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jjo-navbar .navbar-brand img {
    height: 38px;
    width: auto;
    transition: transform 0.2s ease;
}

@media (hover: hover) {
    .jjo-navbar .navbar-brand img:hover {
        transform: scale(1.02);
    }
}

/* Integrated Search Input in Navbar */
.jjo-search-wrapper {
    position: relative;
    max-width: 360px;
    width: 100%;
    margin-left: 12px;
}

.jjo-search-input {
    background: #120f1d !important;
    border: 1px solid rgba(147, 126, 196, 0.25) !important;
    border-radius: 6px !important;
    color: #ffffff !important;
    padding: 8px 16px 8px 38px !important;
    font-size: 0.84rem;
    height: 38px;
    transition: all 0.2s ease;
}

.jjo-search-input::placeholder {
    color: #ffffff !important;
    opacity: 0.9 !important;
}

.jjo-search-input:focus {
    background: #171324 !important;
    border-color: var(--jjo-accent-purple) !important;
    box-shadow: 0 0 0 2px var(--jjo-accent-purple-glow) !important;
    color: #ffffff !important;
}

.jjo-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--jjo-accent-purple-light);
    z-index: 5;
    font-size: 0.85rem;
    pointer-events: none;
}

/* Mobile Search Bar in Navbar */
.jjo-mobile-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.jjo-mobile-search-input {
    background: #120f1d !important;
    border: 1px solid rgba(147, 126, 196, 0.25) !important;
    border-radius: 6px !important;
    color: #ffffff !important;
    font-size: 0.78rem !important;
    padding: 6px 12px 6px 30px !important;
    height: 34px !important;
    width: 130px;
    transition: all 0.2s ease;
}

.jjo-mobile-search-input::placeholder {
    color: #ffffff !important;
    opacity: 0.9 !important;
}

.jjo-mobile-search-input:focus {
    background: #171324 !important;
    border-color: var(--jjo-accent-purple) !important;
    box-shadow: 0 0 0 2px var(--jjo-accent-purple-glow) !important;
    width: 165px;
    outline: none !important;
}

.jjo-mobile-search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--jjo-accent-purple-light);
    font-size: 0.75rem;
    pointer-events: none;
    z-index: 5;
}

#searchResultsMobile {
    background: #171324 !important;
    border: 1px solid rgba(147, 126, 196, 0.3) !important;
    border-radius: 6px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6) !important;
    max-height: 320px;
    overflow-y: auto;
    z-index: 1080 !important;
    top: 100% !important;
    right: 0 !important;
    left: auto !important;
    min-width: 240px;
    margin-top: 6px !important;
    padding: 6px 0;
}

#searchResultsMobile .dropdown-item {
    color: #f1f5f9 !important;
    padding: 8px 14px;
    font-size: 0.82rem;
    white-space: normal;
}

#searchResultsMobile .dropdown-item:hover {
    background: #211b34 !important;
}

/* Nav Links */
.jjo-nav-link {
    color: #cbd5e1 !important;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 12px !important;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 7px;
}

.jjo-nav-link.active {
    color: #ffffff !important;
    background: #211b34;
}

@media (hover: hover) {
    .jjo-nav-link:hover {
        color: #ffffff !important;
        background: #211b34;
    }
}

.btn-jjo-login {
    background: #604696 !important;
    border: none;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.84rem;
    padding: 7px 18px;
    border-radius: 6px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

@media (hover: hover) {
    .btn-jjo-login:hover {
        background: #523a82 !important;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    }
}

/* User Dropdown Button */
.jjo-user-dropdown-btn {
    background: #191428;
    border: 1px solid rgba(147, 126, 196, 0.3);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.84rem;
    padding: 6px 14px;
    border-radius: 6px !important;
    transition: all 0.2s ease;
}

@media (hover: hover) {
    .jjo-user-dropdown-btn:hover {
        border-color: var(--jjo-accent-purple);
        background: #211b34;
    }
}

.jjo-dropdown-menu {
    background: #171324 !important;
    border: 1px solid rgba(147, 126, 196, 0.3) !important;
    border-radius: 6px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6) !important;
    padding: 6px 0;
    min-width: 220px;
}

.jjo-dropdown-menu .dropdown-item {
    color: #f1f5f9 !important;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
}

@media (hover: hover) {
    .jjo-dropdown-menu .dropdown-item:hover {
        background: #211b34 !important;
        color: #ffffff !important;
    }
}

/* Search Results Autocomplete Dropdown - Compact & Perfectly Aligned */
.resultsearch {
    background: #171324 !important;
    border: 1px solid rgba(147, 126, 196, 0.35) !important;
    border-radius: 6px !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.65) !important;
    max-height: 380px;
    overflow-y: auto;
    z-index: 1070 !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    inset: 100% auto auto 0px !important;
    transform: none !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    margin-top: 4px !important;
    padding: 4px 0 !important;
    list-style: none !important;
}

.resultsearch.show { display: block !important; }

/* Item inside search dropdown */
.jjo-search-result-item {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid rgba(147, 126, 196, 0.12) !important;
}

.jjo-search-result-item:last-child {
    border-bottom: none !important;
}

.jjo-search-result-link {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 6px 12px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: background 0.15s ease !important;
    white-space: normal !important;
}

.jjo-search-result-link:hover,
.jjo-search-result-link:focus {
    background: #211b34 !important;
    color: #ffffff !important;
}

.jjo-search-thumb {
    width: 38px !important;
    height: 38px !important;
    border-radius: 6px !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
    border: 1px solid rgba(147, 126, 196, 0.25) !important;
    background: #0f0c19 !important;
}

.jjo-search-info {
    flex-grow: 1 !important;
    min-width: 0 !important;
}

.jjo-search-title {
    font-weight: 700 !important;
    font-size: 0.84rem !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.jjo-search-sub {
    font-size: 0.72rem !important;
    color: #a695ce !important;
    line-height: 1.2 !important;
    margin-top: 2px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.jjo-search-arrow {
    font-size: 0.75rem !important;
    color: var(--jjo-accent-purple-light) !important;
    opacity: 0.6 !important;
    flex-shrink: 0 !important;
    transition: transform 0.15s ease !important;
}

.jjo-search-result-link:hover .jjo-search-arrow {
    opacity: 1 !important;
    transform: translateX(2px) !important;
}

/* Offcanvas Mobile Drawer */
.offcanvas {
    background-color: var(--jjo-bg-main) !important;
    color: #f1f5f9 !important;
    border-right: var(--jjo-border) !important;
    border-left: none !important;
}

/* ==========================================================================
   CONTENT LAYOUT & HERO SLIDER
   ========================================================================== */
.content-body {
    padding-top: 76px !important;
    background: var(--jjo-bg-main);
    min-height: calc(100vh - 350px);
}

.jjo-page-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Hero Slider Banner */
.jjo-hero-container {
    position: relative;
    border-radius: 8px !important;
    overflow: hidden;
    border: var(--jjo-border);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    background: #171324;
    margin-top: 12px;
}

.jjo-hero-container .swiper-container { width: 100%; }
.jjo-hero-container .swiper-slide { width: 100% !important; }

.jjo-hero-container .swiper-slide img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    border-radius: 8px !important;
}

/* Sembunyikan Arrow Navigasi Slider secara Total */
.jjo-swiper-btn,
.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}

.jjo-hero-container .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    width: 8px; height: 8px;
    transition: all 0.25s;
}

.jjo-hero-container .swiper-pagination-bullet-active {
    background: var(--jjo-accent-purple);
    width: 20px;
    border-radius: 4px;
}

/* ==========================================================================
   POPULER SEKARANG!
   ========================================================================== */
.jjo-popular-section {
    padding: 28px 0 16px;
}

.jjo-section-heading {
    margin-bottom: 14px;
}

.jjo-popular-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.jjo-popular-subtitle {
    color: var(--jjo-text-muted);
    font-size: 0.84rem;
    margin: 0;
}

/* Grid Populer */
.jjo-popular-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* ANIMATED ROTATING PURPLE BORDER FOR POPULAR CARDS */
@keyframes rotateBorderPop {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* CARD POPULER WITH ANIMATED PURPLE BORDER */
.jjo-pop-wide-card {
    background: #171324 !important;
    border: none !important;
    border-radius: 14px !important;
    padding: 13px 15px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
    z-index: 1 !important;
}

/* Rotating Purple Gradient Border Layer (Slow 8s Animation, All Purple Hues) */
.jjo-pop-wide-card::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    top: -50% !important;
    left: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        #7c3aed 20%,
        #a855f7 40%,
        #c084fc 60%,
        #6d28d9 80%,
        transparent 95%
    ) !important;
    animation: rotateBorderPop 8s linear infinite !important;
    z-index: -2 !important;
}

/* Inner Card Mask */
.jjo-pop-wide-card::after {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    inset: 1.5px !important;
    background: #171324 !important;
    border-radius: 12.5px !important;
    z-index: -1 !important;
    transition: all 0.25s ease !important;
}

/* HOVER: NO GLOW, THICKER PURPLE BORDER */
.jjo-pop-wide-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35) !important;
}

.jjo-pop-wide-card:hover::after {
    inset: 3px !important; /* Thick 3px border on hover */
    background: #221b36 !important;
}

.jjo-pop-wide-img {
    width: 54px !important;
    height: 54px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    background: #0f0c19;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.jjo-pop-wide-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.25s ease;
}

@media (hover: hover) {
    .jjo-pop-wide-card:hover .jjo-pop-wide-img img {
        transform: scale(1.05);
    }
}

.jjo-pop-wide-content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.jjo-pop-wide-title {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.jjo-pop-wide-sub {
    color: #a695ce !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    margin-top: 2px !important;
}

/* STAR EMOJI FLOATING ANIMATION */
@keyframes jjo-star-fly-topright {
    0%   { opacity: 0; transform: scale(0.4) translate(0, 0) rotate(0deg); }
    25%  { opacity: 1; transform: scale(1.2) translate(5px, -8px) rotate(15deg); }
    100% { opacity: 0; transform: scale(0.6) translate(15px, -30px) rotate(45deg); }
}

.jjo-star-particle {
    position: absolute;
    pointer-events: none;
    font-size: 1.3rem;
    z-index: 50;
    animation-name: jjo-star-fly-topright;
    animation-duration: 0.65s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: forwards;
    user-select: none;
    line-height: 1;
}

/* ==========================================================================
   ALL SERVICES SECTION & PILL TABS
   ========================================================================== */
.jjo-services-section {
    padding: 8px 0 36px;
}

.jjo-filter-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-bottom: 16px;
    scrollbar-width: none;
}

.jjo-filter-pills::-webkit-scrollbar { display: none; }

.jjo-pill-btn {
    background: #171324;
    border: 1px solid rgba(147, 126, 196, 0.2);
    color: #cbd5e1;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 6px !important;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.jjo-pill-btn:hover {
    border-color: var(--jjo-accent-purple);
    color: #ffffff;
}

.jjo-pill-btn.active {
    background: #604696 !important;
    border-color: #604696 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.jjo-products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.jjo-game-card {
    background: #171324;
    border: 1px solid rgba(147, 126, 196, 0.2);
    border-radius: 14px !important;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.2s ease;
    position: relative;
}

@media (hover: hover) {
    .jjo-game-card:hover {
        transform: translateY(-3px);
        border-color: var(--jjo-accent-purple);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    }
}

.jjo-thumb-box {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    background: #0f0c19;
}

.jjo-thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

@media (hover: hover) {
    .jjo-game-card:hover .jjo-thumb-img {
        transform: scale(1.06);
    }
}

.jjo-card-footer-banner {
    background: #211b34;
    padding: 16px 8px 12px;
    margin-top: -10px;
    position: relative;
    z-index: 2;
    text-align: center;
    clip-path: polygon(
        0% 8px, 
        5% 0px, 10% 8px, 15% 0px, 20% 8px, 25% 0px, 30% 8px, 35% 0px, 40% 8px, 45% 0px, 50% 8px, 55% 0px, 60% 8px, 65% 0px, 70% 8px, 75% 0px, 80% 8px, 85% 0px, 90% 8px, 95% 0px, 100% 8px,
        100% 100%, 0% 100%
    );
    -webkit-clip-path: polygon(
        0% 8px, 
        5% 0px, 10% 8px, 15% 0px, 20% 8px, 25% 0px, 30% 8px, 35% 0px, 40% 8px, 45% 0px, 50% 8px, 55% 0px, 60% 8px, 65% 0px, 70% 8px, 75% 0px, 80% 8px, 85% 0px, 90% 8px, 95% 0px, 100% 8px,
        100% 100%, 0% 100%
    );
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jjo-game-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    text-align: center;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   TRUST FEATURES BAR
   ========================================================================== */
.jjo-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin: 32px 0 10px;
}

.jjo-feature-item {
    background: #171324;
    border: 1px solid rgba(147, 126, 196, 0.2);
    border-radius: 8px !important;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
}

@media (hover: hover) {
    .jjo-feature-item:hover {
        border-color: var(--jjo-accent-purple);
        transform: translateY(-2px);
    }
}

.jjo-feature-icon {
    width: 38px; height: 38px;
    border-radius: 6px !important;
    background: #211b34;
    border: 1px solid rgba(147, 126, 196, 0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--jjo-accent-purple-light);
    font-size: 1rem;
    flex-shrink: 0;
}

.jjo-feature-title { font-weight: 700; font-size: 0.85rem; color: #fff; margin: 0; }
.jjo-feature-desc { font-size: 0.74rem; color: var(--jjo-text-muted); margin: 0; }

/* ==========================================================================
   SOLID FOOTER DESIGN (NO GRADIENTS, NO GLASS)
   ========================================================================== */
.jjo-footer {
    background-color: var(--jjo-bg-footer) !important;
    border-top: 1px solid rgba(147, 126, 196, 0.2);
    padding: 40px 0 24px;
    margin-top: 36px;
    color: #e2e8f0;
    position: relative;
    width: 100%;
    overflow: hidden !important;
}

.jjo-footer .jjo-page-wrap {
    max-width: 1320px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 16px !important;
    position: relative !important;
    z-index: 3 !important;
}

/* ==========================================================================
   FOOTER GEOMETRIC BACKGROUND SHAPES & ANIMATIONS
   ========================================================================== */
.jjo-footer-geo {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 320px;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    display: block !important;
}

.jjo-footer-geo-left {
    left: 0;
}

.jjo-footer-geo-right {
    right: 0;
}

.jjo-geo-item {
    position: absolute;
    pointer-events: none;
}

/* 1. Floating & Rotating Cube / Rounded Polygon */
.jjo-geo-shape-1 {
    width: 140px;
    height: 140px;
    border: 1.5px solid rgba(147, 126, 196, 0.35);
    border-radius: 12px;
    background: rgba(96, 70, 150, 0.08);
    box-shadow: 0 0 20px rgba(96, 70, 150, 0.12);
}

.jjo-footer-geo-left .jjo-geo-shape-1 {
    top: -20px;
    left: -30px;
    animation: jjoGeoFloatRotate 22s infinite linear;
}

.jjo-footer-geo-right .jjo-geo-shape-1 {
    bottom: -20px;
    right: -30px;
    border-color: rgba(166, 149, 206, 0.35);
    background: rgba(96, 70, 150, 0.08);
    box-shadow: 0 0 20px rgba(166, 149, 206, 0.12);
    animation: jjoGeoFloatRotate 26s infinite linear reverse;
}

/* 2. Pulsing Dashed Rings */
.jjo-geo-shape-2 {
    width: 180px;
    height: 180px;
    border: 1.5px dashed rgba(147, 126, 196, 0.3);
    border-radius: 50%;
}

.jjo-footer-geo-left .jjo-geo-shape-2 {
    bottom: -10px;
    left: 20px;
    animation: jjoGeoPulse 7s ease-in-out infinite alternate;
}

.jjo-footer-geo-right .jjo-geo-shape-2 {
    top: -10px;
    right: 20px;
    border-color: rgba(166, 149, 206, 0.3);
    animation: jjoGeoPulse 9s ease-in-out infinite alternate-reverse;
}

/* 3. Small Floating Diamond Particles */
.jjo-geo-shape-3 {
    width: 55px;
    height: 55px;
    border: 1.5px solid rgba(166, 149, 206, 0.4);
    border-radius: 8px;
    background: rgba(166, 149, 206, 0.06);
    box-shadow: 0 0 12px rgba(166, 149, 206, 0.15);
}

.jjo-footer-geo-left .jjo-geo-shape-3 {
    top: 45%;
    left: 120px;
    animation: jjoGeoFloat 11s ease-in-out infinite alternate;
}

.jjo-footer-geo-right .jjo-geo-shape-3 {
    top: 35%;
    right: 120px;
    border-color: rgba(147, 126, 196, 0.4);
    animation: jjoGeoFloat 13s ease-in-out infinite alternate-reverse;
}

/* 4. Geometric Dot/Line Matrix Grid */
.jjo-geo-grid-left,
.jjo-geo-grid-right {
    position: absolute;
    width: 280px;
    height: 280px;
    background-image: 
        radial-gradient(circle, rgba(147, 126, 196, 0.25) 1.5px, transparent 1.5px),
        linear-gradient(to right, rgba(147, 126, 196, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(147, 126, 196, 0.05) 1px, transparent 1px);
    background-size: 24px 24px, 24px 24px, 24px 24px;
}

.jjo-geo-grid-left {
    top: 0;
    left: 0;
    mask-image: radial-gradient(circle at 15% 30%, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at 15% 30%, black 0%, transparent 75%);
    animation: jjoGeoGridPulse 6s ease-in-out infinite alternate;
}

.jjo-geo-grid-right {
    bottom: 0;
    right: 0;
    mask-image: radial-gradient(circle at 85% 70%, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at 85% 70%, black 0%, transparent 75%);
    animation: jjoGeoGridPulse 8s ease-in-out infinite alternate-reverse;
}

/* Keyframe Animations */
@keyframes jjoGeoFloatRotate {
    0% {
        transform: rotate(0deg) translateY(0px) scale(1);
    }
    50% {
        transform: rotate(180deg) translateY(-14px) scale(1.04);
    }
    100% {
        transform: rotate(360deg) translateY(0px) scale(1);
    }
}

@keyframes jjoGeoFloat {
    0% {
        transform: rotate(45deg) translateY(0px) translateX(0px);
    }
    50% {
        transform: rotate(65deg) translateY(-16px) translateX(10px);
    }
    100% {
        transform: rotate(45deg) translateY(0px) translateX(0px);
    }
}

@keyframes jjoGeoPulse {
    0% {
        transform: scale(0.94);
        opacity: 0.15;
    }
    100% {
        transform: scale(1.08);
        opacity: 0.4;
    }
}

@keyframes jjoGeoGridPulse {
    0% {
        opacity: 0.25;
    }
    100% {
        opacity: 0.6;
    }
}

.pace .pace-progress {
    background: #604696 !important;
    height: 3px !important;
}

.jjo-footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 2fr 1.5fr 1.5fr;
    gap: 28px;
}

.jjo-footer-logo {
    height: 38px;
    width: auto;
}

.jjo-footer-desc {
    font-size: 0.84rem;
    color: var(--jjo-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.jjo-footer-title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.2px;
}

.jjo-footer-subtext {
    font-size: 0.78rem;
    color: var(--jjo-text-muted);
    margin-bottom: 10px;
}

/* Social Buttons */
.jjo-social-links {
    display: flex;
    gap: 8px;
}

.jjo-social-btn {
    width: 34px;
    height: 34px;
    border-radius: 6px !important;
    background: #171324;
    border: 1px solid rgba(147, 126, 196, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.jjo-social-btn:hover {
    background: var(--jjo-accent-purple);
    color: #ffffff;
    border-color: var(--jjo-accent-purple);
    transform: translateY(-2px);
}

/* Payment Icons Grid Inside Footer */
.jjo-footer-payment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 10px;
}

.jjo-footer-payment-grid img {
    background: #ffffff;
    padding: 4px 6px;
    border-radius: 6px !important;
    height: 32px;
    width: 100%;
    object-fit: contain;
    border: 1px solid rgba(147, 126, 196, 0.2);
}

/* Navigation Links inside Footer */
.jjo-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jjo-footer-links li {
    margin-bottom: 8px;
}

.jjo-footer-links a {
    color: #cbd5e1;
    font-size: 0.83rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.jjo-footer-links a:hover {
    color: var(--jjo-accent-purple-light);
    transform: translateX(3px);
}

/* Footer Divider Line */
.jjo-footer-divider {
    border: 0;
    height: 1px;
    background: rgba(147, 126, 196, 0.2);
    margin: 28px 0 18px;
}

/* Bottom Bar / Copyright */
.jjo-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.jjo-copyright-text {
    font-size: 0.8rem;
    color: var(--jjo-text-muted);
    margin: 0;
}

.bg-purple-subtle {
    background: #211b34 !important;
}

.text-purple {
    color: var(--jjo-accent-purple-light) !important;
}

.border-purple-light {
    border-color: rgba(147, 126, 196, 0.3) !important;
}

/* Floating CS Button */
.jjo-floating-cs-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background: #604696 !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 9px 18px;
    border-radius: 6px !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.jjo-floating-cs-btn:hover {
    transform: translateY(-2px);
    background: #523a82 !important;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
    .jjo-products-grid { grid-template-columns: repeat(4, 1fr); }
    .jjo-footer-grid { grid-template-columns: 1.8fr 1.8fr 1.2fr 1.2fr; }
}

@media (max-width: 992px) {
    .jjo-popular-grid { grid-template-columns: repeat(2, 1fr); }
    .jjo-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .jjo-products-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .jjo-hero-container .swiper-slide img { height: 220px; }
}

@media (max-width: 576px) {
    .content-body { padding-top: 68px !important; }

    .jjo-hero-container { border-radius: 8px; margin-top: 6px; }
    .jjo-hero-container .swiper-slide img { height: 155px !important; border-radius: 8px; }

    .jjo-popular-section { padding: 16px 0 12px; }
    .jjo-popular-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }

    .jjo-pop-wide-card {
        border-radius: 12px !important;
        padding: 8px 10px !important;
        gap: 8px !important;
    }

    .jjo-pop-wide-img { width: 44px !important; height: 44px !important; border-radius: 8px !important; }
    .jjo-pop-wide-title { font-size: 0.8rem !important; }
    .jjo-pop-wide-sub { font-size: 0.72rem !important; }

    .jjo-products-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 8px !important; }
    .jjo-game-card { border-radius: 12px !important; }
    .jjo-game-name { font-size: 0.72rem !important; }

    .jjo-footer-grid { grid-template-columns: 1fr !important; gap: 20px; }
    .jjo-footer-payment-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
    .jjo-footer-payment-grid img { height: 28px; padding: 3px; }
    .jjo-footer { padding: 28px 0 18px; }
}

/* ==========================================================================
   CARRI TRANSAKSI PAGE STYLES (SOLID PURPLE, NO GRADIENT, REDUCED RADIUS)
   ========================================================================== */
.jjo-search-card {
    background: #171324 !important;
    border: 1px solid rgba(147, 126, 196, 0.2) !important;
    border-radius: 8px !important;
    padding: 24px 20px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
    margin-top: 16px;
    margin-bottom: 32px;
}

.jjo-search-page-header {
    background: #171324 !important;
    border: 1px solid rgba(147, 126, 196, 0.2);
    border-radius: 8px !important;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
}

.jjo-search-page-icon {
    width: 48px;
    height: 48px;
    background: #604696 !important;
    border-radius: 6px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.jjo-input-group {
    background: #120f1d !important;
    border: 1px solid rgba(147, 126, 196, 0.25) !important;
    border-radius: 6px !important;
    overflow: hidden;
    transition: all 0.2s ease;
}

.jjo-input-group:focus-within {
    border-color: #604696 !important;
    box-shadow: 0 0 0 2px var(--jjo-accent-purple-glow) !important;
}

.jjo-input-group .input-group-text {
    background: transparent !important;
    border: none !important;
    color: #a695ce !important;
    font-size: 1.05rem;
    padding-left: 14px;
}

.jjo-input-group .form-control {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 0.92rem;
    padding: 10px 14px !important;
    margin-top: 0 !important;
    height: 44px !important;
    box-shadow: none !important;
    outline: none !important;
}

.jjo-input-group .form-control:focus {
    background: transparent !important;
    color: #ffffff !important;
    box-shadow: none !important;
    outline: none !important;
}

.jjo-input-group .form-control::placeholder {
    color: #94a3b8 !important;
    opacity: 1 !important;
}

.btn-submit-search {
    background: #604696 !important;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px;
    border-radius: 6px !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
    transition: all 0.2s ease !important;
}

@media (hover: hover) {
    .btn-submit-search:hover {
        background: #523a82 !important;
        transform: translateY(-1px);
    }
}

@media (max-width: 576px) {
    .jjo-search-card {
        padding: 16px 14px !important;
        border-radius: 8px !important;
    }
    .jjo-search-page-header {
        padding: 14px 16px !important;
        gap: 12px !important;
        border-radius: 8px !important;
    }
    .jjo-search-page-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

/* ==========================================================================
   DAFTAR HARGA / PRICELIST PAGE STYLES (SOLID PURPLE, REDUCED BORDER RADIUS)
   ========================================================================== */
.jjo-pricelist-card {
    background: #171324 !important;
    border: 1px solid rgba(147, 126, 196, 0.2) !important;
    border-radius: 8px !important;
    padding: 20px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
    margin-top: 16px;
    margin-bottom: 32px;
}

.jjo-table {
    color: #e2e8f0 !important;
    border-color: rgba(147, 126, 196, 0.15) !important;
    margin-bottom: 0 !important;
}

.jjo-table thead th {
    background: #211b34 !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.86rem;
    padding: 12px 14px !important;
    border-bottom: 2px solid rgba(147, 126, 196, 0.25) !important;
    white-space: nowrap;
}

.jjo-table tbody td {
    padding: 10px 14px !important;
    vertical-align: middle !important;
    border-bottom: 1px solid rgba(147, 126, 196, 0.12) !important;
    font-size: 0.85rem;
    color: #e2e8f0;
}

.jjo-table tbody tr:hover td {
    background: #211b34 !important;
}

/* DataTables Styling Overrides - Pure White Text & High Contrast Placeholders */
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
    color: #ffffff !important;
    font-size: 0.86rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.dataTables_wrapper .dataTables_filter label,
.dataTables_wrapper .dataTables_length label {
    color: #ffffff !important;
    font-weight: 600;
}

.dataTables_wrapper .dataTables_filter input {
    background: #120f1d !important;
    border: 1px solid rgba(147, 126, 196, 0.35) !important;
    border-radius: 6px !important;
    color: #ffffff !important;
    padding: 6px 12px !important;
    outline: none !important;
}

.dataTables_wrapper .dataTables_filter input::placeholder {
    color: #ffffff !important;
    opacity: 0.9 !important;
}

.dataTables_wrapper .dataTables_filter input:focus {
    border-color: #604696 !important;
    box-shadow: 0 0 0 2px var(--jjo-accent-purple-glow) !important;
}

.dataTables_wrapper .dataTables_length select {
    background: #120f1d !important;
    border: 1px solid rgba(147, 126, 196, 0.35) !important;
    border-radius: 6px !important;
    color: #ffffff !important;
    padding: 5px 10px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    color: #ffffff !important;
    border-radius: 6px !important;
    border: 1px solid transparent !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #604696 !important;
    color: #ffffff !important;
    border: none !important;
}

/* ==========================================================================
   ORDER PAGE STYLES (SOLID SOFT PURPLE, REDUCED BORDER RADIUS)
   ========================================================================== */
.content-body .card.bg-card {
    background: #171324 !important;
    border: 1px solid rgba(147, 126, 196, 0.2) !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
    overflow: hidden;
}

.num-page div {
    background: #604696 !important;
    color: #ffffff !important;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    border-radius: 6px !important;
}

.num-page p {
    color: #ffffff !important;
    font-weight: 600 !important;
}

/* Item Selection Cards (Pilih Item) */
.product-list {
    background: #120f1d !important;
    border: 1px solid rgba(147, 126, 196, 0.3) !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    color: #ffffff !important;
    cursor: pointer !important;
}

.product-list:hover {
    border-color: #604696 !important;
    background: #211b34 !important;
    box-shadow: 0 4px 12px rgba(96, 70, 150, 0.25) !important;
}

.product-list.active,
.product-list.selected,
.bg-product.selected {
    background: #604696 !important;
    border: 2px solid #a695ce !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(96, 70, 150, 0.45) !important;
}

/* Payment Method Cards (Pilih Pembayaran) */
.method-list {
    background: #1e1733 !important;
    border: 2px solid rgba(147, 126, 196, 0.2) !important;
    border-radius: 12px !important;
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s !important;
    color: #ffffff !important;
    cursor: pointer !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    padding: 10px 14px !important;
    min-height: 60px !important;
    box-sizing: border-box !important;
    user-select: none !important;
    gap: 12px !important;
}

.method-list .pay-logo-wrap {
    flex-shrink: 0 !important;
    width: 56px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255,255,255,0.06) !important;
    border-radius: 8px !important;
    padding: 4px !important;
}

.method-list .pay-logo-wrap img {
    max-height: 24px !important;
    max-width: 48px !important;
    width: auto !important;
    object-fit: contain !important;
}

.method-list .pay-name {
    flex: 1 !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    color: #d4c6f0 !important;
    line-height: 1.3 !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
}

.method-list .pay-price-val {
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    color: #a78bfa !important;
    white-space: nowrap !important;
    text-align: right !important;
    line-height: 1.3 !important;
}

.method-list .pay-keterangan {
    font-size: 0.65rem !important;
    font-weight: 500 !important;
    color: #7c6fa0 !important;
    white-space: nowrap !important;
    text-align: right !important;
    margin-left: 4px !important;
    line-height: 1.3 !important;
}

.method-list .pay-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    flex-shrink: 0 !important;
}

.method-list:hover {
    border-color: #7c3aed !important;
    background: #231c3d !important;
    box-shadow: 0 2px 12px rgba(124, 58, 237, 0.18) !important;
}

.method-list.active {
    background: #2e2050 !important;
    border-color: #7c3aed !important;
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.45), 0 4px 16px rgba(124, 58, 237, 0.25) !important;
}

.method-list.active .pay-name {
    color: #e9d5ff !important;
}

.method-list.active .pay-price-val {
    color: #c4b5e8 !important;
}

.method-list.active .pay-keterangan {
    color: #9d8fc7 !important;
}

/* Accordion Elements */
.accordion-item {
    background: #171324 !important;
    border: 1px solid rgba(147, 126, 196, 0.25) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

.accordion-button {
    background: #171324 !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    padding: 12px 16px !important;
}

.accordion-button:not(.collapsed) {
    background: #211b34 !important;
    color: #ffffff !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.jjo-acc-icon {
    color: #a78bfa !important;
    margin-right: 8px !important;
    font-size: 1rem !important;
}

.btn-outline-purple {
    color: #c4b5e8 !important;
    border: 1px solid rgba(167, 139, 250, 0.4) !important;
    background: rgba(124, 58, 237, 0.08) !important;
    transition: all 0.2s ease !important;
}

.btn-outline-purple:hover,
.btn-outline-purple:focus {
    color: #ffffff !important;
    background: #7c3aed !important;
    border-color: #7c3aed !important;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35) !important;
}

.accordion-body,
.bg-payment {
    background: #171324 !important;
    border-top: 1px solid rgba(147, 126, 196, 0.2) !important;
}

/* Forms & Text Info */
.my-form .form-control,
.my-form select.form-control,
#user_id,
#zone,
#nomor {
    background: #120f1d !important;
    border: 1px solid rgba(147, 126, 196, 0.3) !important;
    border-radius: 6px !important;
    color: #ffffff !important;
    margin-top: 0 !important;
}

.my-form .form-control::placeholder,
#user_id::placeholder,
#zone::placeholder,
#nomor::placeholder {
    color: #ffffff !important;
    opacity: 0.9 !important;
}

.my-form .form-control:focus,
#user_id:focus,
#zone:focus,
#nomor:focus {
    border-color: #604696 !important;
    box-shadow: 0 0 0 2px var(--jjo-accent-purple-glow) !important;
    color: #ffffff !important;
}

.panduan,
.card .px-3 p,
#form-order p {
    color: #ffffff !important;
}

/* Tombol Beli (Beli Sekarang) */
#btn-order,
.btn-order {
    background: #604696 !important;
    border-color: #604696 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border-radius: 6px !important;
    padding: 12px 24px !important;
    font-size: 1rem !important;
    width: 100% !important;
    transition: all 0.2s ease !important;
}

#btn-order:hover,
.btn-order:hover {
    background: #523a82 !important;
    border-color: #523a82 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(96, 70, 150, 0.45) !important;
}

/* ==========================================================================
   AUTH (LOGIN / REGISTER) STYLES
   ========================================================================== */
.jjo-auth-card {
    background: #171324 !important;
    border: 1px solid rgba(147, 126, 196, 0.2) !important;
    border-radius: 8px !important;
    padding: 24px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
    max-width: 480px;
    margin: 20px auto 36px auto;
}

.jjo-auth-card .form-control {
    background: #120f1d !important;
    border: 1px solid rgba(147, 126, 196, 0.25) !important;
    border-radius: 6px !important;
    color: #ffffff !important;
    padding: 10px 14px !important;
    margin-top: 0 !important;
    height: 44px !important;
}

.input-white-placeholder::placeholder,
.input-white-placeholder::-webkit-input-placeholder,
.input-white-placeholder::-moz-placeholder,
.input-white-placeholder:-ms-input-placeholder,
.jjo-auth-card .form-control::placeholder,
.jjo-auth-card .form-control::-webkit-input-placeholder,
.jjo-auth-card .form-control::-moz-placeholder,
.jjo-auth-card .form-control:-ms-input-placeholder {
    color: #ffffff !important;
    opacity: 0.9 !important;
    -webkit-text-fill-color: #ffffff !important;
}

.jjo-auth-card .form-control:focus {
    border-color: #604696 !important;
    box-shadow: 0 0 0 2px var(--jjo-accent-purple-glow) !important;
}

.jjo-auth-card label {
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 6px;
}

/* ==========================================================================
   SOLID MODAL THEME (NO GLASS, REDUCED BORDER RADIUS)
   ========================================================================== */
.jjo-modal-card {
    background: #171324 !important;
    border: 1px solid rgba(147, 126, 196, 0.25) !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7) !important;
    color: #ffffff !important;
    overflow: hidden;
}

.jjo-modal-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 6px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.jjo-modal-icon-wrap.danger {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.jjo-modal-icon-wrap.purple {
    background: #211b34;
    color: #a695ce;
    border: 1px solid rgba(147, 126, 196, 0.3);
}

.btn-jjo-modal-cancel {
    background: #211b34 !important;
    border: 1px solid rgba(147, 126, 196, 0.25) !important;
    color: #cbd5e1 !important;
    font-weight: 600;
    border-radius: 6px !important;
    font-size: 0.86rem;
    transition: all 0.2s ease;
}

.btn-jjo-modal-cancel:hover {
    background: #2b2344 !important;
    color: #ffffff !important;
}

.btn-jjo-modal-danger {
    background: #dc2626 !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 6px !important;
    font-size: 0.86rem;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3) !important;
    transition: all 0.2s ease;
}

.btn-jjo-modal-danger:hover {
    background: #b91c1c !important;
    transform: translateY(-1px);
}