* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    touch-action: manipulation;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    background-image: url('/src/image/background/background.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100vw 100vh;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.514);
    z-index: -1;
}

/* Header Styles */
.top-bar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    background: linear-gradient(135deg, #FFF4C2, #e6b000, #a88100, #302500, #000000, #e6b000, #FFF4C2);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    border: 2px solid #ffc400;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}
.top-bar:hover {
    background: linear-gradient(135deg, #FFF4C2, #e6b000, #a88100, #ffecae, #ffffff, #e6b000, #FFF4C2);
}

.logo {
    width: 100px;
    height: 50px;
    border-radius: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hamburger-menu {
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: rgb(0, 0, 0);
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #ffee00;
    transition: all 0.3s ease;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.hamburger-menu:hover {
    background: linear-gradient(135deg, #ffc2c2, #e60000, #300000, #e60000);
    transform: scale(1.05);
}

.hamburger-menu span {
    display: block;
    width: 28px;
    height: 3px;
    background: linear-gradient(to right, #FFF4C2, #e6b000, #302500, #e6b000);
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover span {
    background: linear-gradient(to right, #FFF4C2, #e6b000, #ffffff, #e6b000);
}

.banner-container {
    position: relative;
    margin-top: 70px;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    touch-action: pan-y;
}

.banner-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.banner-slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-content {
    position: absolute;
    width: 100%;
    height: 200%;
    top: 0;
    left: 0;
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.banner-slide img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    display: block;
}

.slide-arrow {
    position: absolute;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.arrow-left {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.arrow-right {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.arrow-up {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.arrow-down {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ffffff;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 237, 155, 0.8);
}

.v-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.v-indicator.active {
    background: #ffffff;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 235, 148, 0.8);
}

.slide-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 10;
}

/* Hamburger Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: linear-gradient(145deg, #ffc4c4, #ff5555, #ff0000, #9c0000, #4e0000, #000000, #a50000, #ff0000, #ff8d8d);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: all 1s ease;
    box-shadow: -5px 0 15px rgb(0, 0, 0);
    border-left: 3px solid #ffe600;
}

.menu-overlay.active {
    right: 0;
}

.menu-header {
    padding: 25px 20px;
    background: linear-gradient(135deg, #ffffff, #e6b000, #a88100, #4e3c00, #000000, #e6b000, #FFF4C2);
    border-bottom: 2px solid #ffe600;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
    
}

.menu-header h2 {
    color: #ffffff;
    font-size: 1.8rem;
    text-align: center;
    text-shadow: 2px 2px 5px rgb(0, 0, 0);
}

.menu-content {
    padding: 20px;
    flex-grow: 1;
    overflow-y: auto;
}

.menu-items {
    list-style: none;
}

.menu-items li {
    margin-bottom: 15px;
    position: relative;
}

.menu-items > li > a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #ffffff, #e6b000, #a88100, #4e3c00, #000000, #e6b000, #FFF4C2);
    color: rgb(255, 255, 255);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 1px solid rgb(255, 230, 0);
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);

}

.menu-items > li > a:hover {
    background: linear-gradient(135deg, #ffffff, #d3d3d3, #7e7e7e, #424242, #000000, #b9b9b9, #ffffff);
    transform: translateX(-5px);
    border-color: #ffe600;
}

.menu-items i {
    margin-right: 15px;
    color: #ffffff;
    font-size: 1.4rem;
    width: 30px;
    text-align: center;
    
}

.close-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 25px;
    cursor: pointer;
    background: linear-gradient(135deg, #ffffff, #d3d3d3, #7e7e7e, #424242, #000000, #e0e0e0, #ffffff);
    border-radius: 50%;
    border: 1px solid #ffee00;
    transition: all 0.3s ease;
    box-shadow: inset -2px -2px 2px rgb(0, 0, 0),
            inset 2px 2px 1.5px rgb(255, 255, 255),
            2px 2px 8px rgb(0, 0, 0);
}

.close-menu:hover {
    background: linear-gradient(145deg, #ffc4c4, #ff5555, #ff0000, #9c0000, #4e0000, #000000, #ff0000, #ffbbbb, #ffffff);
    transform: rotate(90deg);
}

/* Submenu Styles */
.submenu {
    list-style: none;
    padding-top: 8px;
    padding-left: 30px;
    padding-right: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease;
}

.submenu.active {
    max-height: 1000px;
}

.submenu li {
    margin-bottom: 8px;
}

.submenu a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ffffff, #d3d3d3, #7e7e7e, #424242, #000000, #b9b9b9, #ffffff);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.5s ease;
    font-size: 0.95rem;
    border: 1px solid rgb(255, 208, 0);
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.submenu a:hover {
    background: linear-gradient(135deg, #ffc4c4, #ff5555, #ff0000, #9c0000, #4e0000, #000000, #a50000, #ff0000, #ff8d8d);
    transform: translateX(-20px);
    border: 1px solid rgb(255, 208, 0);
}

.submenu i {
    font-size: 1rem;
    width: 25px;
    margin-right: 10px;
}

.has-submenu > a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: auto;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.has-submenu.active > a::after {
    transform: rotate(180deg);
}

.bukti-header {
    text-align: center;
    margin-bottom: 10px;
}

.bukti-header h1 {
    font-size: 2.5rem;
    color: #ffd900;
    text-shadow: 2px 2px 2px #000;
    margin-bottom: 10px;
    margin-top: 10px;
    background: linear-gradient(135deg, #000, #222, #444, #222, #000);
    padding: 15px;
    border-radius: 15px;
    border: 2px solid #ffc400;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}


/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    body {
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
        background-color: #000;
        color: #fff;
        overflow-x: hidden;
        background-image: url('/src/image/background/background.webp');
        background-repeat: repeat;
        background-attachment: scroll;
        background-size: contain;
        flex-direction: column;
        position: relative;
    }

    .banner-container {
        height: 350px;
        margin-top: 70px;
    }
    
    .slide-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .slide-info {
        left: 10px;
        bottom: 10px;
        padding: 10px;
        max-width: 70%;
    }
    
    .slide-info h3 {
        font-size: 18px;
    }
    
    .slide-info p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .banner-container {
        height: 250px;
    }
    
    .slide-indicators {
        bottom: 10px;
        right: 10px;
        gap: 6px;
        padding: 6px 10px;
    }
    
    .slide-counter {
        top: 10px;
        right: 10px;
        padding: 5px 10px;
        font-size: 12px;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
    width: auto;
    border-radius: 5px;
}

.logo-title {
    font-size: 1.4rem;
    font-weight: bold;
    background: linear-gradient(to right, #f9c90b, #ffdd65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 5px rgba(249, 201, 11, 0.3);
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: calc(100vh - 150px);
}

.section-title {
    text-align: center;
    margin: 20px 0 30px;
    position: relative;
}

.section-title h1 {
    font-size: 2rem;
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(249, 201, 11, 0.5);
    position: relative;
    display: inline-block;
}

.section-title h1::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #ddd;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Market Grid */
.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.market-card {
    background: linear-gradient(135deg, #FFF4C2, #e6b000, #a88100, #302500, #000000, #e6b000, #FFF4C2);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgb(255, 204, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.market-card:hover {
    transform: translateY(-5px);
    border: 1px solid rgb(255, 0, 0);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffc2c2, #ff0000, #a80000, #300000, #000000, #e60000, #ffc2c2);
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.market-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 10%;
    border: 1px solid rgb(255, 204, 0);
    background: rgb(255, 255, 255);
    padding: 5px;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.market-logo:hover {
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(255, 204, 0);
}

.market-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 3px #000;
}

.market-schedule {
    font-size: 0.7rem;
    color: #09ff00;
    margin-top: 5px;
    text-shadow: 1px 1px 2px #000;
}

/* Popup Styles */
.popup-overlay {
    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: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.popup-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.popup-content {
    overflow-y: scroll;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    transition: scroll-behavior 0.3s ease;
    background: linear-gradient(to bottom, #1d1d1d, #000000);
    width: 95%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 5%;
    border: 3px solid rgb(255, 204, 0);
    position: relative;
    padding: 100px 20px;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

/* Custom Scrollbar for Popup */
.popup-content::-webkit-scrollbar {
    width: 8px;
}

.popup-content::-webkit-scrollbar-track {
    background: rgb(0, 0, 0);
    border-radius: 10px;
}

.popup-content::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #ff0000, #9c0000, #4e0000);
    border-radius: 10px;
    border: 1px solid #ffc400;
}

.popup-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #ff5555, #ff0000, #a80000);
}

.popup-content {
    scrollbar-width: thin;
    scrollbar-color: #ff0000 rgba(0, 0, 0, 0.2);
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.popup-header {
    text-align: center;
    margin-bottom: 20px;
}

.popup-market-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin: 0 auto 10px;
    border: 2px solid rgb(255, 204, 0);
    border-radius: 10%;
    background: rgb(255, 255, 255);
    padding: 5px;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(255, 217, 0);
}

.popup-market-name {
    color: #ffd000;
    font-size: 1.4rem;
    margin-bottom: 5px;
    text-shadow: 2px 2px 3px #000000;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.popup-close:hover {
    background: rgb(129, 129, 129);
}

.popup-section {
    margin-bottom: 25px;
}

.popup-title {
    color: #00ff00;
    text-shadow: 1px 1px 2px #000;
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-align: center;
    position: relative;
    padding-bottom: 8px;
}

.popup-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--secondary);
}

.time-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.time-btn {
    padding: 8px 15px;
    background: linear-gradient(to right, #ffe15c, #e6b000, #6B4E00);
    border: 2px solid rgb(255, 204, 0);
    color: #ffffff;
    text-shadow: 1px 1px 2px #000;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 80px;
    text-align: center;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.time-btn:hover:not(.disabled) {
    background: linear-gradient(to right, #ff5959, #e60000, #6b0000);
    transform: translateY(-2px);
}

.time-btn.active {
    background: var(--secondary);
    color: var(--dark);
    font-weight: 600;
    border-color: var(--secondary);
}

.time-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.bet-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.bet-btn {
    padding: 10px;
    background: linear-gradient(to right, #ffe15c, #e6b000, #6B4E00);
    border: 2px solid rgb(255, 204, 0);
    color: #ffffff;
    text-shadow: 1px 1px 2px #000;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    font-size: 0.9rem;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.bet-btn:hover:not(.disabled) {
    background: linear-gradient(to right, #ff5959, #e60000, #6b0000);
    border: 2px solid rgb(255, 204, 0);
    transform: translateY(-2px);
}

.bet-btn.active {
    background: var(--secondary);
    color: var(--dark);
    font-weight: 600;
    border-color: var(--secondary);
}

.action-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #48ff00, #0aad05, #073a00);
    color: #ffffff;
    text-shadow: 1px 1px 2px #000;
    font-weight: 1000;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 20px;
    font-size: 1.1rem;
    box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.493),
            inset 2px 2px 5px rgb(255, 255, 255),
            2px 2px 8px rgb(0, 0, 0);
}

.action-btn:hover:not(:disabled) {
    background: linear-gradient(to right, #48ff00, #0aad05, #073a00);
    transform: translateY(-2px);
    box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.493),
            inset 2px 2px 5px rgb(255, 255, 255),
            2px 2px 8px rgb(0, 0, 0);}

.action-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Predictions */
.predictions-container {
    background: linear-gradient(135deg, #ffc2c2, #e60000, #a80000, #300000, #000000, #e60000, #ffc2c2);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    border: 3px solid rgb(255, 196, 0);
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);

}

.prediction-card {
    background: linear-gradient(135deg, #FFF4C2, #e6b000, #a88100, #302500, #000000, #e6b000, #FFF4C2);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    border: 3px solid rgb(255, 204, 0);
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(255, 208, 0);
}

.prediction-title {
    font-size: 1rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px #000;
    margin-bottom: 10px;
}

.prediction-number {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffffff;
    text-shadow: 0 0 8px rgb(51, 255, 0);
    padding: 10px;
    background: rgb(43, 43, 43);
    border-radius: 5px;
    margin: 10px 0;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(255, 0, 0);
}

.prediction-explanation {
    font-size: 0.85rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px #000;
    line-height: 1.4;
}

.prediction-warning {
    background: rgba(0, 0, 0, 0.63);
    border: 1px solid rgb(255, 174, 0);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #ffc400;
    line-height: 1.5;
}

footer {
    background: #000000;
    margin-top: 50px;
    text-align: center;
    color: #aaa;
}

.provider-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.provider-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(0.7);
    border: 2px solid #ffffff;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.provider-logo:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(212,175,55,0.5);
    border-color: #ffc400;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(255, 217, 0);
}

.provider-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

/* Footer Styles */
.footer {
    position: relative;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    background: #000000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
    border-radius: 10%;
    border: 2px solid #ffc400;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.footer-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffc400;
    box-shadow: 0 0 20px rgba(51, 36, 36, 0.5);
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(255, 0, 0);
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-title {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgb(255, 0, 0);
    box-shadow: inset -2px -2px 5px rgb(0, 0, 0),
            inset 2px 2px 5px rgb(255, 255, 255),
}

.copyright {
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .market-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .section-title h1 {
        font-size: 1.6rem;
    }
    
    .popup-content {
        width: 100%;
        max-height: 90vh;
        max-width: 45vh;
    }
    
    .bet-buttons {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

@media (max-width: 480px) {
    .market-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logo-title {
        font-size: 1.2rem;
    }
    
    .popup-title {
        font-size: 1rem;
    }
}
