* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    overflow-x: hidden;
    background: #000000 url(https://antiblur.top/images/merdeka.webp) center center no-repeat !important;
    background-attachment: fixed !important;
    background-position: center;
    background-size: cover !important;
}
/* hr */

hr {
margin: 1rem 0;
color: rgb(122, 122, 122);
background-color: currentColor;
border: 0;
}

hr:not([size]) {
height: 1px;
}

.hr2 {
    margin: 0.5rem auto;
    color: rgb(122, 122, 122);
    background-color: currentColor;
    border: 0;
    width: 75%;
}
    
.hr2:not([size]) {
    width: 75%;
    height: 1px;
    }

.logo-container{
    display: none;
}


.link-buttons {
    display: none;
}


/* First Navbar */

.top-nav {
    background-color: #0b0d81;
    padding: 5px 20px;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
}

.top-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    }

    .nav-list li {
    margin-right: 20px;
    }

    .nav-list a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-family: Arial, sans-serif;
    font-size: 12px;
    }

    .logo {
    height: 25px;
    vertical-align: middle;
    }

    .live-clock {
    color: white;
    font-family: Arial, sans-serif;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    }

    .fa-clock {
    color: #ffffff;
    font-size: 12px;
    }

    .fa-telegram{
    color: #00d9ff;
    }

    .fa-comments {
        color: #ff8800;
    }

    .nav-list a:hover {
    color: #0d0081;
    }

    /* Second Nav */

    .second-nav {
    background-color: #1a1a1a;
    padding: 15px 20px;
    width: 100%;
    z-index: 999;
    box-sizing: border-box;
    border-bottom: 2px solid #f5dc01; /* Added gold bottom border */
    box-shadow: 0 2px 4px rgba(0,0,0,0.2); /* Optional: adds subtle shadow */
    }

    .second-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    }

    .second-nav-list li {
    margin-right: 35px;
    }

    .second-nav-list a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-family: Arial, sans-serif;
    font-size: 16px;
    }

    .second-nav-list a:hover {
    color: #0d0081;
    }

    .second-logo {
    height: 35px;
    vertical-align: middle;

    }

    .logo-home-link {
    display: flex;
    align-items: center;
    gap: 15px;
    }

    .logo-home-link a {
    display: flex;
    align-items: center;
    }

    /* main Content */
    .main-container {
        width: 100%;
        max-width: 1320px;
        padding: 15px;
        margin: 0 auto;
        background-color: black;
        overflow-x: hidden;
    }

    /* Moving Text */

    .announcement-container {
    background-color: black;
    padding: 10px 0px;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: rgba(255, 255, 255, 0.514) solid 0.5px;
    }

    .megaphone-icon {
    color: #000ecc;
    font-size: 24px;
    margin-right: 15px;
    position: relative;
    z-index: 2;
    background-color: black;
    padding-right: 10px;
    }

    .scrolling-text {
    color: white;
    font-family: Arial, sans-serif;
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
    padding-left: 20px;
    animation-delay: 0s;
    }

    @keyframes scroll-left {
    0% {
        transform: translateX(120%);
    }
    100% {
        transform: translateX(-100%);
    }
    }

    /* Banner Section */

    .banner-section {
    margin-top: 20px;
    text-align: center;
    }

    .banner-images {
    display: flex;
    justify-content: center;
    }

    .banner-images img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    }

    .action-buttons {
    display: flex;
    width: 100%;
    justify-content: center;
    max-width: 100%;
    }

    .action-btn {
    padding: 12px 24px;
    background: linear-gradient(to bottom, #b30000, #ff0000);
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    max-width: 300px;
    }

    .action-btn i {
    font-size: 15px;
    }

    .action-btn:hover {
    background-color: #ff0000;
    }

    .action-btn.promo-btn {
    background: linear-gradient(to bottom, #ffd700, #ff8c00);
    color: #000;
    font-weight: bold;
    }

    .action-btn.promo-btn:hover {
    background: linear-gradient(to bottom, #ffed4a, #ffa500);
    }

    .action-btn.rtp-btn {
    background: linear-gradient(to bottom, #007bff, #004fa3);
    border-bottom-right-radius: 10px;
    }

    .action-btn.login-btn {
    border-bottom-left-radius: 10px;
    }

    /* TITLE */
    .site-title {
    color: white;
    font-family: Arial, sans-serif;
    font-size: clamp(18px, 3vw, 24px);
    text-align: center;
    margin: 20px 0;
    font-weight: bold;
    }

    /* SEARCH BAR */
    .search-container {
    display: flex;
    margin: 20px 0;
    width: 100%;
    margin-bottom: 1rem;
    }

    .search-input {
    flex: 1;
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid #333;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    background-color: #fff;
    color: rgb(0, 0, 0);
    }

    .search-input::placeholder {
    color: #000000;
    }

    .clear-btn {
    padding: 15px 30px;
    background: linear-gradient(to bottom, #cc0000, #990000);
    color: white;
    border: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    }

    .clear-btn:hover {
    background: linear-gradient(to bottom, #ff0000, #cc0000);
    }

    /* buku mimpi img */
    .results-container {
    margin-top: 20px;
    text-align: center;
    overflow: hidden;
    }

    .results-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    }

    /* buku mimpi nav */
    .navigation-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    }

    .nav-btn {
    padding: 10px 20px;
    background: #cc0000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    }

    .nav-btn:disabled {
    background: #666;
    cursor: not-allowed;
    }

    /* Swipe image */
    .slide-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    }

    .slide-left {
    animation: slideLeft 0.3s ease-in-out;
    }

    .slide-right {
    animation: slideRight 0.3s ease-in-out;
    }

    @keyframes slideLeft {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
    }

    @keyframes slideRight {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
    }


    /* PREDIKSI */
    .prediksi-card {
    display: flex;
    background: #1a1a1a;
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    align-items: center;
    border: 1px solid #333;
    }

    .card-image img {
    width: 200px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    }

    .card-content {
    flex: 1;
    padding: 0 20px;
    }

    .card-content h3 {
    color: white;
    margin: 0 0 10px 0;
    font-family: Arial, sans-serif;
    }

    .card-content p {
    color: #cccccc;
    margin: 5px 0;
    font-family: Arial, sans-serif;
    }

    .prediksi-btn {
    background: linear-gradient(to bottom, #0004ee, #000286);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    }

    .prediksi-btn:hover {
    background: linear-gradient(to bottom, #0004ee, #000286);
    }


    .prediksi-detail {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    }

    .back-btn {
    background: #cc0000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    }

    .prediksi-image {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    }

    .prediksi-numbers {
    color: white;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    text-align: center;
    font-weight: bold;
    font-size: larger;
    }

    .pasaran-filter {
        margin: 20px 0;
        text-align: right;
        display: flex;
        justify-content: flex-end;
    }
    
    #pasaranSelect {
        width: 200px;
        padding: 10px;
        border-radius: 5px;
        background: #1a1a1a;
        color: white;
        border: 1px solid #333;
        font-family: Arial, sans-serif;
        margin-right: 0;
    }
    
    #pasaranSelect {
        width: 200px;
        padding: 10px;
        border-radius: 5px;
        background: #1a1a1a;
        color: white;
        border: 1px solid #333;
        font-family: Arial, sans-serif;
        margin-left: 0;
    }
    


    /* RESULT */
    .result-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;
    }

    .result-card {
    background: linear-gradient(180deg, #001146 -50%, #000923 100%);
    border-radius: 10px;
    padding: 15px;
    position: relative;
    border: 1px solid #ffee00;
    }

    .info-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    cursor: pointer;
    color: white;
    }

    .pool-logo {
    text-align: center;
    margin-top: 20px;
    }

    .pool-logo img {
    max-width: 170px;
    height: auto;
    border-radius: 8px;
    }

    .pool-name {
    color: white;
    font-size: 20px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    text-align: center;
    }

    .result-box {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
    padding: 10px;
    background: #000000;
    border-radius: 5px;
    position: relative;
    }

    .result-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px;
    background: linear-gradient(90deg, #eeff00 50%, transparent 50%) repeat-x,
                linear-gradient(90deg, #eeff00 50%, transparent 50%) repeat-x,
                linear-gradient(0deg, #eeff00 50%, transparent 50%) repeat-y,
                linear-gradient(0deg, #eeff00 50%, transparent 50%) repeat-y;
    background-size: 15px 2px, 15px 2px, 2px 15px, 2px 15px;
    background-position: 0 0, 0 100%, 0 0, 100% 0;
    animation: border-dance 15s infinite linear;
    }

    @keyframes border-dance {
    0% {
        background-position: 0 0, 0 100%, 0 0, 100% 0;
    }
    100% {
        background-position: 100% 0, -100% 100%, 0 -100%, 100% 100%;
    }
    }
    .result-box span {
        color: #ffd500;
        font-size: 3rem;
        font-weight: bold;
        font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    }

    .result-date {
    text-align: center;
    color: white;
    margin: 10px 0;
    font-family: Arial, sans-serif;
    }

    .aksi-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    }

    .aksi-buttons button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-family: Arial, sans-serif;
    }

    .aksi-buttons button img {
    width: 20px;
    height: 20px;
    }

    .prediksi-btn {
    background: linear-gradient(to bottom, #132af7, #0d0081);
    color: white;
    }

    .betting-btn {
    background: linear-gradient(to bottom, #132af7, #0d0081);
    color: white;
    }

    @media screen and (max-width: 768px) {
    .result-card {
        max-width: 100%;
    }
    }

    /* RESULT POP UP */
    .info-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    }

    .popup-content {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    color: white;
    font-size: 20px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    text-align: center;
    }

    .popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    }

    .popup-header h3 {
    color: white;
    margin: 0;
    }

    .close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    }

    .popup-img {
    text-align: center;
    margin-bottom: 20px;
    }

    .popup-img img {
    max-width: 200px;
    height: auto;
    }

    .info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    color: white;
    }

    .info-table td {
    padding: 10px;
    border: 1px solid #333;
    color: white;
    font-size: 20px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    text-align: center;
    }

    .website-link {
    text-align: center;
    color: white;
    }

    .website-link a {
    color: #cc0000;
    text-decoration: none;
    font-weight: bold;
    }

    .website-link a:hover {
    text-decoration: underline;
    }


    /* Jadwal Togel */

    .jadwal-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        background: #1a1a1a;
        color: white;
        font-family: Arial, sans-serif;
    }
    
    .jadwal-table th,
    .jadwal-table td {
        padding: 12px;
        text-align: center;
        border: 1px solid #333;
    }
    
    .jadwal-table th {
        background: #000981;
        font-weight: bold;
    }
    
    .jadwal-table tr:hover {
        background: #2a2a2a;
    }
    
    .jadwal-table a {
        color: #c3f805;
        text-decoration: none;
        font-weight: bold;
    }
    
    .jadwal-table a:hover {
        color: #ff0000;
        text-decoration: underline;
    }

    .search-pasaran {
        margin: 20px 0;
        text-align: end;
    }
    
    .search-pasaran-input {
        padding: 10px;
        width: 300px;
        border: 2px solid #0d0081;
        border-radius: 5px;
        font-size: 16px;
        background: #1a1a1a;
        color: white;
    }
    
    .search-pasaran-input:focus {
        outline: none;
        border-color: #0d0081;
    }



    /* BBFS Togel */

    .bbfs-container-main {
        margin: 20px auto;
        padding: 20px;
        background: #1a1a1a;
        border-radius: 10px;
    }
    .bbfs-container-main .site-title {
        text-align: center;
        color: white;
    }
    .bbfs-container-main .hr2 {
        border-color: #0d0081;
        margin: 20px 0;
    }
    .bbfs-container-main .bbfs-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .bbfs-container-main .input-group {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .bbfs-container-main .input-group label {
        color: white;
        font-family: Arial, sans-serif;
    }
    .bbfs-container-main input, 
    .bbfs-container-main select {
        padding: 8px;
        border: 1px solid #0d0081;
        border-radius: 4px;
        background: #ffffff;
        color: rgb(0, 0, 0);
    }
    .bbfs-container-main button {
        padding: 10px;
        background: linear-gradient(to bottom, #132af7, #0d0081);
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-weight: bold;
    }
    .bbfs-container-main button:hover {
        background: linear-gradient(to bottom, #132af7, #0d0081);
    }
    .bbfs-container-main .alert {
        padding: 10px;
        background: #bebebe;
        border: 1px solid #0d0081;
        border-radius: 4px;
        margin-top: 10px;
        color: rgb(0, 0, 0);
        font-family: Arial, sans-serif;
    }
    .bbfs-container-main .hasil {
        padding: 15px;
        background: #ffffff;
        border: 1px solid #0d0081;
        border-radius: 4px;
        word-wrap: break-word;
        margin-top: 10px;
        color: rgb(0, 0, 0);
        font-family: Arial, sans-serif;
    }

    .bbfs-container-main .button-group {
        display: flex;
        gap: 10px;
        margin-top: 15px;
    }
    
    .bbfs-container-main .button-group button {
        flex: 1;
        padding: 12px;
        background: linear-gradient(to bottom, #132af7, #0d0081);
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-weight: bold;
        font-size: 16px;
        width: 100%;
    }
    
    .bbfs-container-main .button-group button:hover {
        background: linear-gradient(to bottom, #132af7, #0d0081);
    }

    .bbfs-togel .alert,
    .bbfs-togel .hasil {
        display: none;
    }

    .bbfs-container-main .message-area {
        padding: 15px;
        background: #1a1a1a;
        border: 1px solid #0d0081;
        border-radius: 4px;
        margin-bottom: 15px;
        color: white;
        font-family: Arial, sans-serif;
        line-height: 1.6;
    }
    
    .bbfs-container-main .message-area p {
        margin: 5px 0;
    }
    
    .bbfs-container-main .message-area i {
        color: #132af7;
        margin-right: 8px;
    }
    
    .bbfs-container-main .message-area strong {
        color: #132af7;
    }

    /* Button Pilih */
    .pilih-pilih {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    }

    .pilih-btn {
    background: linear-gradient(to bottom, #132af7, #0d0081);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    transition: transform 0.2s;
    width: 300px; /* Fixed width for all buttons */
    }


    .pilih-btn:hover {
    background: linear-gradient(to bottom, #132af7, #0d0081);
    transform: translateY(-2px);
    }

    .pilih-btn i {
    font-size: 18px;
    }

    /* ARTIKEL */

    .site-article {
        color: white;
        padding: 20px;
        font-family: Arial, sans-serif;
        line-height: 1.6;
    }
    
    .site-article h1 {
        font-size: 24px;
        color: #eeff00;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .site-article h2 {
        font-size: 20px;
        color: #eeff00;
        margin: 25px 0 15px;
    }
    
    .site-article p {
        margin-bottom: 15px;
    }
    
    .site-article ol {
        padding-left: 20px;
        margin: 15px 0;
    }
    
    .site-article li {
        margin-bottom: 15px;
    }
    
    .site-article strong {
        color: #eeff00;
    }
    

    /*Mobile*/
    @media screen and (max-width: 1100px) {
        .result-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
    
        .result-card {
            width: 100%;
        }

        .pilih-pilih {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            width: 100%;
            padding: 0 10px;
        }
        .pilih-pilih button:last-child {
            grid-column: 1 / -1;
            width: 50%;
            margin: 0 auto;
        }
        .pilih-btn {
            padding: 10px 15px;
            font-size: 12px;
            width: 100%;
        }
    
        .pilih-btn i {
            font-size: 14px;
        }
    }

    @media screen and (max-width: 768px) {
    .second-nav, .live-clock {
        display: none;
    }

    .nav-list {
        padding: 0 5px;
    }

    .nav-list li {
        margin: 1px 3px;
    }

    .nav-list a {
        font-size: 15px;
    }

    .top-nav {
        padding: 5px 10px;
    }
    .logo-container {
        width: 100%;
        display: flex;
        justify-content: center;
        border-bottom: solid #0d0081 2px;
        border-radius: 10px;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    .announcement-container {
        background-color: black;
        padding: 10px 0px;
        margin-top: 0px;
        overflow: hidden;
        display: flex;
        align-items: center;
        position: relative;
    }
    .logo-mobile {
        max-width: 200px;
        height: auto;
        width: 100%;
    }

    .scrolling-text {
        color: white;
        font-family: Arial, sans-serif;
        white-space: nowrap;
        animation: scroll-left 30s linear infinite;
        padding-left: 20px;
        animation-delay: 0s;
    }

    @keyframes scroll-left {
        0% {
            transform: translateX(30%);
        }
        100% {
            transform: translateX(-100%);
        }
    }
    .link-buttons {
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        font-family: Arial, sans-serif;
    }

    .button-row {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .link-btn {
        align-items: center;
        text-align: center;
        gap: 8px;
        padding: 12px 24px;
        background: linear-gradient(to bottom, #132af7, #0d0081);
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        width: 200px;
        transition: all 0.3s ease;
    }

    .link-btn:hover {
        background: linear-gradient(to bottom, #0d0081, #132af7);
        transform: translateY(-2px);
    }

    .link-btn i {
        font-size: 18px;
    }
    .prediksi-card {
        flex-direction: column;
        text-align: center;
    }

    .card-image {
        margin-bottom: 15px;
    }

    .card-content {
        padding: 0;
        margin-bottom: 15px;
    }

    .card-action {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .result-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px 0;
    }
    .result-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .controls-container {
        flex-direction: column;
    }

    .pilih-pilih {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
        padding: 0 10px;
    }
    .pilih-pilih button:last-child {
        grid-column: 1 / -1;
        width: 50%;
        margin: 0 auto;
    }
    .pilih-btn {
        padding: 10px 15px;
        font-size: 12px;
        width: 100%;
    }

    .pilih-btn i {
        font-size: 14px;
    }

    .winner-wrapper {
        width: 100%;
        margin: 10px 0;
    }

    .site-article {
        padding: 15px;
    }
    
    .site-article h1 {
        font-size: 20px;
    }
    
    .site-article h2 {
        font-size: 18px;
    }

    .jadwal-table th,
    .jadwal-table td {
        padding: 12px;
        text-align: center;
        border: 1px solid #333;
        font-size: 11px;
    }

    .pool-logo img {
        max-width: 200px;
        height: auto;
        border-radius: 8px;
    }

    .search-pasaran {
        margin: 20px 0;
        text-align: center;
    }

    .prediksi-numbers {
        color: white;
        font-family: Arial, sans-serif;
        line-height: 1.6;
        text-align: center;
        font-weight: bold;
        font-size: medium;
        }

    }




    .prediksi-numbers p {
        color: white;
        margin: 5px 0;
    }
    
    .prediksi-numbers .red-text {
        color: #fffb00;
    }
    
    .result-time {
        margin-top: 10px;
    }




    .result-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        background: #1a1a1a;
        color: white;
        font-family: Arial, sans-serif;
    }
    
    .result-table th,
    .result-table td {
        padding: 12px;
        text-align: center;
        border: 1px solid #333;
    }
    
    .result-table th {
        background: #0d0081;
    }
    
    .pagination {
        display: flex;
        gap: 5px;
        justify-content: center;
        margin-top: 20px;
    }
    
    .pagination button {
        padding: 8px 12px;
        background: #1a1a1a;
        border: 1px solid #0d0081;
        color: white;
        cursor: pointer;
    }
    
    .pagination button.active {
        background: #0d0081;
    }
    
    .pool-selector {
        margin: 20px 0;
    }
    
    .pool-selector select {
        padding: 8px;
        background: #1a1a1a;
        color: white;
        border: 1px solid #0d0081;
    }
    
    .pool-info {
        margin: 0px 0;
        color: white;
    }
    
    .list-pool-name {
        font-size: 1.5rem;
        font-weight: bold;
        color: #ffd700;
        font-family: Arial, sans-serif;
    }
    
    .pool-selector-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .data-result-link {
        position: relative;
    }
    
    .new-badge {
        position: absolute;
        left: -13px;
        top: -12px;
        background: #ff0000;
        color: white;
        padding: 2px 6px;
        border-radius: 3px;
        font-size: 10px;
        animation: blink 1s infinite;
    }
    
    @keyframes blink {
        0% { opacity: 1; }
        50% { opacity: 0.3; }
        100% { opacity: 1; }
    }
    