:root {
    /* Red Supernova Bright - Unified Palette */
    --bg-color: #0f0202;
    --bg-secondary: #1a0808;
    --bg-light: #2a0505;
    --bg-soft: #450a0a;
    
    /* Card & Surface Colors */
    --card-white: #1a0808;
    --card-elevated: #2a0505;
    --card-hover: #3a0707;
    
    /* Primary Red Spectrum */
    --red-primary: #ff4444;
    --red-medium: #ff6666;
    --red-light: #ff8888;
    --red-accent: #ffaaaa;
    --red-pale: #ffc8c8;
    --red-dark: #d63838;
    --red-darker: #a82828;
    
    /* Text Colors */
    --text-first: #ffffff;
    --text-second: #ffe8e8;
    --text-muted: #ffb8b8;
    --text-dark: #ff8888;
    --text-medium: #ff6666;
    --text-light: #ff4444;
    --text-red: #ffc8c8;
    
    /* Supporting Colors */
    --white-pure: #ffffff;
    --gray-light: #2a0505;
    --gray-border: #450a0a;
    --gray-soft: #6b0f0f;
    
    /* Gradients - Vibrant & Professional */
    --gradient-red: linear-gradient(135deg, #d63838 0%, #ff6666 50%, #ff8888 100%);
    --gradient-bright: linear-gradient(135deg, #ff6666 0%, #ff8888 50%, #ffaaaa 100%);
    --gradient-soft: linear-gradient(135deg, #a82828 0%, #d63838 100%);
    --gradient-card: linear-gradient(145deg, #1a0808 0%, #2a0505 100%);
    
    /* Shadows - Enhanced with Red Glow */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-sm: 0 2px 6px rgba(214, 56, 56, 0.2), 0 0 10px rgba(255, 68, 68, 0.1);
    --shadow-md: 0 4px 12px rgba(214, 56, 56, 0.3), 0 0 20px rgba(255, 68, 68, 0.15);
    --shadow-lg: 0 8px 20px rgba(214, 56, 56, 0.4), 0 0 30px rgba(255, 68, 68, 0.2);
    --shadow-glow: 0 0 25px rgba(255, 68, 68, 0.3);
    --shadow-glow-strong: 0 0 35px rgba(255, 102, 102, 0.4);
}

/* === GLOBAL BODY === */
body {
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
    color: var(--text-first);
}

/* === POPUP STYLES === */
.popup-container {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 1000;
    background: rgba(15, 2, 2, 0.92);
    backdrop-filter: blur(8px);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.popup-body {
    width: 359px;
    height: 589px;
    margin: 2% auto;
    background: linear-gradient(145deg, var(--card-white) 0%, var(--bg-soft) 100%);
    border-radius: 20px;
    border: 2px solid var(--red-dark);
    color: var(--text-first);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 512px) {
    .popup-body {
        width: 310px;
        margin: 10% auto;
    }
}

.popup-img {
    width: 450px;
    height: 555px;
    margin: 8% auto;
    border-radius: 16px;
    border: 2px solid var(--red-dark);
    box-shadow: var(--shadow-lg);
}

.popup-img-close {
    cursor: pointer;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--card-elevated) 0%, var(--bg-soft) 100%);
    color: var(--red-primary);
    float: right;
    padding: 5px;
    border-radius: 50%;
    position: absolute;
    margin-left: -7px;
    margin-top: -20px;
    border: 3px solid var(--red-primary);
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-img-close:hover {
    background: var(--gradient-red);
    color: white;
    transform: scale(1.15) rotate(90deg);
    box-shadow: var(--shadow-glow-strong);
    border-color: var(--red-light);
}

@media (min-width: 993px) {
    .popup-img-close {
        margin-left: 42px;
        margin-top: -12px;
    }
}

.popup-header {
    height: 52px;
    width: 100%;
    background: var(--gradient-red);
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    float: left;
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
    position: relative;
    overflow: hidden;
}

.popup-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.popup-header h6 {
    margin: 16px;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.popup-content {
    width: 100%;
    height: auto;
    padding: 12px 39px;
    float: left;
    font-size: 14px;
    color: var(--text-second);
}

.col2 {
    width: 50%;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.mrtop10 {
    margin-top: 10px;
}

.hr {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--red-dark) 50%, transparent 100%);
    float: left;
    box-shadow: 0 1px 3px rgba(255, 68, 68, 0.2);
}

.popup-label {
    width: 100%;
    float: left;
    background: linear-gradient(135deg, var(--bg-soft) 0%, var(--card-elevated) 100%);
    padding: 12px 16px;
    font-size: 13px;
    border: 2px solid var(--gray-border);
    border-radius: 10px;
    color: var(--text-second);
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.popup-label:hover {
    border-color: var(--red-dark);
    box-shadow: var(--shadow-md);
}

.popup-close {
    cursor: pointer;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--card-elevated) 0%, var(--bg-soft) 100%);
    color: var(--red-primary);
    float: right;
    padding: 5px;
    border-radius: 50%;
    position: absolute;
    margin-top: -10px;
    z-index: 100;
    margin-left: -9px;
    border: 3px solid var(--red-primary);
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background: var(--gradient-red);
    color: white;
    transform: scale(1.15) rotate(90deg);
    box-shadow: var(--shadow-glow-strong);
    border-color: var(--red-light);
}

.bg-blue-button {
    background: var(--gradient-red);
}

.bg-black-button {
    background: var(--gradient-soft);
}

.popip-button {
    cursor: pointer;
    width: 50%;
    float: left;
    height: 44px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-first);
    position: relative;
    overflow: hidden;
}

.popip-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.popip-button:hover::before {
    width: 300px;
    height: 300px;
}

.popip-button:hover {
    background: var(--gradient-bright);
    color: white;
    box-shadow: var(--shadow-glow);
}

/* === SLIDESHOW CONTAINER === */
.slideshow-images-container {
    max-width: 100%;
    position: relative;
    margin: auto;
    margin-bottom: 6px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--red-dark);
    box-shadow: var(--shadow-md);
}

.slideshow-images {
    display: none;
}

.prev-slideshow-images,
.next-slideshow-images {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: var(--text-first);
    font-weight: bold;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    user-select: none;
    background: linear-gradient(135deg, var(--bg-soft) 0%, var(--card-elevated) 100%);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--red-dark);
    z-index: 10;
}

.next-slideshow-images {
    right: 8px;
}

.prev-slideshow-images {
    left: 8px;
}

.prev-slideshow-images:hover,
.next-slideshow-images:hover {
    background: var(--gradient-red);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
    border-color: var(--red-primary);
}

.text-slideshow-images {
    color: var(--text-first);
    font-size: 15px;
    padding: 10px 16px;
    position: absolute;
    bottom: 8px;
    width: calc(100% - 16px);
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 8, 8, 0.95) 0%, rgba(42, 5, 5, 0.95) 100%);
    border-radius: 10px;
    margin: 0 8px;
    border: 1px solid var(--red-dark);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.numbertext-slideshow-images {
    color: var(--red-primary);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
    position: absolute;
    background: linear-gradient(135deg, rgba(26, 8, 8, 0.95) 0%, rgba(42, 5, 5, 0.95) 100%);
    border-radius: 8px;
    top: 8px;
    left: 8px;
    border: 2px solid var(--red-dark);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.dot-slideshow-images {
    cursor: pointer;
    height: 14px;
    width: 14px;
    margin: 0 5px;
    background: linear-gradient(135deg, var(--bg-soft) 0%, var(--gray-soft) 100%);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--red-dark);
    box-shadow: var(--shadow-xs);
}

.active-slideshow-images,
.dot-slideshow-images:hover {
    background: var(--gradient-red);
    transform: scale(1.3);
    box-shadow: var(--shadow-glow);
    border-color: var(--red-primary);
}

.fade-slideshow-images {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: 0.3;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade {
    from {
        opacity: 0.3;
    }
    to {
        opacity: 1;
    }
}

@media (min-width: 993px) {
    .numbertext-slideshow-images {
        top: 8px;
    }
}

@media (max-width: 425px) {
    .popup-img {
        max-width: 93%;
        margin: 25% auto;
    }
}

/* === HEADER === */
.header {
    width: 100%;
    height: 68px;
    margin-bottom: 6px;
    background: linear-gradient(180deg, var(--card-white) 0%, var(--bg-secondary) 100%);
    border-bottom: 2px solid var(--red-dark);
    position: fixed;
    z-index: 300;
    box-shadow: var(--shadow-md), 0 4px 15px rgba(255, 68, 68, 0.1);
}

.images-logo {
    padding: 3px;
    width: 122px;
    height: 43px;
    float: left;
    margin-top: 12px;
    filter: drop-shadow(0 2px 8px rgba(255, 68, 68, 0.3));
    transition: all 0.3s ease;
}

.images-logo:hover {
    filter: drop-shadow(0 4px 12px rgba(255, 68, 68, 0.5));
    transform: scale(1.05);
}

.header .title {
    float: right;
    width: auto;
    height: auto;
    margin: 18px;
    border-radius: 42px;
}

.red {
    background: var(--gradient-red);
}

.blue {
    background: var(--gradient-bright);
}

.header-buttom {
    color: white;
    padding: 8px 16px;
    height: 44px;
    border-radius: 42px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.header-buttom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.header-button-text {
    font-size: 14px;
    margin: 8px;
    float: left;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.popup-container-ads {
    background: url(assets/popup.html);
    background-repeat: no-repeat;
    margin: 10% auto;
    border-radius: 20px;
    background-size: 100%;
}

@media (max-width: 992px) {
    .header .title {
        display: none;
    }

    .col {
        flex-basis: auto;
    }

    .header-button-text {
        font-size: 12px;
        margin: 10px;
    }
}

/* === MENU NAVIGATION BOTTOM === */
.menu-bottom {
    display: none;
    height: 78px;
    width: 100vw;
    position: fixed;
    bottom: 0;
    border-top: 3px solid var(--red-primary);
    background: linear-gradient(180deg, var(--card-white) 0%, var(--bg-secondary) 100%);
    box-shadow: 0 -4px 20px rgba(139, 26, 26, 0.4), 0 -2px 10px rgba(255, 68, 68, 0.2);
    z-index: 999;
}

.sub-menu-bottom {
    width: 25vw;
    height: 100%;
    float: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sub-menu-bottom::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-red);
    transition: height 0.3s ease;
}

.sub-menu-bottom:hover::before {
    height: 100%;
}

.sub-menu-bottom:hover {
    background: transparent;
}

.icon-menu {
    width: 30px;
    height: 30px;
    margin: 8px;
    filter: brightness(0) saturate(100%) invert(45%) sepia(98%) saturate(3500%) hue-rotate(340deg) brightness(105%) contrast(105%);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.sub-menu-bottom:hover .icon-menu {
    filter: brightness(0) saturate(100%) invert(100%);
    transform: scale(1.1);
}

.text-menu {
    font-size: 12px;
    padding: 0px;
    margin: 0px;
    color: var(--red-primary);
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.sub-menu-bottom:hover .text-menu {
    color: white;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

@media (max-width: 992px) {
    .menu-bottom {
        display: block;
    }
}

@media (min-width: 768px) {
    .menu-bottom {
        height: 85px;
    }
}

/* === NAVBAR SEARCH === */
.navbar-search {
    height: 54px;
    width: 100%;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-secondary) 100%);
    border-bottom: 1px solid var(--gray-border);
    box-shadow: var(--shadow-xs);
}

.search-button {
    background: var(--gradient-red);
    border: none;
    color: white;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 24px;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.search-button:hover {
    background: var(--gradient-bright);
    transform: translateX(-2px);
    box-shadow: var(--shadow-glow);
}

.input-search {
    background: var(--card-elevated);
    border: 2px solid var(--gray-border);
    border-right: none;
    color: var(--text-first);
    padding: 12px 18px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: all 0.3s ease;
}

.input-search:focus {
    outline: none;
    border-color: var(--red-primary);
    background: var(--card-white);
    box-shadow: var(--shadow-glow);
}

.input-search::placeholder {
    color: var(--text-muted);
}

.search-besar {
    display: block;
}

.search-kecil {
    display: none;
    height: auto;
}

#running_text_header {
    display: flex;
}

.btn-title {
    bottom: 85px;
    position: absolute;
    width: 100%;
    text-align: center;
    color: var(--text-first);
    font-size: 16px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

#header-besar {
    display: block;
}

#header-kecil {
    display: none;
}

p {
    margin: 0px;
}

/* === POPUP FILTER === */
#popup-container-filter {
    overflow-y: scroll;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 12220000;
    background: rgba(15, 2, 2, 0.94);
    backdrop-filter: blur(12px);
    top: 0;
}

.title-filter {
    color: var(--red-primary);
    text-align: center;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(255, 68, 68, 0.5);
}

.container-demo {
    width: 650px;
    background: linear-gradient(145deg, var(--card-white) 0%, var(--bg-soft) 100%);
    margin: 4% auto;
    height: auto;
    border: 2px solid var(--red-dark);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.iframe-demo {
    border: 0px;
    width: 650px;
    height: 451px;
    border-radius: 0 0 18px 18px;
}

.header-demo {
    background: linear-gradient(135deg, var(--bg-soft) 0%, var(--card-elevated) 100%);
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    border-bottom: 2px solid var(--red-dark);
    padding: 12px;
}

.btn-fullscreen {
    margin: 6px;
    position: initial;
    width: auto;
    font-size: 13px;
    height: auto;
    border-radius: 10px;
    background: var(--gradient-red);
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.btn-fullscreen:hover {
    background: var(--gradient-bright);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.footer-demo {
    display: block;
}

.btn-popup-demoplay {
    height: auto;
    font-size: 14px;
    padding: 0px 20px;
    margin-bottom: 6px;
}

.popup-body-ads-yt {
    width: 606px;
    height: 390px;
    margin: 8% auto;
    padding: 24px;
    background: linear-gradient(145deg, var(--card-white) 0%, var(--bg-soft) 100%);
    border-radius: 20px;
    border: 2px solid var(--red-dark);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 992px) {
    .slot .slot-sidebar {
        float: left;
        width: 100%;
        flex: 0 0 20%;
        max-width: 100%;
        margin-top: 5px;
        background: var(--bg-light);
    }

    .search-besar {
        display: none;
    }

    .search-kecil {
        display: block;
    }

    .images-logo {
        width: 107px;
        height: 42px;
        float: left;
        margin-top: 10px;
    }

    #running_text_header {
        display: none;
    }

    .hover-btn {
        opacity: 1;
    }

    .btn-title {
        bottom: 30px;
        position: absolute;
        width: 100%;
        text-align: center;
        color: var(--text-first);
        font-size: 12px;
    }

    .play-btn {
        display: none;
        font-size: 12px;
        text-decoration: none;
        color: white;
        text-align: center;
        align-items: center;
        width: 100%;
        padding: 4px;
        background: var(--gradient-red);
        bottom: 22px;
        position: absolute;
        font-weight: 600;
    }

    .demo-btn {
        background: var(--gradient-soft);
        bottom: 45px;
        height: auto;
        color: white;
    }

    #header-besar {
        display: none;
    }

    #header-kecil {
        display: block;
    }

    .container-demo {
        width: 95%;
        background: linear-gradient(145deg, var(--card-white) 0%, var(--bg-soft) 100%);
        margin: 1% auto;
        height: auto;
    }

    .iframe-demo {
        border: 0px;
        width: 95vw;
        height: 82vh;
    }

    .footer-demo {
        display: none;
    }

    .popup-body-ads-yt {
        width: 100%;
        height: 40%;
        margin: 20% auto;
    }
}

/* === SLIDESHOW TEXT === */
.slideshow-containerText {
    position: relative;
    background: linear-gradient(135deg, var(--bg-soft) 0%, var(--card-elevated) 100%);
    border-radius: 12px;
    padding: 8px;
    border: 2px solid var(--red-dark);
    box-shadow: var(--shadow-md);
}

.mySlidesText {
    display: none;
    padding: 14px 38px;
    text-align: center;
    color: var(--text-first);
}

.prevText,
.nextText {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -30px;
    padding: 18px;
    color: var(--text-first);
    font-weight: bold;
    font-size: 20px;
    border-radius: 10px;
    user-select: none;
    background: linear-gradient(135deg, var(--bg-soft) 0%, var(--card-elevated) 100%);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--red-dark);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nextText {
    position: absolute;
    right: 8px;
}

.prevText {
    left: 8px;
}

.prevText:hover,
.nextText:hover {
    background: var(--gradient-red);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
    border-color: var(--red-primary);
}

.activeText {
    background: var(--gradient-bright);
}

.sliderTextTitle {
    color: var(--text-first);
    font-weight: 700;
}

/* === SCROLLBAR === */
@media (max-width: 600px) {
    ::-webkit-scrollbar {
        display: none;
    }
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-left: 1px solid var(--red-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--red-dark) 0%, var(--red-primary) 100%);
    border-radius: 6px;
    border: 2px solid var(--bg-color);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--red-primary) 0%, var(--red-medium) 100%);
    box-shadow: var(--shadow-glow);
}

/* === FILTER & PROVIDER === */
.logo-filter-kecil {
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    height: 32px;
    width: 34px;
    background-size: 22px;
    filter: brightness(1.2);
}

.btn-provider {
    background: linear-gradient(135deg, var(--card-elevated) 0%, var(--bg-soft) 100%);
    border: 2px solid var(--gray-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--red-primary);
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 600;
    box-shadow: var(--shadow-xs);
}

.btn-provider:active,
.btn-provider:focus {
    background: var(--gradient-soft);
    border-color: var(--red-primary);
    color: var(--text-first);
    box-shadow: var(--shadow-glow);
}

.btn-provider:hover {
    border-color: var(--red-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.container-tmp {
    padding-top: 85px;
}

.logo-profider-kecil {
    background-size: 16px;
    background-color: var(--red-primary);
    height: 28px;
    display: block;
    background-repeat: no-repeat;
    width: 28px;
    float: right;
    background-position: center;
    border-radius: 6px;
    box-shadow: var(--shadow-xs);
}

.bg-black {
    width: 24%;
    background: linear-gradient(145deg, var(--card-white) 0%, var(--card-elevated) 100%);
    margin: 4px;
    border: 2px solid var(--gray-border);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-xs);
}

.bg-black:hover {
    border-color: var(--red-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 992px) {
    .bg-black {
        width: 31.5%;
    }
}

.bg-transparan {
    background: transparent;
}

.text-wrap {
    font-size: 14px;
    word-break: break-all;
    white-space: normal;
    text-transform: capitalize;
    color: var(--text-second);
}

/* === RATING COLORS === */
.colors span {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    box-shadow: var(--shadow-xs);
    transition: all 0.3s ease;
}

.colors span:hover {
    transform: scale(1.2);
    box-shadow: var(--shadow-sm);
}

.colors span .red {
    background: var(--red-primary);
}

.colors span .green {
    background: #10b981;
}

.colors span .yellow {
    background: #fbbf24;
    color: black;
}

.ratings i {
    color: #fbbf24;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* === CUSTOM BUTTONS === */
.btn-pola-main-custom {
    width: 100%;
    height: 40px;
    padding: 2px;
    background: var(--gradient-red);
    border: none;
    font-size: 14px;
    color: white;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.btn-pola-main-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-pola-main-custom:hover::before {
    width: 300px;
    height: 300px;
}

.btn-pola-main-custom:hover {
    background: var(--gradient-bright);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* === IMAGE CONTAINERS === */
.img-100 {
    width: 100%;
}

.img-50 {
    width: 50%;
}

.image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--gray-border);
    transition: all 0.3s ease;
}

.image-container:hover {
    border-color: var(--red-primary);
    box-shadow: var(--shadow-glow);
}

.thumbnail-image {
    border-radius: 12px;
    transition: all 0.3s ease;
}

.image-container:hover .thumbnail-image {
    transform: scale(1.05);
}

.discount {
    background: var(--gradient-red);
    padding: 3px 8px;
    font-size: 11px;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.wishlist {
    height: 28px;
    width: 28px;
    background: linear-gradient(135deg, var(--card-elevated) 0%, var(--bg-soft) 100%);
    border: 2px solid var(--red-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.wishlist:hover {
    background: var(--gradient-red);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.first {
    position: absolute;
    width: 100%;
    padding: 6px;
}

.dress-name {
    font-size: 14px;
    font-weight: bold;
    width: 75%;
    margin-bottom: 0px;
    text-align: left;
    color: var(--text-first);
}

.rating-star {
    font-size: 11px;
    color: #fbbf24;
}

.rating-number {
    font-size: 11px;
    color: var(--text-muted);
}

.buy {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-second);
}

/* === VOUCHERS === */
.voutchers {
    border: none;
    border-radius: 12px;
    width: 100%;
    overflow: hidden;
    background: var(--gradient-red);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.voutchers:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.voutcher-divider {
    display: flex;
}

.voutcher-left {
    width: 65%;
    padding: 10px;
}

.voutcher-name {
    color: var(--text-first);
    font-size: 10px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.voutcher-code {
    color: white;
    font-size: 11px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.voutcher-right {
    width: 35%;
    color: #fff;
    background: var(--gradient-bright);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.discount-percent {
    font-size: 11px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.off {
    font-size: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.border-top {
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
}

/* === SEMI CONTAINER === */
.semi-container {
    width: 100%;
    height: auto;
}

.container-semi-text {
    padding: 8px;
    color: var(--text-first);
    font-size: 13px;
}

.cs-height {
    height: 130px;
}

@media (max-width: 992px) {
    .cs-height {
        max-height: 95px;
    }
}

/* === ANIMATIONS === */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* === ACCESSIBILITY === */
*:focus {
    outline: 3px solid var(--red-primary);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(255, 68, 68, 0.2);
}

*:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

/* === SELECTION STYLING === */
::selection {
    background: var(--red-dark);
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}