 /* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Struktur Layout */
html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #121212;
    color: white;
}

/* Navbar */
.navbar {
    background: linear-gradient(90deg, #ffcc00, #ff9900);
    color: #222;
    text-align: center;
    padding: 15px;
    font-size: 26px;
    font-weight: bold;
    width: 100%;
    text-transform: uppercase;
    cursor: pointer;
}

/* Kontainer Utama */
.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
}


.btn-login {
    background: linear-gradient(90deg, #ffffff, #dcdcdc);
    color: #000;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: linear-gradient(90deg, #f0f0f0, #c0c0c0);
}

.promosi {
    color: #FFD700; /* Warna emas */
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(255, 215, 0, 0.5); /* Efek bayangan emas */
    padding: 10px;
    background: transparent; /* Latar belakang transparan */
    border-radius: 10px;
}
/* Match Schedule */
.match-schedule {
    text-align: center;
    background: #1e1e1e;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.2);
    width: 90%;
    max-width: 800px;
    margin-top: 20px;
}
.match-schedule h2 {
    font-size: 22px;
    color: #ffcc00;
    margin-bottom: 15px;
}

/* Match Card */
.match-card {
    background: #282828;
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(255, 204, 0, 0.2);
    text-align: center;
}

.match-card h3 {
    font-size: 20px;
    color: #ffcc00;
    margin-bottom: 8px;
}

.match-card p {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 10px;
}
.match-info {
    display: flex;
    flex-wrap: wrap; /* Supaya turun ke bawah jika layar kecil */
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: solid grey;
    gap: 5px;
}

.match-info strong {
    flex: 0 0 auto; /* Biar bagian label tidak berubah ukurannya */
    margin-right: 5px;
}

.match-info span {
    flex: 1; /* Biar teks setelah ":" menyesuaikan */
    white-space: nowrap; /* Cegah teks terpotong di layar besar */
    overflow: hidden;
    text-overflow: ellipsis; /* Tambahkan "..." jika kepanjangan */
}

/* Jika layar kecil, buat teks turun ke bawah */
@media screen and (max-width: 600px) {
    .match-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .match-info strong,
    .match-info span {
        width: 100%; /* Supaya sejajar setelah ":" */
        white-space: normal;
    }
}
.container-match-info {
    border: 1px solid #ccc;  /* Garis abu-abu */
    padding: 10px;  /* Jarak dalam container */
    border-radius: 5px;  /* Sudut melengkung */
    background-color: transparent;  /* Transparan tanpa latar belakang */
    margin-top: 10px;  /* Jarak dari elemen lain di atasnya */
	margin-bottom: 15px;
	
}
.league-info {
    display: flex;
    flex-direction: column; /* Susun elemen secara vertikal */
    align-items: center; /* Posisikan ke tengah */
    justify-content: center;
    margin-bottom: 10px;
}

.league-logo {
    width: 50px; /* Ukuran logo */
    height: 50px;
    object-fit: contain; /* Hindari distorsi */
    background: none; /* Hapus background putih */
    padding: 0; /* Hilangkan padding */
    border-radius: 0; /* Pastikan tidak ada border-radius jika tidak perlu */
    filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.3)); /* Tambahkan efek bayangan agar lebih menyatu */

    

}

.league-name {
    font-size: 14px;
    font-weight: bold;
    color: yellow;
    text-align: center;
    margin-top: 5px; /* Beri jarak antara logo dan nama liga */
}

.team-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Jarak antar tim */
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px; /* Ukuran card tetap */
    height: 120px; /* Tinggi card tetap */
    padding: 10px;
    border: 2px solid grey; /* Garis emas */
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5); /* Transparan hitam */
    text-align: center;
    backdrop-filter: blur(5px); /* Efek blur untuk tampilan mewah */
}

.team-logo {
    width: 60px; /* Ukuran logo tetap */
    height: 60px;
    object-fit: contain;
}

.team-name {
    margin-top: 5px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap; /* Nama tidak terpotong */
    overflow: hidden;
    text-overflow: ellipsis; /* Tambahkan "..." jika terlalu panjang */
    width: 100px; /* Pastikan ukuran tetap */
    color: white; /* Warna teks putih agar kontras */
}

/* Memposisikan teks "VS" di tengah */
.vs-text {
    font-size: 18px;
    font-weight: bold;
    color: white; /* Warna teks putih */
    text-align: center;
    min-width: 50px; /* Pastikan ukuran tetap */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 🎯 Tombol Umum */
.btn {
    display: inline-block;
    background: linear-gradient(90deg, #ffcc00, #ff9900);
    color: #222;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-align: center;
    width: 100%;
    max-width: 200px;
}

.btn:hover {
    background: #ffcc00;
    transform: scale(1.05);
}

.btn:active {
    transform: scale(0.95);
}

/* 🎥 Tombol "Tonton Live" dengan warna kuning emas */
.btn-watch {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;

    /* Warna kuning emas */
    background-color: #FFD700 !important; /* Warna emas */
    color: black !important; /* Warna teks hitam */
    border: 2px solid #FFD700 !important; /* Garis emas */
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.5); /* Efek glow */
    width: 100%;
    max-width: 200px;
}

/* Efek saat hover */
.btn-watch:hover {
    background-color: #DAA520 !important; /* Warna emas lebih gelap */
    border-color: #DAA520 !important;
    color: black !important;
    box-shadow: 0 6px 12px rgba(218, 165, 32, 0.7);
}

/* Efek saat tombol ditekan */
.btn-watch:active {
    background-color: #B8860B !important; /* Warna emas lebih pekat */
    border-color: #B8860B !important;
    box-shadow: 0 2px 4px rgba(184, 134, 11, 0.5);
}

/* Pastikan tidak ada CSS lain yang menimpa */
a.btn-watch {
    background-color: #FFD700 !important;
    color: black !important;
}
/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, #222, #333);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
}

/* Footer Menu */
.footer-menu {
    display: flex;
    width: 100%;
}

/* Footer Buttons */
.footer-menu button {
    flex: 1;
    background: #ffcc00;
    color: #222;
    border: none;
    font-size: 12px;
    font-weight: bold;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    min-width: 80px;
}

.footer-menu button:hover {
    background: #ff9900;
    color: white;
    transform: scale(1.05);
}

/* 🎥 Video Wrapper */
.video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    margin: 20px auto;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid #ffcc00;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
    position: relative;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* ℹ️ Informasi Video Error */
.stream-info {
    text-align: center;
    font-size: 16px;
    color: #ddd;
    margin-top: 10px;
}

/* 🔄 Responsif */
@media (max-width: 768px) {
    .video-wrapper {
        width: 100%;
    }

    .match-title {
        font-size: 22px;
    }

    .btn, .btn-watch {
        font-size: 14px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .footer p {
        font-size: 8px;
    }

    .btn, .btn-watch {
        font-size: 12px;
        padding: 8px;
    }
}

/* 🔑 Authentication */
.auth-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logout-btn {
    background-color: #d9534f;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 10px auto;
    width: 50%;
}

.logout-btn:hover {
    background-color: #c9302c;
    transform: scale(1.05);
}

/* Login Section */
.login-section {
    margin: 20px auto;
    background: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.2);
    width: 90%;
    max-width: 400px;
}

.username {
    font-size: 20px;
    font-weight: bold;
    color: #ffcc00;
    margin-bottom: 15px;
    text-align: center;
}

/* Banner Premium */
.premium-banner {
    background-color: #ffcc00;
    text-align: center;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.premium-btn {
    display: block;
    background: linear-gradient(90deg, #ff8c00, #ff2e00);
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s ease-in-out;
    text-align: center;
    width: 100%;
    max-width: 250px;
    margin: 20px auto;
}

.premium-btn:hover {
    background: linear-gradient(90deg, #ff6a00, #ff1e00);
    transform: scale(1.05);
}

.premium-btn:active {
    transform: scale(0.95);
}


/* stream */

.match-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #FFD700; /* Warna kuning keemasan */
    margin-bottom: 15px;
}
      .premium-user-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
            gap: 15px;
        }

        .premium-username {
            display: flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(45deg, #ffcc00, #ff9900);
            color: white;
            padding: 12px 20px;
            border-radius: 30px;
            font-size: 1.2rem;
            font-weight: bold;
            box-shadow: 0px 4px 10px rgba(255, 165, 0, 0.3);
            transition: transform 0.2s ease-in-out;
        }

        .premium-username:hover {
            transform: scale(1.05);
        }

        .verified-icon {
            width: 20px;
            height: 20px;
            object-fit: contain;
            vertical-align: middle;
            filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.2));
        }

        .logout-btn {
            background: #ff4444;
            color: white;
            border: none;
            padding: 10px 18px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            box-shadow: 0px 4px 10px rgba(255, 0, 0, 0.3);
            transition: background 0.3s, transform 0.2s;
        }

        .logout-btn:hover {
            background: #cc0000;
            transform: scale(1.05);
        }

.premium-user{
margin-top: 30px;
}

.premium-user-box {
    text-align: center;
    background: none;
    padding: 10px;
}

.premium-label {
    font-size: 18px;
    font-weight: bold;
    color: yellow;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.verified-icon {
    width: 20px;
    height: 20px;
}

.logout-btn {
    background-color: red;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    display: block;
    margin: 10px auto;
    transition: 0.3s;
}

.logout-btn:hover {
    background-color: darkred;
}
/* Efek Blinking Warna Merah */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* Efek Berkilau (Glow) Warna Merah */


.maaf {
    font-size: 15px;
    font-weight: bold;
    color: red;
    text-align: center;
    background: rgba(255, 0, 0, 0.1); /* Background merah transparan */
    padding: 10px;
    border: 2px solid red;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 90%;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    animation: glow 1.5s infinite alternate; /* Efek berkilau */
}


