        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

        @font-face {
    font-family: 'Cooper Black';
    src: url('/fonts/Cooper-Black.woff2') format('woff2'); /* Tiyaking tama ang file name */
    font-weight: normal;
    font-style: normal;
}

        body {
            font-family: 'Poppins', sans-serif; /* ITO ANG NAGBAGO */
            background-color: #010101;
            color: #ffffff;
            margin: 0;
            padding: 0px;
        }

        header {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 25px;
            box-sizing: border-box;

            margin-top: 80px;
        }

        body.modal-open {
            overflow: hidden !important;
        }

        header h1 {
            font-size: 2.5em;
            font-weight: bold;
            color: #fff;

            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
        }

        ::-webkit-scrollbar {
            width: 12px;
            height: 12px;
        }

        ::-webkit-scrollbar-track {
            background: #1a1a1a;
        }

        ::-webkit-scrollbar-thumb {
            background-color: #444;
            border: 2px solid #1a1a1a;

            border-radius: 0px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background-color: #335FFF;
        }

        ::-webkit-scrollbar-button {
            display: none;
        }

        .h1-logo {
            height: 45px;
            filter: brightness(0) invert(1);
        }

        main {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 25px;
            box-sizing: border-box;
        }

        #navbar-iframe {
            display: none !important;
            visibility: hidden !important;
        }

        ::selection {
            background-color: #335FFF;
            color: #ffffff;
        }

        ::-moz-selection {
            background-color: #335FFF;
            color: #ffffff;
        }

        * {
            -webkit-tap-highlight-color: transparent;
        }

        .logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .logo {
            height: 40px;
        }

        .tiktok-logo {
            filter: brightness(0) invert(1);
        }

        .collab-x {
            font-size: 24px;
            font-weight: bold;
            color: #555;
        }

        header h1 {
            font-size: 2.5em;
            font-weight: bold;
            color: #fff;
        }

        .voting-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            flex-wrap: wrap;
            gap: 20px;
            padding: 0 20px;
            box-sizing: border-box;
        }

        .hidden {
            display: none !important;
        }

        .voting-container {
            animation: fadeIn 0.8s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

       @keyframes animated-gradient {
    to {
        background-position: 200% center;
    }
}

.tiktoker-card {
    position: relative;
    border: 2px solid transparent; 
    border-radius: 10px; /* ITO ANG IDINAGDAG */
    background: linear-gradient(#1a1a1a, #1a1a1a) padding-box,
                linear-gradient(to right, #fff, #888) border-box;
    background-size: 200% auto;
    animation: animated-gradient 3s linear infinite;
        transition: transform 0.3s ease, box-shadow 0.3s ease;

}

/* --- Mga Specific na Kulay at Glow --- */

/* YELLOW TEXT -> Pink & Yellow Border */
[data-id="ashley"],
[data-id="caprice"],
[data-id="princess"],
[data-id="sofia"],
[data-id="waynona"] {
    background: linear-gradient(#1a1a1a, #1a1a1a) padding-box,
                linear-gradient(90deg, #F2C521, #FF69B4, #F2C521) border-box;
    background-size: 200% auto;
    animation: animated-gradient 3s linear infinite;
    box-shadow: 0 0 12px #f2c52188; /* Ito ang glow effect */
}

/* BLUE TEXT -> Blue & Sky Blue Border */
[data-id="clifford"],
[data-id="lee"],
[data-id="heath"],
[data-id="marco"],
[data-id="anton"] {
    background: linear-gradient(#1a1a1a, #1a1a1a) padding-box,
                linear-gradient(90deg, #3559ED, #87CEEB, #3559ED) border-box;
    background-size: 200% auto;
    animation: animated-gradient 3s linear infinite;
    box-shadow: 0 0 12px #3559ed88;
}

/* GREEN TEXT -> Blue & Green Border */
[data-id="fred"],
[data-id="inigo"],
[data-id="joaquin"],
[data-id="miguel"],
[data-id="rave"] {
    background: linear-gradient(#1a1a1a, #1a1a1a) padding-box,
                linear-gradient(90deg, #00BB3A, #3559ED, #00BB3A) border-box;
    background-size: 200% auto;
    animation: animated-gradient 3s linear infinite;
    box-shadow: 0 0 12px #00bb3a88;
}

/* ORANGE TEXT -> Yellow & Orange Border */
[data-id="reich"],
[data-id="lella"],
[data-id="carmelle"],
[data-id="krystal"],
[data-id="eliza"] {
    background: linear-gradient(#1a1a1a, #1a1a1a) padding-box,
                linear-gradient(90deg, #FF6419, #F2C521, #FF6419) border-box;
    background-size: 200% auto;
    animation: animated-gradient 3s linear infinite;
    box-shadow: 0 0 12px #ff641988;
}

[data-id="ashley"]:hover,
[data-id="caprice"]:hover,
[data-id="princess"]:hover,
[data-id="sofia"]:hover,
[data-id="waynona"]:hover {
    box-shadow: 0 0 15px 4px #f2c52180; /* Mas pino na glow */
}

/* Blue Glow */
[data-id="clifford"]:hover,
[data-id="lee"]:hover,
[data-id="heath"]:hover,
[data-id="marco"]:hover,
[data-id="anton"]:hover {
box-shadow: 0 0 15px 4px #3559ed80;
}

/* Green Glow */
[data-id="fred"]:hover,
[data-id="inigo"]:hover,
[data-id="joaquin"]:hover,
[data-id="miguel"]:hover,
[data-id="rave"]:hover {
box-shadow: 0 0 15px 4px #00bb3a80;
}

/* Orange Glow */
[data-id="reich"]:hover,
[data-id="lella"]:hover,
[data-id="carmelle"]:hover,
[data-id="krystal"]:hover,
[data-id="eliza"]:hover {
box-shadow: 0 0 15px 4px #ff641980;
}

        .tiktoker-card:hover {
    transform: scale(1.03); /* ITO ANG BAGONG ANIMATION */
}

        .blur-circle {
            position: absolute;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            filter: blur(60px);
            z-index: 1;
        }

        .blur-circle.red {
            background-color: rgba(0, 0, 0, 0.3);
            top: -75px;
            right: -75px;
            animation: moveRedCircle 4s linear infinite alternate;
        }

        .blur-circle.blue {
            background-color: #335fff33;
            bottom: -75px;
            left: -75px;
            animation: moveBlueCircle 5s linear infinite alternate;
        }

        @keyframes moveRedCircle {
            from {
                transform: translate(0, 0);
            }

            to {
                transform: translate(-30px, 30px);
            }
        }

        @keyframes moveBlueCircle {
            from {
                transform: translate(0, 0);
            }

            to {
                transform: translate(30px, -30px);
            }
        }

        .voting-container,
        .skeleton-container {
            grid-template-columns: repeat(5, 1fr);
        }

        @media (max-width: 1200px) {

            .voting-container,
            .skeleton-container {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 992px) {

            .voting-container,
            .skeleton-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {

            .voting-container,
            .skeleton-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {

            .voting-container,
            .skeleton-container {
                grid-template-columns: 1fr;
            }
        }

        .card-content {
            position: relative;
            z-index: 2;
            padding: 16px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .card-image-wrapper {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 12px;
        }

        .card-image-wrapper::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;

            background: linear-gradient(to top right, #0b0b0bc6 25%, transparent 60%);
            background-repeat: no-repeat;
            background-position: bottom left;
            background-size: 55% 55%;

            z-index: 1;
            pointer-events: none;
        }

        .tiktoker-rank {
            position: absolute;
            bottom: 8px;
            left: 12px;
            z-index: 2;
            color: #ffffff;
            font-size: 1.3em;
            font-weight: 700;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
        }

        .card-content img {
            width: 100%;
            height: 206px;
            object-fit: cover;
            display: block;
        }

        .tiktoker-name {
    font-family: 'Cooper Black', sans-serif;
    font-size: 1.8em;
    text-align: center;
    margin: 10px 0;
    flex-grow: 1;
    text-shadow:
        -2px -2px 0 #fff,
         2px -2px 0 #fff,
        -2px  2px 0 #fff,
         2px  2px 0 #fff,
        -2px  0   0 #fff,
         2px  0   0 #fff,
         0   -2px 0 #fff,
         0    2px 0 #fff;
}


[data-id="ashley"] .tiktoker-name,
[data-id="caprice"] .tiktoker-name,
[data-id="princess"] .tiktoker-name,
[data-id="sofia"] .tiktoker-name,
[data-id="waynona"] .tiktoker-name {
    color: #F2C521;
}

/* GREEN: Fred, Iñigo, Rave */
[data-id="fred"] .tiktoker-name,
[data-id="inigo"] .tiktoker-name,
[data-id="joaquin"] .tiktoker-name,
[data-id="miguel"] .tiktoker-name,
[data-id="rave"] .tiktoker-name {
    color: #00BB3A;
}

/* ORANGE: Reich, Lella, Eliza */
[data-id="reich"] .tiktoker-name,
[data-id="lella"] .tiktoker-name,
[data-id="carmelle"] .tiktoker-name,
[data-id="krystal"] .tiktoker-name,
[data-id="eliza"] .tiktoker-name {
    color: #FF6419;
}

/* BLUE: Clifford, Lee, Anton */
[data-id="clifford"] .tiktoker-name,
[data-id="lee"] .tiktoker-name,
[data-id="heath"] .tiktoker-name,
[data-id="marco"] .tiktoker-name,
[data-id="anton"] .tiktoker-name {
    color: #3559ED;
}

        .vote-btn {
            width: 100%;
            order: 4;
            background-color: #335FFF;
            color: white;
            border: 1px solid #444;
            padding: 10px 15px;
            font-size: 1em;
            font-weight: bold;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            margin-top: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .vote-btn img {
            display: none !important;
        }

        .vote-btn:hover {
            background-color: #335fffcc;
        }

        .vote-btn.voted-feedback {
            background-color: #335FFF;
        }

        .skeleton-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;

            padding: 0 20px;
            box-sizing: border-box;
        }

        .skeleton-card {
            background-color: #1a1a1a;
            border: 1px solid #333;
            border-radius: 8px;
            padding: 16px;
        }

        .skeleton-img,
        .skeleton-text,
        .skeleton-button {
            background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
            border-radius: 5px;
        }

        .skeleton-img {
            width: 100%;
            height: 250px;
            margin-bottom: 12px;
        }

        .skeleton-text {
            height: 20px;
            margin-bottom: 10px;
        }

        .skeleton-text.short {
            width: 60%;
        }

        .skeleton-button {
            height: 45px;
            margin-top: 20px;
        }

        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }

            100% {
                background-position: 200% 0;
            }
        }

        @media (max-width: 992px) {

            .voting-container,
            .skeleton-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            body {
                padding: 0px;
            }

            header h1 {
                font-size: 1.6em;
                gap: 10px;
            }

            .h1-logo {
                height: 35px;
            }

            .tiktoker-name {
                font-size: 1.1em;
            }

            .vote-count {
                font-size: 1em;
                margin: 10px 0;
            }

            .vote-btn {
                font-size: 1em;
                padding: 10px 15px;
            }

            .suggest-container h2 {
                font-size: 1.5em;
            }

            #suggest-input {
                font-size: 1em;
                padding: 15px 20px;
                padding-right: 110px;
            }

            #suggest-btn {
                font-size: 0.9em;
                padding: 10px 20px;
            }

            .voting-container,
            .skeleton-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .nav-menu {
                display: none;
            }

            #burger-menu.hidden {
                display: block !important;
            }

            .nav-container {
                justify-content: space-between;
            }

            .nav-left {
                gap: 0;
            }

            header h1 {
                font-size: 1.8em;
                text-align: center;
            }

            .header-controls {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .search-container {
                width: 100%;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }

            .coin-task-card {
                flex-direction: column;
                align-items: stretch;
                padding: 20px;
            }
        }

.vote-count {
    font-size: 1.1em;
    font-weight: bold;
    color: #90a7fe;
    margin: 0 0 10px 0;
    transition: transform 0.2s ease;
    order: 3;
    text-align: center; /* ITO ANG DAGDAG */
}

        .vote-count.counting {
            transform: scale(1.3);
            color: #335FFF;
        }

        .sticky-nav-wrapper {
            position: sticky;
            top: 0;
            width: 100%;
            z-index: 1000;

            padding: 0;

            transition: transform 0.4s ease-in-out;
        }

        .sticky-nav-wrapper.nav-hidden {
            transform: translateY(-120%);
        }

        #main-nav {

            width: 100%;

            background-color: #161616;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);

            border-top: 1px solid #333;
            border-bottom: 1px solid #333;
            border-left: none;
            border-right: none;

            border-radius: 0;

            padding: 0;
            box-sizing: border-box;
        }

        .nav-container {
            width: 100%;
            padding: 15px 25px;
            box-sizing: border-box;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo img {
            height: 28px;
            display: block;
        }

        .nav-menu {
            list-style: none;
            display: flex;
            gap: -1px !important;
            margin: 0;
            padding: 0;
        }

        .nav-menu a {
            color: #c3c2c2;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95em;

            padding: 8px 15px;
            border-radius: 8px;

            transition: all 0.2s ease;
        }

        .nav-menu a:hover {
            background-color: #ffffff12;
            color: #ffffff;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-shrink: 0;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-grow: 1;
            justify-content: flex-end;
        }

        .nav-coins {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: #f0f0f0;
        }

        .coin-icon {
            height: 20px;
        }

        #burger-menu {
            background-color: transparent;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .toggle-container {
            position: relative;
            display: flex;
            background-color: #1a1a1a;
            border-radius: 8px;
            width: fit-content;
            border: 1px solid #333;
            padding: 5px;
        }

        .toggle-option {
            background: none;
            border: none;
            color: #a0a0a0;
            font-weight: bold;
            font-size: 0.9em;
            padding: 12px 20px;
            cursor: pointer;
            position: relative;
            z-index: 2;
            transition: color 0.3s ease;

            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .toggle-coin-icon {
            height: 22px;
            width: auto;
        }

        .toggle-option[data-option="voting"].active {
            color: #ffffff;
        }

        .toggle-option[data-option="coins"].active {
            color: #ffffff;
        }

        .toggle-highlighter {
            position: absolute;
            top: 5px;
            left: 5px;
            height: calc(100% - 10px);
            color: white !important;
            border-radius: 8px;
            z-index: 1;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                background-color 0.4s ease;
        }

        .highlighter-voting {
            background-color: #335FFF;
            color: white !important;
        }

        .highlighter-coins {
            background-color: #335FFF;
            color: white !important;
        }

.header-controls {
    display: flex;
    justify-content: flex-start; /* ITO ANG NAGBAGO: Pagsasamahin nito ang laman sa kaliwa */
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

        .search-container {
            position: relative;
            width: 100%;
            max-width: 350px;
        }

        #search-input {
            width: 100%;
            background-color: #1a1a1a;
            border-radius: 8px;
            padding: 14px 14px 14px 45px;
            color: #fff;
            font-size: 1em;
            padding-left: 45px;

            border: 2px solid transparent;
            background-image: linear-gradient(#1a1a1a, #1a1a1a), linear-gradient(to right, #335FFF, #335FFF);
            background-origin: border-box;
            background-clip: padding-box, border-box;

            transition: box-shadow 0.3s ease;
        }

        #search-input:focus {
            outline: none;
            box-shadow: 0 0 10px rgba(37, 244, 238, 0.3);
        }

        .search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            fill: #888;
            transition: fill 0.3s ease;
        }

        .search-container:focus-within .search-icon {
            fill: #335FFF;
        }

        .pagination-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-top: 40px;
        }

        .pagination-btn {
            background-color: #1a1a1a;
            border: 1px solid #333;
            border-radius: 8px;
            width: 50px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .pagination-btn svg {
            fill: #fff;
            transition: fill 0.2s ease;
        }

        .pagination-btn:hover {
            border-color: #335FFF;
            box-shadow: 0 0 10px rgba(37, 244, 238, 0.3);
        }

        .pagination-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            border-color: #333;
            box-shadow: none;
        }

        .pagination-btn:disabled svg {
            fill: #555;
        }

        .page-input-container {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.2em;
            font-weight: bold;
            color: #888;
        }

        #page-input {
            background-color: #1a1a1ab3;
            border: 1px solid #33333385;
            color: #fff;
            border-radius: 8px;
            width: 50px;
            height: 40px;
            font-size: 1.2em;
            font-weight: bold;
            text-align: center;
            -moz-appearance: textfield;
        }

        #page-input::-webkit-outer-spin-button,
        #page-input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        #page-input:focus {
            outline: none;
            border-color: #335FFF;
        }

        .slide-out-disclaimer {
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2000;

            left: -355px;

            display: flex;
            align-items: center;
            transition: left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .slide-out-disclaimer.is-open {
            left: 0;
        }

        .disclaimer-tab {
            position: absolute;
            left: 100%;
            top: 50%;
            transform: translateY(-50%);

            background-color: #1a1a1a;
            border: 1px solid #333;
            border-left: none;
            padding: 15px 8px;
            cursor: pointer;
            border-radius: 0 12px 12px 0;
        }

        .disclaimer-tab svg {
            fill: #fff;
            transition: transform 0.5s ease;
        }

        .slide-out-disclaimer.is-open .disclaimer-tab svg {
            transform: rotate(180deg);
        }

        .disclaimer-content {
            width: 300px;
            background-color: #1a1a1a;
            border: 1px solid #333;
            border-left: none;
            padding: 20px 25px;
            border-radius: 0 12px 12px 0;
            height: auto;
        }

        .disclaimer-content h2 {
            margin-top: 0;
            color: #335FFF;
            font-size: 1.5em;
        }

        .disclaimer-content p {
            color: #c0c0c0;
            line-height: 1.6;
            font-size: 0.95em;
        }

        .suggest-container {
            text-align: center;
            margin: 60px 0;
            padding: 20px;
        }

        .suggest-container h2 {
            font-size: 2em;
            margin-bottom: 20px;
            color: #fff;
        }

        #suggest-input {
            width: 100%;
            max-width: 500px;
            font-size: 1.1em;
            font-weight: bold;
            color: #fff;
            background-color: #1a1a1a;
            padding: 18px 25px;
            box-sizing: border-box;

            border: 2px solid transparent;
            border-radius: 50px;

            background-image: linear-gradient(#1a1a1a, #1a1a1a), linear-gradient(to right, #335FFF, #335FFF);
            background-origin: border-box;
            background-clip: padding-box, border-box;

            transition: transform 0.3s ease;
        }

        #suggest-input::placeholder {
            color: #666;
        }

        #suggest-input:focus {
            outline: none;
            transform: scale(1.03);
        }

        footer {
            padding: 40px 25px;
            margin-top: 60px;
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 25px;
        }

        .footer-top-line {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .footer-separator {
            font-size: 1.8em;
            color: #444;
            font-weight: lighter;
        }

        .footer-logo img {
            height: 35px;
            display: block;
        }

        .footer-socials {
            display: flex;
            gap: 25px;
        }

        .footer-socials a {
            text-decoration: none;
        }

        .footer-socials a i {
            font-size: 28px;
            color: #888;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .footer-socials a:hover i {
            color: #335FFF;
            transform: translateY(-3px);
        }

        .footer-links {
            display: flex;
            gap: 30px;
        }

        .footer-links a {
            color: #888;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #fff;
        }

        .footer-credit {
            text-align: center;
            margin-top: 25px;
            color: #777;
            font-size: 0.95em;
        }

        .footer-credit .fi-rr-heart {
            color: #335FFF;
            font-size: 1em;
            vertical-align: middle;
            margin: 0 2px;
        }

        .gradient-input {
            width: 100%;
            background-color: #1a1a1a;
            color: #fff;
            font-size: 1em;

            border: 2px solid transparent;
            background-image: linear-gradient(#1a1a1a, #1a1a1a), linear-gradient(to right, #335FFF, #335FFF);
            background-origin: border-box;
            background-clip: padding-box, border-box;

            transition: box-shadow 0.3s ease;
        }

        .gradient-input:focus {
            outline: none;
            box-shadow: 0 0 10px rgba(37, 244, 238, 0.3);
        }

        #search-input,
        #suggest-input {
            width: 100%;
            font-size: 1.1em;
            font-weight: bold;
            color: #fff;
            background-color: #1a1a1a;

            padding: 18px 25px;
            padding-right: 130px;
            border-radius: 12px;
            box-sizing: border-box;

            border: 2px solid transparent;
            background-image: linear-gradient(#1a1a1a, #1a1a1a), linear-gradient(to right, #335FFF, #335FFF);
            background-origin: border-box;
            background-clip: padding-box, border-box;

            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        #search-input:focus,
        #suggest-input:focus {
            outline: none;
            transform: scale(1.03);
            box-shadow: 0 0 10px rgba(37, 244, 238, 0.3);
        }

        #search-input::placeholder,
        #suggest-input::placeholder {
            color: #666;
        }

#search-input {
    padding-top: 16px;    /* ITO ANG NAGBAGO */
    padding-bottom: 16px; /* ITO ANG NAGBAGO */
    padding-left: 45px;
    padding-right: 25px;
}

        .suggest-input-wrapper {
            position: relative;
            max-width: 500px;
            margin: 0 auto;
        }

        #suggest-input {
            padding-right: 130px;
        }

        #suggest-btn {
            position: absolute;
            top: 50%;
            right: 8px;
            transform: translateY(-50%);

            background-color: #335FFF;
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 12px 25px;
            font-weight: bold;
            font-size: 0.95em;
            cursor: pointer;

            display: flex;
            align-items: center;
            gap: 8px;

            transition: all 0.2s ease;
        }

        #suggest-btn:hover {
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 4px 15px rgba(254, 44, 85, 0.4);
        }

        .coins-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 30px;
            padding: 0 10px;
            animation: fadeIn 0.8s ease-in-out;
        }

        .sponsorship-divider {
            display: flex;
            align-items: center;
            text-align: center;
            color: #555;
            margin: 20px 0;
        }

        .sponsorship-divider::before,
        .sponsorship-divider::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid #333;
        }

        .sponsorship-divider span {
            padding: 0 15px;
            font-weight: bold;
            font-size: 1.1em;
        }

        .coin-task-card {
            background-color: #1a1a1a;
            border: 1px solid #333;
            border-radius: 12px;
            padding: 20px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;

            max-width: 850px;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            box-sizing: border-box;
        }

        .coin-task-card:hover {
            border-color: #335FFF;
            transform: translateY(-5px);
        }

        .task-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .task-icon {
            font-size: 3em;
            color: #335FFF;
        }

        .task-text h3 {
            margin: 0 0 5px 0;
            color: #fff;
            font-size: 1.3em;
        }

        .task-text p {
            margin: 0;
            color: #888;
        }

        @media (max-width: 768px) {

            .coin-task-card {
                flex-direction: column;
                align-items: stretch;
                padding: 20px;
            }

            .task-info {
                align-items: flex-start;
                width: 100%;
            }

            .claim-coin-btn {
                width: 100%;
                margin-top: 20px;
                padding: 15px 0;
                justify-content: center;
            }
        }

        .claim-coin-btn {
            background-color: #4c73ff;
            color: #ffffff;
            border: none;
            border-radius: 8px;
            padding: 12px 20px;
            font-size: 1.1em;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.2s ease;
        }

        .claim-coin-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px hsl(227, 100%, 33%);
        }

        .claim-coin-btn .coin-icon {
            height: 22px;
        }

        .claim-coin-btn:disabled {
            background-color: #333;
            color: #777;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .burger-menu {
            width: 30px;
            height: 22px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            cursor: pointer;
            position: relative;
            z-index: 1002;
        }

        .burger-bar {
            width: 100%;
            height: 3px;
            background-color: #fff;
            border-radius: 3px;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .burger-menu.is-active .burger-bar:nth-child(1) {
            transform: translateY(9.5px) rotate(45deg);
        }

        .burger-menu.is-active .burger-bar:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.is-active .burger-bar:nth-child(3) {
            transform: translateY(-9.5px) rotate(-45deg);
        }

        .mobile-nav-menu {
            background-color: #1a1a1a;
            border: 1px solid #333;
            position: absolute;
            top: 100%;
            width: calc(100% - 20px);
            left: 10px;
            margin-top: 10px;
            z-index: 999;
            border-radius: 15px;

            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.5s ease-in-out,
                opacity 0.3s ease-in-out,
                visibility 0.3s ease-in-out;
            opacity: 0;
            visibility: hidden;
            overflow: hidden;
        }

        .mobile-nav-menu.is-open {
            grid-template-rows: 1fr;
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-menu>div {
            min-height: 0;

            display: flex;
            flex-direction: column;
        }

        .mobile-nav-menu a {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2em;
            padding: 20px 25px;
            border-bottom: 1px solid #2a2a2a;
            transition: background-color 0.2s ease;
        }

        .mobile-nav-menu a:last-child {
            border-bottom: none;
        }

        .mobile-nav-menu a:hover {
            background-color: #7c55e9;
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            #burger-menu.hidden {
                display: flex !important;
            }

        }

        .tiktoker-username {
    display: none; /* Itatago nito ang lahat ng username */
}

        #notification-container {
            position: fixed;
            bottom: 25px;
            left: 25px;
            z-index: 9999;
            display: flex;
            flex-direction: column-reverse;
            gap: 12px;
            pointer-events: none;
        }

        .vote-notification {
            background-color: rgba(26, 26, 26, 0.85);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            color: #f0f0f0;
            padding: 14px 20px;
            border-radius: 10px;
            border: 1px solid #444;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
            font-size: 1em;
            width: fit-content;

            opacity: 0;
            transform: translateX(-120%);

            transition: transform 0.6s cubic-bezier(0.21, 1.05, 0.51, 1.01),
                opacity 0.5s ease-out;
        }

        .vote-notification.show {
            opacity: 1;
            transform: translateX(0);
        }

        .vote-notification strong {
            color: #335FFF;
            font-weight: 700;
        }

        .vote-notification.pop {
            transform: scale(1.05);
            transition: transform 0.1s ease-in-out;
        }

        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            z-index: 5000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            visibility: visible;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .modal-overlay.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .modal {
            background-color: #1a1a1a;
            border: 1px solid #333;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            width: 90%;
            max-width: 450px;
            transform: scale(1);
            transition: transform 0.3s ease;
        }

        .modal-overlay.hidden .modal {
            transform: scale(0.95);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            border-bottom: 1px solid #333;
        }

        .modal-header h2 {
            margin: 0;
            font-size: 1.4em;
            color: #335FFF;
        }

        .modal-close-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .modal-close-btn svg {
            fill: #888;
            transition: fill 0.2s ease;
        }

        .modal-close-btn:hover svg {
            fill: #fff;
        }

        .modal-body {
            padding: 20px;
            line-height: 1.6;
            color: #c0c0c0;
        }

        .modal-body p {
            margin: 0;
        }

        .modal-tasks {
            padding: 0 20px 20px 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .modal-task-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #252525;
            border: 1px solid #444;
            border-radius: 8px;
            padding: 15px;
            text-decoration: none;
            color: #fff;
            font-weight: 600;
            transition: all 0.2s ease;
            width: 100%;
            box-sizing: border-box;
        }

        .modal-task-link:hover {
            background-color: #333;
            border-color: #335FFF;
            transform: scale(1.03);
        }

        .modal-task-link.as-button {
            cursor: pointer;
            font-family: 'Poppins', sans-serif; /* ITO ANG NAGBAGO */
            font-size: 1em;
        }

        .modal-task-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .task-icon-small {
            font-size: 1.5em;
            color: #335FFF;
        }

        .modal-task-reward {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.1em;
            color: #335FFF;
        }

        .modal-task-reward svg {
            fill: #335FFF;
        }

        .popSc {
            position: fixed;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: rgba(0, 0, 0, 0.7);
            z-index: 99980;
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
            display: flex;
            justify-content: center;
            align-items: center;
            animation: popupBlur .3s ease-in;
            -webkit-animation: popupBlur .3s ease-in;
        }

        .popSc.hidden {
            display: none
        }

        .popSc .popBo {
            position: relative;
            background: #1a1a1a;
            border: 1px solid #333;
            max-width: 400px;
            height: 470px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
            animation: popupScale .3s ease-in;
            -webkit-animation: popupScale .3s ease-in;
        }

        .popSc .popBo svg {
            display: block;
            width: 50px;
            height: 50px;
            fill: none !important;
            stroke: #335FFF;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-width: 1.5;
        }

        .popSc .popBo h2 {
            margin: 15px 0 10px 0;
            font-size: 1.4em;
            font-weight: 700;
            color: #ffffff;
            text-align: center;
        }

        .popSc .popBo .popCo p {
            margin: 0;
            line-height: 1.6;
            font-size: 0.95em;
            color: #c0c0c0;
            text-align: center;
        }

        @keyframes popupBlur {
            from {
                opacity: 0
            }

            to {
                opacity: 1
            }
        }

        @-webkit-keyframes popupBlur {
            from {
                opacity: 0
            }

            to {
                opacity: 1
            }
        }

        @keyframes popupScale {
            from {
                transform: scale(0);
                animation-timing-function: ease-in;
                opacity: 0
            }

            to {
                transform: scale(1);
                opacity: 1
            }
        }

        @-webkit-keyframes popupScale {
            from {
                -webkit-transform: scale(0);
                -webkit-animation-timing-function: ease-in;
                opacity: 0
            }

            to {
                -webkit-transform: scale(1);
                opacity: 1
            }
        }

        .popSc .popBo .popBtn {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            height: 45px;
            width: auto;
            padding: 0 25px;
            outline: none;
            border: none;
            background: #335FFF;
            color: #010101;
            border-radius: 50px;
            margin-top: 25px;
            font-weight: bold;
            font-size: 0.9em;
            cursor: pointer;
            transition: all .2s ease;
        }

        .popSc .popBo .popBtn:hover {
            transform: scale(1.05);
        }

        .popSc .popBo .popBtn svg {
            width: 24px;
            height: 24px;
            stroke: #fff;
            flex-shrink: 0
        }

        .popSc .popBo .popBtn svg.r {
            animation: rotateIcn 1.5s infinite linear;
            -webkit-animation: rotateIcn 1.5s infinite linear
        }

        .popSc {
            animation: popupBlur .3s ease-in;
            -webkit-animation: popupBlur .3s
        }

        .popSc>* {
            animation: popupScale .3s ease-in;
            -webkit-animation: popupScale .3s
        }

        .darkMode .popSc {
            background: rgba(0, 0, 0, 0.1)
        }

        .darkMode .popSc .popBo {
            background: rgba(50, 50, 50, 0.8)
        }

        .darkMode .popSc .popBo svg {
            stroke: #fefefe
        }

        .darkMode .popSc .popBo p,
        .darkMode .popSc .popBo h2 {
            color: #fefefe
        }

        @keyframes popupBlur {
            from {
                opacity: 0
            }

            to {
                opacity: 1
            }
        }

        @-webkit-keyframes popupBlur {
            from {
                opacity: 0
            }

            to {
                opacity: 1
            }
        }

        @keyframes popupScale {
            from {
                transform: scale(0);
                animation-timing-function: ease-in;
                opacity: 0
            }

            to {
                transform: scale(1);
                opacity: 1
            }
        }

        @-webkit-keyframes popupScale {
            from {
                -webkit-transform: scale(0);
                -webkit-animation-timing-function: ease-in;
                opacity: 0
            }

            to {
                -webkit-transform: scale(1);
                opacity: 1
            }
        }

        @keyframes rotateIcn {
            from {
                transform: rotate(0deg)
            }

            to {
                transform: rotate(359deg)
            }
        }

        @-webkit-keyframes rotateIcn {
            from {
                -webkit-transform: rotate(0deg)
            }

            to {
                -webkit-transform: rotate(359deg)
            }
        }

        .popSc .popBo .popTabs {
            width: 100%;
            display: flex;
            border-bottom: 2px solid #333;
            margin-bottom: 20px;
        }

        .popSc .popBo .popTab {
            flex: 1;
            padding: 15px 10px;
            text-align: center;
            font-weight: bold;
            color: #888;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            transition: all 0.2s ease;
            margin-bottom: -2px;
        }

        .popSc .popBo .popTab:hover {
            color: #fff;
        }

        .popSc .popBo .popTab.active {
            color: #335FFF;
            border-bottom-color: #335FFF;
        }

        .popSc .popBo .popContent {
            display: none;
            width: 100%;
            animation: fadeIn 0.3s ease;
            flex-grow: 1;
            min-height: 0;
        }

        .popSc .popBo .popContent.active {
            display: block;
        }

        .popSc .popBo #tutorial-content ul {
            list-style: none;
            padding: 0;
            margin-top: 15px;
            text-align: left;
            max-height: 160px;
            overflow-y: auto;
            padding-right: 10px;
        }

        .popSc .popBo #tutorial-content li {
            background-color: #2a2a2a;
            padding: 12px 15px;
            border-radius: 8px;
            margin-bottom: 10px;
            font-size: 0.9em;
            color: #c0c0c0;
        }

        .popSc .popBo #tutorial-content li strong {
            color: #335FFF;
        }

        .popSc .popBo #tutorial-content ul::-webkit-scrollbar {
            width: 8px;
        }

        .popSc .popBo #tutorial-content ul::-webkit-scrollbar-track {
            background: #2a2a2a;
            border-radius: 10px;
        }

        .popSc .popBo #tutorial-content ul::-webkit-scrollbar-thumb {
            background-color: #555;
            border-radius: 10px;
            border: 2px solid #2a2a2a;
        }

        .popSc .popBo #tutorial-content ul::-webkit-scrollbar-thumb:hover {
            background-color: #888;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .top-ranks-section {
            display: flex;
            gap: 40px;
            margin: 60px 0;
            padding: 40px;
            background-color: #1a1a1a;
            border: 1px solid #333;
            border-radius: 12px;
        }

        .top-ranks-left {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .top-ranks-left h2 {
            font-size: 2.2em;
            font-weight: 700;
            color: #335FFF;
            margin-top: 0;
            margin-bottom: 15px;
        }

        .top-ranks-left p {
            color: #a0a0a0;
            line-height: 1.6;
            font-size: 1.05em;
            max-width: 400px;
        }

        .top-ranks-logo-wrapper {
            margin-top: 30px;
        }

        .top-ranks-tiktok-logo {
            height: 40px;
            opacity: 0.6;
        }

        .top-ranks-right {
            flex: 1.2;
        }

        .top-ranks-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .rank-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background-color: #252525;
            border: 1px solid #444;
            border-radius: 8px;
            padding: 10px;
            transition: all 0.2s ease;
        }

        .rank-item:hover {
            transform: scale(1.05);
            border-color: #335FFF;
        }

        .rank-item .rank-number {
            font-size: 1.2em;
            font-weight: 700;
            color: #888;
            width: 25px;
        }

        .rank-item .rank-img {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            object-fit: cover;
        }

        .rank-item .rank-info {
            display: flex;
            flex-direction: column;
        }

        .rank-item .rank-name {
            font-weight: 600;
            color: #fff;
            font-size: 0.95em;
        }

        .rank-item .rank-username {
            font-size: 0.85em;
            color: #a0a0a0;
        }

        .rank-item-skeleton {
            height: 67px;
            background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
            border-radius: 8px;
        }

        @media (max-width: 992px) {
            .top-ranks-section {
                flex-direction: column;
                padding: 25px;
            }

            .top-ranks-grid {
                grid-template-columns: 1fr;
            }

            .top-ranks-left h2 {
                font-size: 1.8em;
            }
        }

        .top-ranks-left {
            position: relative;
            overflow: hidden;

            padding: 20px;
            margin: -20px;
        }

        .top-ranks-left::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;

            background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 20px 20px;

            z-index: 0;
        }

        .top-ranks-intro,
        .top-ranks-logo-wrapper {
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {

            .footer-top-line {
                flex-direction: column;
                align-items: center;
                gap: 25px;
            }

            .footer-separator {
                display: none;
            }

            .footer-links {
                gap: 20px;
            }

            .footer-credit {
                margin-top: 15px;
            }
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-action-btn {
            padding: 8px 18px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9em;
            text-decoration: none;
            border: 2px solid transparent;
            transition: all 0.2s ease;
        }

        .login-btn {
            background-color: transparent;
            color: #fff;
        }

        .login-btn:hover {
            background-color: #ffffff12;
            color: #ffffff;
        }

        .signup-btn {
            background-color: #673DE6;
            border-color: #673DE6;
            color: #fff;
        }

        .signup-btn:hover {
            background-color: #7c55e9;
            border-color: #7c55e9;
            transform: scale(1.05);
        }

        .mobile-auth-links {
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid #333;
            display: flex;
            flex-direction: column;
        }

        .mobile-auth-links a {
            text-align: center;
        }

        .mobile-signup-btn {
            background-color: #673DE6;
            margin-top: 10px;
            border-radius: 8px;
        }

        .mobile-signup-btn:hover {
            background-color: #7c55e9 !important;
        }

        @media (max-width: 768px) {
            .nav-actions {
                display: none;
            }
        }

        @media (min-width: 769px) {
            .mobile-auth-links {
                display: none;
            }
        }

        .nav-action-btn,
        .mobile-auth-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .nav-action-btn i,
        .mobile-auth-links i {
            display: inline-block;
            line-height: 1;
        }

        .sticky-coin-bar {
            position: fixed;
            top: 80px;
            right: 20px;
            z-index: 999;
            display: flex;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            align-items: center;
            gap: 8px;
            padding: 10px 15px;
            background-color: rgba(26, 26, 26, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid #444;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.1em;
            color: #fff;
            width: fit-content;

            transition: top 0.4s ease-in-out;
        }

        .sticky-coin-bar.adjusted-position {
            top: 20px;
        }

        @media (min-width: 769px) {

            .sticky-coin-bar {
                display: flex !important;
            }

            .main-nav-coins {
                display: none !important;
            }
        }

        @media (min-width: 769px) {
            .main-nav-coins {
                display: none !important;
            }
        }

        .nav-search-trigger {
            position: relative;
            display: flex;
            align-items: center;
            background-color: #2a2a2a6e;
            border: 1px solid #444;
            border-radius: 8px;
            padding: 8px 12px;
            cursor: pointer;
            transition: all 0.2s ease;
            min-width: 180px;
            max-width: 350px;
            width: 100%;
            box-sizing: border-box;
        }

        .nav-search-trigger:hover {
            background-color: #333;
            border-color: #555;
        }

        .nav-search-trigger .search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            fill: #888;
        }

        .search-trigger-placeholder {
            color: #888;
            font-size: 0.9em;
            flex-grow: 1;
            padding-left: 30px;
        }

        .search-trigger-shortcut {
            background-color: #3f3f3f;
            color: #aaa;
            font-size: 0.75em;
            font-weight: bold;
            padding: 3px 6px;
            border-radius: 4px;
            opacity: 0.7;
        }

        .search-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            z-index: 9000;
            display: flex;
            justify-content: center;
            padding-top: 15vh;
            opacity: 1;
            visibility: visible;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .search-modal-overlay.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .search-modal {
            background-color: #1a1a1a;
            width: 90%;
            max-width: 600px;
            border-radius: 12px;
            border: 1px solid #333;
            padding: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            height: fit-content;
            transform: scale(1);
            transition: transform 0.3s ease;
        }

        .search-modal-overlay.hidden .search-modal {
            transform: scale(0.95);
        }

        .search-modal-input-wrapper {
            position: relative;
        }

        #modal-search-input {
            width: 100%;
            background-color: #010101;
            border-radius: 8px;
            padding: 16px 50px 16px 50px;
            color: #fff;
            font-size: 1.2em;
            font-weight: bold;
            border: 1px solid #444;
            transition: border-color 0.2s ease;
            box-sizing: border-box;
        }

        #modal-search-input:focus {
            outline: none;
            border-color: #673DE6;
        }

        #modal-search-input+.search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            fill: #888;
        }

        .modal-clear-btn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .modal-clear-btn svg {
            fill: #888;
            transition: fill 0.2s ease;
        }

        .modal-clear-btn:hover svg {
            fill: #fff;
        }

        .modal-clear-btn.hidden {
            display: none;
        }

        .search-suggestions {
            margin-top: 20px;
            padding: 10px;
        }

        .search-suggestions h4 {
            margin: 0 0 10px 0;
            color: #888;
            font-size: 0.9em;
            text-transform: uppercase;
        }

        .search-suggestions a {
            display: inline-block;
            background-color: #2a2a2a;
            color: #eee;
            text-decoration: none;
            padding: 6px 12px;
            border-radius: 50px;
            margin: 5px 5px 5px 0;
            font-size: 0.9em;
            transition: background-color 0.2s ease;
        }

        .search-suggestions a:hover {
            background-color: #673DE6;
        }

        @media (max-width: 768px) {

            .nav-search-trigger {
                width: auto;
                background-color: transparent;
                border: none;
                padding: 5px;
            }

            .search-trigger-placeholder,
            .search-trigger-shortcut {
                display: none;
            }

            .nav-search-trigger .search-icon {
                margin-right: 0;
                fill: #ffffff;
                width: 28px;
                height: 28px;
                position: static;
                transform: none;
            }

        }

        @media (max-width: 1170px) {
            .nav-menu {
                display: none;
            }

            .nav-actions {
                display: none;
            }

            #burger-menu.hidden {
                display: flex !important;
            }

            .nav-search-trigger {
                min-width: auto;
            }
        }

        .toggle-container {
    order: 1; /* Uunahin ito */
}

.search-container {
    order: 2; /* Isusunod ito */
}

.sub-heading {
    text-align: center;
    color: #9CA3AF; /* Isang light gray na kulay */
    font-size: 1em;
    font-weight: 400; /* Regular weight lang */
    margin-top: -15px; /* Para umakyat ng konti, mas malapit sa h1 */
    margin-bottom: 30px; /* Espasyo bago ang controls */
    max-width: 500px; /* Para hindi masyadong mahaba sa desktop */
    margin-left: auto; /* I-gitna ang container */
    margin-right: auto; /* I-gitna ang container */
}