body{
    background: linear-gradient(
        135deg,
        #0f172a,
        #1e293b,
        #312e81
    );
    min-height:100vh;
    color:white;
    font-family:'Poppins',sans-serif;
}

/* Navbar */
.navbar{
    background: rgba(0,0,0,.3);
    backdrop-filter: blur(15px);
}

.navbar-brand{
    color:#fff !important;
    font-weight:bold;
}

/* Card */
.card{
    background: rgba(255,255,255,.08);
    border:none;
    border-radius:20px;
    backdrop-filter: blur(15px);
    color:white;
    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:0 0 25px rgba(0,255,255,.4);
}

/* Judul */
.page-title{
    font-size:32px;
    font-weight:bold;

    background:linear-gradient(
        90deg,
        #00f5ff,
        #8b5cf6,
        #ec4899
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* Tombol */
.btn-primary{

    background:linear-gradient(
        90deg,
        #06b6d4,
        #8b5cf6
    );

    border:none;
}

.btn-success{

    background:linear-gradient(
        90deg,
        #10b981,
        #06b6d4
    );

    border:none;
}

.btn-danger{

    background:linear-gradient(
        90deg,
        #ef4444,
        #ec4899
    );

    border:none;
}

/* Statistik */
.stat-box{

    background:rgba(255,255,255,.08);

    border-radius:20px;

    padding:20px;

    text-align:center;

    backdrop-filter:blur(10px);
}

.stat-number{

    font-size:40px;

    font-weight:bold;

    color:#00f5ff;
}

/* Table */
.table{
    color:white;
}

.table thead{
    background:#8b5cf6;
}

/* ===== BRACKET CHALLONGE STYLE ===== */

.bracket{
    display:flex;
    gap:60px;
    overflow-x:auto;
    padding:20px;
}

.round{
    min-width:280px;
}

.round-title{

    background:linear-gradient(
        90deg,
        #06b6d4,
        #8b5cf6
    );

    padding:12px;

    border-radius:10px;

    text-align:center;

    font-weight:bold;

    margin-bottom:20px;
}

.match{

    background:rgba(255,255,255,.08);

    border-radius:15px;

    margin-bottom:30px;

    overflow:hidden;

    backdrop-filter:blur(10px);

    box-shadow:0 0 15px rgba(0,0,0,.3);
}

.team{

    padding:12px;

    border-bottom:1px solid rgba(255,255,255,.1);
}

.team:last-child{
    border-bottom:none;
}

.time{

    background:#8b5cf6;

    text-align:center;

    padding:8px;

    font-size:12px;
}

/* Dashboard */

.header{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border-radius:20px;

    padding:30px;

    margin-bottom:25px;

    border:1px solid rgba(255,255,255,.1);
}

.card-custom{

    background:rgba(255,255,255,.08) !important;

    backdrop-filter:blur(15px);

    border:none;

    border-radius:20px;

    color:white;

    transition:.3s;
}

.card-custom:hover{

    transform:translateY(-5px);

    box-shadow:0 0 25px rgba(0,255,255,.4);
}

.angka{

    font-size:42px;

    font-weight:700;

    color:#00f5ff;
}

.chat-btn{
    background: #0d6efd !important;
    color: #fff !important;
    border-radius: 8px;
    margin: 5px 10px;
    font-weight: bold;
    display: block;
    padding: 12px 15px;
    transition: 0.3s;
}

.chat-btn:hover{
    background: #0b5ed7 !important;
    color: #fff !important;
    transform: scale(1.03);
}

.bubble{
    display:inline-block;
    padding:10px;
    border-radius:10px;
    max-width:300px;
    color:white !important;
}

.chat-box,
.chat-box p,
.chat-box span,
.chat-box div{
    color:white;
}

.game-card{
    position:relative;
    overflow:hidden;
    border-radius:15px;
    cursor:pointer;
    transition:.3s;
}

.game-list{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
    padding:20px;
}

.game-card{
    width:220px;
    border-radius:20px;
    overflow:hidden;
    position:relative;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.15);

    box-shadow:
    0 10px 30px rgba(0,0,0,.4),
    0 0 15px rgba(0,255,255,.15);

    transition:.3s;
}

.game-card:hover{
    transform:translateY(-10px) scale(1.03);

    box-shadow:
    0 20px 40px rgba(0,0,0,.6),
    0 0 25px rgba(0,255,255,.4);
}

.game-card{
    width:190px;
    height:500px;
    border-radius:20px;
    overflow:hidden;
    position:relative;

    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.15);

    box-shadow:
    0 10px 30px rgba(0,0,0,.4),
    0 0 15px rgba(0,255,255,.15);

    transition:.3s;
}

.game-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.game-card:hover img{
    transform:scale(1.08);
}

.game-name{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;

    padding:15px;
    text-align:center;

    color:#fff;
    font-size:18px;
    font-weight:700;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.9)
    );

    opacity:1;
    transition:.3s;
}

.game-card:hover .game-name{
    opacity:1;
}

.game-container{
    display:flex;
    justify-content:space-evenly;
    align-items:flex-start;
    flex-wrap:nowrap;
    width:100%;
    padding:20px;
}

.game-title{
    position:absolute;
    bottom:15px;
    width:100%;
    text-align:center;

    color:white;
    font-size:15px;
    font-weight:700;

    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;

    text-shadow:0 2px 10px rgba(0,0,0,.8);
}
.match-box{
    background:#444;
    border-radius:10px;
    margin-bottom:80px;
    position:relative;
    overflow:visible;
    min-width:250px;
}

/* Garis horizontal */
.match-box::after{
    content:'';
    position:absolute;
    right:-60px;
    top:50%;
    width:60px;
    height:2px;
    background:#fff;
}

/* Garis vertikal */
.match-box::before{
    content:'';
    position:absolute;
    right:-60px;
    top:50%;
    width:2px;
    height:130px;
    background:#fff;
}

.final-box::before,
.final-box::after{
    display:none;
}

.final-box{
    margin-top:85px;
}

.match-box{
    background:#444;
    border-radius:8px;
    margin-bottom:50px;
    position:relative;
    overflow:visible;
}

/* garis horizontal */
.match-box::after{
    content:'';
    position:absolute;
    top:50%;
    right:-60px;
    width:60px;
    height:3px;
    background:white;
}

/* garis vertikal */
.match-box::before{
    content:'';
    position:absolute;
    top:50%;
    right:-60px;
    width:3px;
    height:120px;
    background:white;
}