/* Advanced Animations & Effects */
@keyframes morphGlow {
    0% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}

@keyframes liquidRipple {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
        border-radius: 50%;
    }

    50% {
        opacity: 0.8;
        border-radius: 30%;
    }

    100% {
        transform: scale(4) rotate(180deg);
        opacity: 0;
        border-radius: 50%;
    }
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1) translateZ(0);
    }

    50% {
        transform: scale(1.02) translateZ(10px);
    }
}

@keyframes prismaShift {
    0% {
        background-position: 0% 50%;
    }

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

    100% {
        background-position: 0% 50%;
    }
}

@keyframes neuralPulse {
    0% {
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(77, 232, 255, 0.05));
    }

    50% {
        background: linear-gradient(135deg, rgba(77, 232, 255, 0.15), rgba(0, 212, 255, 0.08));
    }

    100% {
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(77, 232, 255, 0.05));
    }
}

@keyframes quantumSpin {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(360deg) scale(1.1);
    }
}

/* Core Typography & Base */
* {
    box-sizing: border-box;
}

::selection {
    background: rgba(0, 212, 255, 0.3);
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px;
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.6), rgba(77, 232, 255, 0.4));
    border-radius: 20px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

a {
    color: #4de8ff;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    position: relative;
}

a:hover {
    color: #00d4ff;
    text-shadow: 0 0 12px rgba(77, 232, 255, 0.6), 0 0 24px rgba(0, 212, 255, 0.3);
    transform: translateY(-1px);
}

a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #4de8ff);
    transition: width 0.4s ease;
}

a:hover::after {
    width: 100%;
}

body {
  background:
  radial-gradient(
    ellipse at top,
    rgba(15, 25, 45, 1)       0%,
    rgba(46, 139, 87, 0.2)    50%,
    rgba(2, 8, 20, 1)         100%
  ),
  linear-gradient(
    135deg,
    rgba(10, 15, 30, 1)       0%,
    rgba(3, 173, 216, 0.25)   25%,
    rgba(17, 32, 53, 0.25)    50%,
    rgba(5, 16, 32, 1)        100%
  );
  color: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  }

/* Ultra-Modern Buttons */
button {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #e8f4ff;
    border-radius: 16px;
    padding: 0px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    font-weight: 500;
    letter-spacing: 0.5px;
}

button:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(255, 255, 255, 0.15) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.25), 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
}

button:active {
    transform: translateY(-1px) scale(0.98);
}

button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

button:hover::before {
    left: 100%;
}

button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s;
    transform: translate(-50%, -50%);
}

button:active::after {
    width: 200px;
    height: 200px;
}

/* Premium Form Elements */
input, textarea, .post_input_container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(20px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #e8f4ff;
    border-radius: 20px;
    padding: 16px 20px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    font-weight: 400;
}

input:focus, textarea:focus {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(255, 255, 255, 0.12) 100%);
    border-color: rgba(0, 212, 255, 0.6) !important;
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1), 0 8px 32px rgba(0, 212, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    outline: none;
}

input::placeholder, textarea::placeholder {
    color: rgba(232, 244, 255, 0.5);
    font-style: italic;
}

.setdef {
    color: #b8e8ff;
    font-weight: 500;
}

/* Luxurious Cookie Box */
.cookie_wrap {
    background: linear-gradient(135deg, rgba(25, 35, 55, 0.95) 0%, rgba(15, 25, 45, 0.98) 100%);
    backdrop-filter: blur(30px) saturate(150%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #e8f4ff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 212, 255, 0.1);
    animation: floatUp 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Sophisticated Background Effects */
.bback {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px) saturate(130%);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bback:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(0, 212, 255, 0.08) 100%);
    transform: translateY(-2px);
}

.bbackb {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.bbackb:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
}

.bhover {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 12px;
    position: relative;
}

.bhover:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(15px);
    transform: translateY(-3px) scale(1.01);
}

.bbackhover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px) saturate(130%);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.bbackhover:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12) 0%, rgba(255, 255, 255, 0.1) 100%);
    transform: scale(1.03) translateY(-2px);
    animation: breathe 2s ease-in-out infinite;
}

.bbackhoverb {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px) saturate(130%);
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bbackhoverb:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(77, 232, 255, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.5);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-4px) scale(1.02);
    animation: morphGlow 3s ease-in-out infinite;
}

/* Advanced Listing Effects */
.blisting {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.blisting:hover {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.12) 0%, rgba(77, 232, 255, 0.06) 50%, transparent 100%);
    box-shadow: inset 4px 0 0 rgba(0, 212, 255, 0.8), 0 4px 20px rgba(0, 212, 255, 0.1);
    transform: translateX(4px);
}

.blisting::before {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.blisting:hover::before {
    left: 100%;
}

.blist {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Elite Panel Backgrounds */
.back_ptop {
    background: linear-gradient(135deg, rgba(35, 45, 65, 0.95) 0%, rgba(25, 35, 55, 0.98) 100%);
    backdrop-filter: blur(25px) saturate(140%);
    color: #e8f4ff;
    border-bottom: 2px solid rgba(0, 212, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.bpmenu {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 12px;
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.05);

}

.bpmenu:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(77, 232, 255, 0.08) 100%);
    backdrop-filter: blur(20px);
    transform: translateX(8px);
    border-color: rgba(0, 212, 255, 0.3);
}

.bsub {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(20, 25, 40, 0.2) 100%);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bsub:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(0, 212, 255, 0.3);
}

/* Refined Menu Styles */
.bmenu, .submenu {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.bmenu:hover, .submenu:hover {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.12) 0%, rgba(77, 232, 255, 0.06) 100%);
    border-left: 4px solid rgba(0, 212, 255, 0.8);
    padding-left: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Premium Shadows and Effects */
.bshadow, .page_element, .float_menu, .btnshadow, .pboxed {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 212, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

/* Elite Selection States */
.bselected {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(77, 232, 255, 0.12) 50%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: neuralPulse 3s ease-in-out infinite;
}

.rselected {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(15px) saturate(130%);
    border-radius: 12px;
}

.pselected {
    color: #4de8ff;
    text-shadow: 0 0 12px rgba(77, 232, 255, 0.6), 0 0 24px rgba(0, 212, 255, 0.3);
    font-weight: 600;
    animation: morphGlow 2.5s ease-in-out infinite;
}

.cselected, .liked {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(77, 232, 255, 0.08) 100%);
    backdrop-filter: blur(12px) saturate(120%);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

/* Advanced Pagination */
.pag_btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px) saturate(130%);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pagselected, .pag_btn:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(77, 232, 255, 0.12) 100%);
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
}

/* Luxury Tags and Counts */
.gtag {
    background: linear-gradient(135deg, rgba(25, 35, 55, 0.9) 0%, rgba(15, 25, 45, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    color: #4de8ff;
    font-weight: 600;
    padding: 4px 12px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

/* Refined Borders */
.bborder {
    border-bottom: 1px solid rgba(0, 212, 255, 0.25);
}

.tborder {
    border-top: 1px solid rgba(0, 212, 255, 0.25);
}

.lborder, .ppanel {
    border-left: 1px solid rgba(0, 212, 255, 0.25);
}

.rborder {
    border-right: 1px solid rgba(0, 212, 255, 0.25);
}

.fborder {
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 16px;
}

/* Elite Float Elements */
.float_top {
    border-bottom: 2px solid rgba(0, 212, 255, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 212, 255, 0.05) 100%);
    backdrop-filter: blur(25px) saturate(150%);
}

.float_ctop {
    border-bottom: 2px solid rgba(0, 212, 255, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 212, 255, 0.05) 100%);
    backdrop-filter: blur(25px) saturate(150%);
}

/* Luxury Headers and Footers */
.bhead {
    background: linear-gradient(135deg, rgba(20, 30, 50, 0.98) 0%, rgba(30, 40, 60, 0.95) 50%, rgba(15, 25, 45, 0.98) 100%);
    backdrop-filter: blur(30px) saturate(160%);
    color: #e8f4ff;
    border-bottom: 3px solid rgba(0, 212, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.modal_top {
    background: linear-gradient(135deg, rgba(20, 30, 50, 0.98) 0%, rgba(30, 40, 60, 0.95) 100%);
    backdrop-filter: blur(30px) saturate(160%);
    color: #e8f4ff;
}

.pro_top {
    background: linear-gradient(135deg, rgba(20, 30, 50, 0.98) 0%, rgba(30, 40, 60, 0.95) 100%);
    backdrop-filter: blur(30px) saturate(160%);
    color: #e8f4ff;
}

.bfoot {
    background: linear-gradient(135deg, rgba(20, 30, 50, 0.98) 0%, rgba(30, 40, 60, 0.95) 50%, rgba(15, 25, 45, 0.98) 100%);
    backdrop-filter: blur(30px) saturate(160%);
    color: #e8f4ff;
    border-top: 3px solid rgba(0, 212, 255, 0.5);
}

.foot {
    background: linear-gradient(135deg, rgba(20, 30, 50, 0.98) 0%, rgba(30, 40, 60, 0.95) 100%);
    backdrop-filter: blur(30px) saturate(160%);
    color: #e8f4ff;
}

/* Ultra-Premium Background Elements */
.backglob {
    background: linear-gradient(135deg, rgba(25, 35, 55, 0.9) 0%, rgba(15, 25, 45, 0.95) 100%);
    backdrop-filter: blur(25px) saturate(140%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.back_chat {
    background: url('./images/bg.jpg') center/cover fixed, linear-gradient(135deg, rgba(12, 20, 35, 0.92) 0%, rgba(22, 30, 45, 0.88) 50%, rgba(8, 16, 30, 0.94) 100%);
    backdrop-filter: blur(20px) saturate(120%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.back_chat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00000045;
    border-radius: 20px;
    pointer-events: none;
}

.back_chat::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.15) 0%, transparent 50%), radial-gradient(circle at 70% 30%, rgba(77, 232, 255, 0.1) 0%, transparent 50%);
    border-radius: 20px;
    pointer-events: none;
}

.back_priv {
    background: linear-gradient(135deg, rgba(30, 40, 60, 0.9) 0%, rgba(20, 30, 50, 0.95) 100%);
    backdrop-filter: blur(22px) saturate(130%);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.back_panel {
    background: linear-gradient(135deg, rgba(25, 35, 55, 0.95) 0%, rgba(15, 25, 45, 0.98) 100%);
    backdrop-filter: blur(25px) saturate(140%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.back_menu {
    background: linear-gradient(135deg, rgba(35, 45, 65, 0.95) 0%, rgba(25, 35, 55, 0.98) 100%);
    backdrop-filter: blur(25px) saturate(140%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.back_pmenu {
    background: linear-gradient(135deg, rgba(25, 35, 55, 0.9) 0%, rgba(15, 25, 45, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(130%);
    border-radius: 16px;
}

.back_box {
    background: url('./images/secondary.bg') center/cover, linear-gradient(135deg, rgba(30, 40, 60, 0.92) 0%, rgba(20, 30, 50, 0.95) 100%);
    backdrop-filter: blur(22px) saturate(130%);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.back_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(77, 232, 255, 0.08) 0%, rgba(0, 212, 255, 0.05) 100%);
    pointer-events: none;
}

.back_input {
    background: linear-gradient(135deg, rgba(25, 35, 55, 0.85) 0%, rgba(15, 25, 45, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(120%);
    border-top: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 0 0 20px 20px;
}

.back_modal {
    background: linear-gradient(135deg, rgba(25, 35, 55, 0.98) 0%, rgba(15, 25, 45, 0.99) 100%);
    backdrop-filter: blur(30px) saturate(150%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.page_element {
    background: linear-gradient(135deg, rgba(30, 40, 60, 0.85) 0%, rgba(20, 30, 50, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(130%);
    border-radius: 20px;
    animation: floatUp 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.back_quote {
    background: linear-gradient(135deg, rgb(0 104 125 / 15%) 0%, rgb(4 134 153 / 8%) 100%);
    backdrop-filter: blur(12px) saturate(120%);
    border-left: 4px solid rgba(0, 212, 255, 0.8);
    border-radius: 12px;
    position: relative;
}


/* Advanced Theme Colors */
.theme_color {
    color: #4de8ff;
    text-shadow: 0 0 12px rgba(77, 232, 255, 0.4), 0 0 24px rgba(0, 212, 255, 0.2);
    font-weight: 600;
}

.default_color {
    color: #a8c8d8;
}

.error {
    color: #ff6b8a;
    text-shadow: 0 0 12px rgba(255, 107, 138, 0.4);
    font-weight: 500;
}

.success {
    color: #4ecdc4;
    text-shadow: 0 0 12px rgba(78, 205, 196, 0.4);
    font-weight: 500;
}

.warn {
    color: #ffbe76;
    text-shadow: 0 0 12px rgba(255, 190, 118, 0.4);
    font-weight: 500;
}

/* Ultra-Premium Button Colors */
.theme_btn, .back_theme {
    background: linear-gradient(135deg, #08bbd5 0%, #00b0d3 50%, #0099cc 100%);
    color: #fff;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 25px rgb(0 212 255 / 21%), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.theme_btn:hover, .back_theme:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: morphGlow 2s ease-in-out infinite;
}

.default_btn, .back_default {
    background: linear-gradient(135deg, rgba(60, 70, 90, 0.9) 0%, rgba(40, 50, 70, 0.95) 100%);
    backdrop-filter: blur(15px) saturate(120%);
    color: #e8f4ff;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.default_btn:hover, .back_default:hover {
    background: linear-gradient(135deg, rgba(80, 90, 110, 0.9) 0%, rgba(60, 70, 90, 0.95) 100%);
    transform: translateY(-2px);
}

.defaultd_btn {
    background: linear-gradient(135deg, rgba(70, 80, 100, 0.9) 0%, rgba(50, 60, 80, 0.95) 100%);
    backdrop-filter: blur(15px) saturate(120%);
    color: #e8f4ff;
    border-radius: 16px;
    transition: all 0.4s ease;
}

.ok_btn {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 50%, #26d0ce 100%);
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
    font-weight: 600;
    transition: all 0.4s ease;
}

.ok_btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(78, 205, 196, 0.5);
    animation: breathe 2s ease-in-out infinite;
}

.warn_btn {
    background: linear-gradient(135deg, #ffbe76 0%, #f39c12 50%, #e67e22 100%);
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(255, 190, 118, 0.4);
    font-weight: 600;
    transition: all 0.4s ease;
}

.warn_btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 190, 118, 0.5);
}

.delete_btn {
    background: linear-gradient(135deg, #ff6b8a 0%, #ee5a6f 50%, #d63031 100%);
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(255, 107, 138, 0.4);
    font-weight: 600;
    transition: all 0.4s ease;
}

.delete_btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 107, 138, 0.5);
    animation: pulse 1.5s ease-in-out infinite;
}

.send_btn {
    color: #e8f4ff;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(77, 232, 255, 0.15) 100%);
    backdrop-filter: blur(12px) saturate(130%);
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.4s ease;
}

.send_btn:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.4) 0%, rgba(77, 232, 255, 0.25) 100%);
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

/* Elite User Colors */
.user {
    color: #e8f4ff;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.chat_system {
    color: #a8c8d8;
    font-style: italic;
    opacity: 0.8;
}

.offline {
    opacity: 0.3;
    filter: grayscale(0.8) blur(0.5px);
    transition: all 0.4s ease;
}

/* Luxurious Menu Icons */
.menui {
    color: #4de8ff;
    filter: drop-shadow(0 0 8px rgba(77, 232, 255, 0.6)) drop-shadow(0 0 16px rgba(0, 212, 255, 0.3));
    transition: all 0.4s ease;
}

.menui:hover {
    transform: scale(1.2) rotate(10deg);
}

.subi {
    color: #4de8ff;
    filter: drop-shadow(0 0 8px rgba(77, 232, 255, 0.6));
    transition: all 0.4s ease;
}

/* Premium Wall and Posts */
.reply_item {
    background: linear-gradient(135deg, rgba(25, 35, 55, 0.7) 0%, rgba(15, 25, 45, 0.8) 100%);
    backdrop-filter: blur(15px) saturate(120%);
    border-radius: 16px;
    border-left: 4px solid rgba(0, 212, 255, 0.6);
    position: relative;
    transition: all 0.4s ease;
}

.reply_item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.reply_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #4de8ff, #00d4ff);
    border-radius: 0 16px 16px 0;
}

.main_post_item {
    color: rgba(232, 244, 255, 0.8);
    font-weight: 400;
}

.input_item {
    color: #a8c8d8;
    transition: all 0.3s ease;
}

.input_item:hover {
    color: #4de8ff;
}

/* Elite Private Messages */
.target_private, .hunt_quote {
    color: #e8f4ff;
    background: linear-gradient(135deg, rgba(80, 90, 110, 0.9) 0%, rgba(60, 70, 90, 0.95) 100%);
    backdrop-filter: blur(15px) saturate(120%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.target_private:hover, .hunt_quote:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.15);
}

.hunter_private, .targ_quote {
    color: #e8f4ff;
    background: linear-gradient(135deg, rgba(50, 60, 80, 0.9) 0%, rgba(30, 40, 60, 0.95) 100%);
    backdrop-filter: blur(15px) saturate(120%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

/* Ultra-Modern Chat Quotes */
.cquote {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(77, 232, 255, 0.08) 100%) !important;
    backdrop-filter: blur(12px) saturate(120%);
    border-left: 4px solid rgba(0, 212, 255, 0.8);
    border-radius: 12px;
    position: relative;
    margin: 8px 0;
    padding: 6px 16px;
}



.cqname {
    color: #4de8ff;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(77, 232, 255, 0.3);
}

.cqmess {
    color: #c8e8f8;
    font-weight: 400;
}

/* Refined Tab Menu */
.tab_menu {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 212, 255, 0.15);
    background: linear-gradient(135deg, rgba(25, 35, 55, 0.95) 0%, rgba(15, 25, 45, 0.98) 100%);
    backdrop-filter: blur(20px) saturate(140%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tab_selected {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(77, 232, 255, 0.1) 100%);
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: neuralPulse 3s ease-in-out infinite;
}

/* Elite Modal Menu */
.modal_mback {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 212, 255, 0.04) 100%);
    backdrop-filter: blur(12px) saturate(120%);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.modal_mback:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.modal_mborder {
    border-bottom: 1px solid rgba(0, 212, 255, 0.25);
}

.modal_selected {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(77, 232, 255, 0.1) 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.modal_back {
    background: linear-gradient(135deg, rgb(0 0 0 / 41%) 0%, rgb(10 15 30 / 64%) 100%);
    backdrop-filter: blur(7px) saturate(80%);
}

/* Premium Chat Logs */
.log2 {
    background: linear-gradient(135deg, rgb(0 28 35 / 64%) 0%, rgb(0 55 63 / 59%) 100%)!important;
    backdrop-filter: blur(8px) saturate(110%);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.chat_log {background: linear-gradient(3deg, rgb(0 45 51 / 66%) 0%, rgb(2 62 52 / 28%) 100%);backdrop-filter: blur(8px) saturate(110%);}

.topic_log {
    background: linear-gradient(135deg, rgba(20, 60, 40, 0.9) 0%, rgba(13, 38, 26, 0.95) 100%);
    color: #d9f2e6;
    border-radius: 12px;
    backdrop-filter: blur(15px) saturate(120%);
    border: 1px solid rgba(78, 205, 196, 0.3);
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.2);
}

.sys_log {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(200, 200, 200, 0.02) 100%);
    border-radius: 8px;
    backdrop-filter: blur(8px);
}

/* Advanced Progress and Notifications */
.bprogress {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 50%, #26d0ce 100%);
    color: #fff;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4);
    position: relative;
    overflow: hidden;
}

.bprogress::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.bnotify {
    background: linear-gradient(135deg, #ff6b8a 0%, #ee5a6f 50%, #d63031 100%);
    color: #fff;
    border-radius: 25px;
    animation: morphGlow 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(255, 107, 138, 0.4);
}

.foot_notify, .head_notify {
    border: 2px solid rgba(0, 212, 255, 0.6);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(77, 232, 255, 0.08) 100%);
    backdrop-filter: blur(8px) saturate(120%);
    animation: pulse 2s ease-in-out infinite;
}

/* Refined Date and Text */
.sub_date {
    color: #a8c8d8;
    font-size: 0.85em;
    font-weight: 400;
    opacity: 0.8;
}

.sub_chat, .sub_priv {
    color: #98b8c8;
    font-weight: 300;
}

.sub_text, .list_mood {
    color: #a8c8d8;
    font-weight: 400;
}

.plikes {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(77, 232, 255, 0.1) 100%);
    backdrop-filter: blur(12px) saturate(120%);
    color: #e8f4ff;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    font-weight: 600;
}

/* Elite Spinner */
.bspin {
    color: rgba(77, 232, 255, 0.8);
    animation: quantumSpin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    filter: drop-shadow(0 0 8px rgba(77, 232, 255, 0.4));
}

/* Ultra-Special Chat Items */
.my_notice {
    color: #fff;
    background: linear-gradient(135deg, rgba(0, 130, 180, 0.95) 0%, rgba(0, 170, 220, 0.9) 50%, rgba(0, 150, 200, 0.95) 100%);
    backdrop-filter: blur(15px) saturate(130%);
    border-radius: 16px;
    border-left: 4px solid #4de8ff;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    position: relative;
}

.my_notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #4de8ff, #00d4ff);
    border-radius: 0 16px 16px 0;
}

.system_text {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(200, 220, 240, 0.05) 100%);
    backdrop-filter: blur(10px) saturate(110%);
    color: #a8c8d8;
    border-radius: 12px;
    font-style: italic;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.system_text:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(255, 255, 255, 0.1) 100%);
}

/* Premium Pages */
.back_page {
    background: radial-gradient(ellipse at top, rgba(15, 25, 45, 1) 0%, rgba(8, 15, 30, 1) 50%, rgba(2, 8, 20, 1) 100%), linear-gradient(135deg, #0a0f1e 0%, #1a2040 25%, #0f1a35 50%, #051020 100%);
    color: #e8f4ff;
    min-height: 100vh;
}

.post_video {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 15, 25, 0.9) 100%);
    backdrop-filter: blur(8px) saturate(80%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Ultra-Modern Slider */
.boom_slider .ui-widget-content {
    background: linear-gradient(135deg, rgba(60, 70, 90, 0.8) 0%, rgba(40, 50, 70, 0.9) 100%);
    backdrop-filter: blur(12px) saturate(120%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.boom_slider .ui-state-default {
    background: linear-gradient(135deg, #4de8ff 0%, #00d4ff 100%) !important;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4), 0 0 20px rgba(77, 232, 255, 0.3);
    transition: all 0.4s ease;
}

.boom_slider .ui-state-default:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

.boom_slider .ui-state-active {
    background: linear-gradient(135deg, #4de8ff 0%, #00d4ff 100%) !important;
    transform: scale(1.15);
    animation: morphGlow 2s ease-in-out infinite;
}

.boom_slider .ui-slider-range {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.8) 0%, rgba(77, 232, 255, 0.6) 50%, rgba(0, 150, 200, 0.7) 100%);
    border-radius: 12px;
}

/* Elite Select Input */
.selectboxit-list, .selectboxit-btn {
    background: linear-gradient(135deg, rgba(25, 35, 55, 0.9) 0%, rgba(15, 25, 45, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(130%);
    border: 1px solid rgba(0, 212, 255, 0.25);
    color: #e8f4ff;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-weight: 500;
}

.selectboxit-list .selectboxit-focus .selectboxit-option-anchor {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(77, 232, 255, 0.15) 100%);
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.selectboxit-default-arrow {
    border-top: 6px solid #4de8ff;
    filter: drop-shadow(0 0 4px rgba(77, 232, 255, 0.4));
}

.selectboxit-btn.selectboxit-enabled:hover, .selectboxit-btn.selectboxit-enabled:focus, .selectboxit-btn.selectboxit-enabled:active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    color: #fff;

}

.selectboxit-options {
    background: linear-gradient(135deg, rgba(30, 40, 60, 0.98) 0%, rgba(20, 30, 50, 0.99) 100%);
    backdrop-filter: blur(25px) saturate(140%);
    color: #e8f4ff;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 4px 15px rgba(0, 212, 255, 0.2);
}

.selectboxit-list .selectboxit-option-anchor {
    color: #c8e8f8;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 10px;
    font-weight: 400;
}

.selectboxit-list .selectboxit-option-anchor:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(77, 232, 255, 0.1) 100%);
    color: #fff;
}

/* Ultra-Custom Modal */
.modal_in {
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 212, 255, 0.02) 100%);
    backdrop-filter: blur(25px) saturate(140%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.modal_in:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.06) 0%, rgba(255, 255, 255, 0.08) 100%);
}
