        /* Custom CSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #0ae7fc;
            --secondary-color: #2c3e50;
            --accent-color: #07effd;
            --gold-color: #fdbf00;
        }

        html, body {
            overflow-x: hidden;
            position: relative;
            width: 100%;
            -webkit-overflow-scrolling: touch;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #1d2547;
            background-image: linear-gradient(#1c2041, #1c2041), url('https://images.unsplash.com/photo-1601776735276-aea8edcbd412?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            min-height: 100vh;
        }

        .container {
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
            overflow: hidden;
        }

        .row {
            margin-right: -15px;
            margin-left: -15px;
            width: 100%;
        }

        .hero-section {
            background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 60px 0;
            width: 100%;
            box-shadow: 0 4px 30px #1c2041;
        }

        .navbar {
            background-color: #1c2041 !important;
            padding: 0.5rem 1rem;
            width: 100%;
            z-index: 1000;
            position: fixed;
            top: 0;
            left: 0;
        }

        .navbar-collapse {
            width: 100%;
        }

        .navbar-brand {
            color: var(--primary-color) !important;
            font-weight: 700;
            font-size: 1.5rem;
            padding: 0.5rem 0;
        }

        .nav-link {
            color: white !important;
            margin: 0 0.5rem;
            padding: 0.5rem 0.75rem;
            transition: color 0.3s;
            font-size: 0.9rem;
        }

        .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .navbar-toggler {
            padding: 0.25rem 0.5rem;
            font-size: 1rem;
            border: none;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .hero-content {
            text-align: center;
            padding: 1rem;
            width: 100%;
        }

        .hero-title {
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--accent-color);
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 3vw, 1.5rem);
            margin-bottom: 2rem;
            padding: 0 1rem;
        }

        .cta-button {
            background-color: var(--primary-color);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
            margin: 0.5rem;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .cta-button:hover {
            transform: scale(1.05);
            color: white;
            background-color: #2e92f3;
        }

        .tournament-section {
            padding: 3rem 0;
            position: relative;
            background-color: #1c2041;
            backdrop-filter: blur(15px);
        }

        .section-title {
            color: var(--accent-color);
            text-align: center;
            margin-bottom: 2rem;
            font-size: clamp(1.5rem, 4vw, 2.5rem);
        }

        .tournament-card {
            background-color: #2a2a2a;
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            transition: transform 0.3s;
            height: 100%;
        }

        .tournament-card h3 {
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            margin-bottom: 1rem;
        }

        .tournament-card:hover {
            transform: translateY(-5px);
        }

        .prize-pool {
            color: var(--accent-color);
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .tournament-card p {
            font-size: clamp(0.9rem, 2vw, 1rem);
            margin-bottom: 0.5rem;
        }

        .btn-danger {
            background-color: var(--primary-color);
            border: none;
            padding: 0.5rem 1.5rem;
            font-size: clamp(0.8rem, 2vw, 0.9rem);
            margin-top: 1rem;
        }

        .btn-danger:hover {
            background-color: #2e92f3;
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0.5rem;
            }

            .navbar-collapse {
                background-color: #1c2041;
                padding: 1rem;
                border-radius: 0 0 10px 10px;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
            }

            .nav-link {
                padding: 0.75rem 1rem;
                border-radius: 5px;
            }

            .nav-link:hover {
                background-color: #1c2041;
            }

            .hero-content {
                padding: 1rem 0.5rem;
            }

            .tournament-card {
                margin: 0.75rem 0;
                width: 100%;
            }

            .row {
                margin: 0;
                padding: 0 15px;
            }

            .container {
                padding: 0;
                max-width: 100%;
            }

            .col-md-4 {
                padding: 0 10px;
            }
        }

        @media (max-width: 576px) {
            .hero-section {
                padding-top: 80px;
            }

            .tournament-card {
                padding: 1rem;
                margin: 0.5rem 0;
            }

            .container {
                width: 100%;
                padding: 0 10px;
            }
        }

        /* Improved Table Styles */
        .leaderboard-section {
            padding: 5rem 0;
            background-color: #1c2041;
            backdrop-filter: blur(15px);
            position: relative;
        }

        .leaderboard-table {
            background: #1d2547;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 0 20px #1c2041;
            border-collapse: separate;
            border-spacing: 0;
        }

        .leaderboard-table table {
            width: 100%;
            table-layout: fixed;
        }

        .leaderboard-table th {
            background-color: var(--primary-color);
            color: white;
            padding: 1.5rem 1rem;
            text-align: center;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-right: 1px solid #1c2041;
        }

        .leaderboard-table th:last-child {
            border-right: none;
        }

        .leaderboard-table td {
            padding: 1.2rem 1rem;
            border-bottom: 1px solid #1c2041;
            font-size: 1rem;
            vertical-align: middle;
            text-align: center;
            word-wrap: break-word;
        }

        .leaderboard-table tr:hover {
            background-color: #1c2041;
            transition: background 0.3s ease;
        }

        .rank-number {
            font-weight: 700;
            color: var(--accent-color);
            width: 15%;
            border-right: 1px solid #1c2041;
        }

        .user-id {
            color: #ffffff;
            font-weight: 500;
            width: 35%;
            border-right: 1px solid #1c2041;
            padding: 0 1.5rem;
        }

        .turnover {
            color: #00ff00;
            font-weight: 600;
            width: 25%;
            border-right: 1px solid #1c2041;
        }

        .prize {
            color: var(--accent-color);
            font-weight: 600;
            width: 25%;
        }

        .top-3 {
            background-color: #1c2041;
            position: relative;
        }

        .top-3::before {
            content: "★";
            color: #ffd700;
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.2rem;
        }

        @media (max-width: 768px) {
            .leaderboard-table {
                margin: 0;
                width: 100%;
            }

            .leaderboard-table table {
                width: 100%;
                min-width: unset;
            }

            .leaderboard-table th {
                padding: 1rem 0.5rem;
                font-size: 0.9rem;
            }

            .leaderboard-table td {
                padding: 0.8rem 0.5rem;
                font-size: 0.85rem;
            }

            .rank-number,
            .user-id,
            .turnover,
            .prize {
                width: auto;
                border-right: none;
            }

            .user-id {
                max-width: 120px;
                padding: 0 0.5rem;
            }

            .top-3::before {
                left: 0.5rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .leaderboard-table th {
                padding: 0.8rem 0.3rem;
                font-size: 0.8rem;
            }

            .leaderboard-table td {
                padding: 0.6rem 0.3rem;
                font-size: 0.75rem;
            }

            .user-id {
                max-width: 80px;
            }
        }

        /* CSS untuk Timer dan Prize List */
        .prize-container {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }

        .timer-section {
            flex: 1;
            background: #1d2547;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 0 20px #1c2041;
        }

        .timer-circle {
            width: 300px;
            height: 300px;
            margin: 0 auto 2rem;
            position: relative;
            background: conic-gradient(var(--primary-color) 0%, #0ae7fc 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .timer-inner {
            width: 280px;
            height: 280px;
            background: #1d2547;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .timer-text {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 0.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .timer-days {
            font-size: 3rem;
            color: var(--primary-color);
        }

        .timer-time {
            font-size: 2rem;
        }

        .timer-label {
            font-size: 0.9rem;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 2px;
            opacity: 0.8;
        }

        .next-tournament {
            margin-top: 2rem;
            padding: 1rem;
            background: #1c2041;
            border-radius: 10px;
        }

        .next-tournament h3 {
            color: var(--accent-color);
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .prize-list {
            flex: 1;
        }

        .prize-card {
            background: #1c2041;
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            transition: transform 0.3s;
        }

        .prize-card:hover {
            transform: translateX(10px);
            background: #1c2041;
        }

        .rank-badge {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
        }

        .rank-badge span {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }

        .prize-info {
            flex: 1;
        }

        .prize-amount {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 0.5rem;
        }

        .prize-rank {
            color: #ffffff;
            font-size: 1rem;
            opacity: 0.8;
        }

        @media (max-width: 992px) {
            .prize-container {
                flex-direction: column;
            }

            .timer-circle {
                width: 250px;
                height: 250px;
            }

            .timer-inner {
                width: 230px;
                height: 230px;
            }

            .timer-text {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .timer-circle {
                width: 200px;
                height: 200px;
            }

            .timer-inner {
                width: 180px;
                height: 180px;
            }

            .timer-days {
                font-size: 2.5rem;
            }

            .timer-time {
                font-size: 1.5rem;
            }

            .prize-card {
                padding: 1rem;
            }

            .rank-badge {
                width: 50px;
                height: 50px;
            }

            .prize-amount {
                font-size: 1.2rem;
            }
        }

        .winners-button-section {
            padding: 5rem 0;
            background-color: #1c2041;
            backdrop-filter: blur(15px);
        }

        .winners-link-button {
            background: #1d2547;
            border: none;
            border-radius: 20px;
            padding: 2rem;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            display: block;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            box-shadow: 0 10px 30px #1c2041;
        }

        .winners-link-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                #1c2041,
                transparent
            );
            transition: 0.5s;
        }

        .winners-link-button:hover::before {
            left: 100%;
        }

        .winners-link-button:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px #1c2041;
        }

        .trophy-animation {
            width: 120px;
            height: 120px;
            margin-bottom: 1rem;
            filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
        }

        .winners-button-title {
            color: var(--accent-color);
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-shadow: 0 0 10px rgba(25, 0, 255, 0.3);
        }

        .winners-button-subtitle {
            color: #ffffff;
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .float-animation {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0px);
            }
        }