        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background: #e6e9f0;
            color: #333;
            line-height: 1.5;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 10px;
        }

        /* Blue Bar */
        .blue-bar {
            background: #1034a6;
            background: linear-gradient(135deg, #0a2472 0%, #1e3c9c 100%);
            border-bottom: 3px solid #527cee;
            position: relative;
            z-index: 100;
        }

        .blue-bar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 0;
        }

        .account-left {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .account-left a {
            color: white;
            text-decoration: none;
            font-size: 13px;
            font-weight: 400;
            transition: color 0.3s;
        }

        .account-left a:hover {
            color: #ffcc00;
        }

        .join-now {
            background: #ff0000;
            color: #fff !important;
            padding: 6px 15px;
            border-radius: 20px;
            font-weight: 700 !important;
            font-size: 12px !important;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .account-right {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* DESKTOP VERSION */
        .desktop-login {
            display: flex;
            gap: 5px;
        }

        .desktop-login input {
            padding: 6px 10px;
            border: none;
            border-radius: 3px;
            font-size: 12px;
            width: 110px;
            background: rgba(255,255,255,0.9);
        }

        .desktop-login input:focus {
            outline: 2px solid #ffcc00;
        }

        .sign-in {
            background: #008af5;
            color: #fff !important;
            padding: 6px 15px;
            border-radius: 3px;
            font-weight: 700;
            font-size: 12px;
            cursor: pointer;
            text-transform: uppercase;
        }

        /* MOBILE VERSION - Tombol di bawah */
        .mobile-cta-wrapper {
            display: none;
            width: 100%;
            padding: 10px 0;
        }

        .mobile-cta-buttons {
            display: flex;
            gap: 10px;
            justify-content: center;
            align-items: center;
        }

        .btn-login-mobile {
            background: transparent;
            border: 2px solid #4966fe;
            color: #0a2472;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
            flex: 1;
            text-align: center;
            background: white;
        }

        .btn-login-mobile i {
            margin-right: 8px;
            color: #0a2472;
        }

        .btn-login-mobile:hover,
        .btn-login-mobile:active {
            background: #ffcc00;
            border-color: #ffcc00;
            color: #0a2472;
        }

        .btn-register-mobile {
            background: #4966fe;
            border: 2px solid #062a4a;
            color: #fff;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
            flex: 1;
            text-align: center;
        }

        .btn-register-mobile i {
            margin-right: 8px;
        }

        .btn-register-mobile:hover,
        .btn-register-mobile:active {
            background: #ffe44d;
            transform: scale(1.02);
        }

        /* Main Header */
        .main-header {
            background: white;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 99;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            flex-wrap: wrap;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            color: #0a2472;
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .logo span {
            color: #ffcc00;
        }

        /* Desktop Navigation */
        .desktop-nav {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        .desktop-nav li a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.3s;
        }

        .desktop-nav li.active a,
        .desktop-nav li a:hover {
            color: #0a2472;
            border-bottom-color: #ffcc00;
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .header-icon {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #555;
            font-size: 13px;
            cursor: pointer;
            transition: color 0.3s;
        }

        .header-icon i {
            font-size: 16px;
            color: #0a2472;
        }

        /* Language Selector */
        .lang-selector {
            position: relative;
            cursor: pointer;
        }

        .selected-lang {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 5px 10px;
            background: #f0f2f5;
            border-radius: 20px;
            font-size: 13px;
        }

        .lang-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            border-radius: 5px;
            display: none;
            min-width: 150px;
            z-index: 1000;
            max-height: 300px;
            overflow-y: auto;
        }

        .lang-selector:hover .lang-dropdown {
            display: block;
        }

        .lang-dropdown ul {
            list-style: none;
        }

        .lang-dropdown li {
            padding: 8px 15px;
            transition: background 0.3s;
            border-bottom: 1px solid #eee;
        }

        .lang-dropdown li:hover {
            background: #f5f5f5;
        }

        .lang-dropdown a {
            color: #333;
            text-decoration: none;
            font-size: 13px;
            display: block;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            color: #0a2472;
            cursor: pointer;
        }

        /* Mobile Navigation */
        .mobile-nav {
            display: none;
            background: white;
            padding: 15px;
            border-top: 1px solid #ddd;
            width: 100%;
        }

        .mobile-nav.active {
            display: block;
        }

        .mobile-nav ul {
            list-style: none;
        }

        .mobile-nav li {
            margin-bottom: 12px;
        }

        .mobile-nav a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            display: block;
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }

        .mobile-nav a i {
            margin-right: 10px;
            color: #0a2472;
            width: 20px;
        }

        /* Login Modal */
        .login-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.8);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .login-modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 15px;
            padding: 30px 20px;
            width: 100%;
            max-width: 350px;
            position: relative;
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 20px;
            color: #999;
            cursor: pointer;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #f0f2f5;
        }

        .modal-logo {
            text-align: center;
            margin-bottom: 25px;
        }

.modal-logo img{
height:40px;
width:auto;
display:block;
margin:auto;
}

        .modal-input {
            width: 100%;
            padding: 15px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
        }

        .modal-input:focus {
            outline: 2px solid #ffcc00;
        }

        .modal-btn {
            width: 100%;
            padding: 15px;
            background: #073f9a;
            color: #ebedf4;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            margin-bottom: 15px;
        }

        .modal-links {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
        }

        .modal-links a {
            color: #0a2472;
            text-decoration: none;
        }

        /* Main Wrapper */
        .main-wrapper {
            padding: 15px 0 30px;
        }

        /* Grid System */
        .grid-main {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 15px;
            margin-bottom: 15px;
        }

        .grid-thumb {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-bottom: 15px;
        }

        /* Card Styles */
        .card {
            background: white;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border: 1px solid #d4d8e3;
        }

        .card-header {
            padding: 12px 15px;
            background: #f8f9fc;
            border-bottom: 2px solid #0a2472;
            font-weight: 600;
            color: #0a2472;
            font-size: 15px;
        }

        .card-body {
            padding: 12px;
        }

        /* Banner Slider */
        .slider-container {
            width:100%;
            position: relative;
            border-radius: 5px;
            overflow: hidden;
        }

.slider-item{
    width:100%;
    aspect-ratio: 800 / 250;
    background-size:cover;
    background-position:center;
}

        .slider-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

        .slider-item a {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2;
        }

        .slick-dots {
            bottom: 10px;
        }

        .slick-dots li button:before {
            color: white;
            opacity: 0.5;
            font-size: 10px;
        }

        .slick-dots li.slick-active button:before {
            color: #008af5;
            opacity: 1;
        }
@media (max-width: 768px) {
    .slider-item{
        height: 120px;
        background-size: cover;
        background-position: center;
    }
}        
        

        /* Payment Side Image */
        .payment-img {
            width: 100%;
            height: auto;
            border-radius: 3px;
        }

        /* Thumb Cards */
        .thumb-card {
            text-align: center;
            transition: transform 0.3s;
        }

        .thumb-image {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 3px;
        }

        .thumb-title {
            font-weight: 600;
            font-size: 14px;
            margin: 8px 0 3px;
            color: #0a2472;
        }

        .thumb-caption {
            font-size: 12px;
            color: #666;
        }

        /* Event Highlights */
        .event-item {
            display: flex;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #e0e4ec;
            flex-wrap: wrap;
        }

        .event-item:last-child {
            border-bottom: none;
        }

        .event-time {
            min-width: 100px;
            color: #0a2472;
            font-weight: 500;
            font-size: 13px;
        }

        .event-match {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .team-name {
            font-weight: 500;
            font-size: 13px;
        }

        .vs {
            color: #999;
            font-size: 11px;
        }

        .league-name {
            color: #1034a6;
            font-size: 12px;
            text-decoration: none;
            font-weight: 500;
        }

        /* Footer */
        .footer {
            background: #0a1a3a;
            color: #fff;
            padding: 30px 0 15px;
            border-top: 3px solid #3492e6;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-bottom: 25px;
        }

        .footer-section h4 {
            color: #4779ff;
            font-size: 14px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 6px;
        }

        .footer-section a {
            color: #b0c4de;
            text-decoration: none;
            font-size: 12px;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #ffcc00;
        }

        .payment-methods {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 20px;
            padding: 15px 0;
            border-top: 1px solid #1e3a5f;
            border-bottom: 1px solid #1e3a5f;
        }

        .payment-icon {
            width: 50px;
            height: 30px;
            background: rgba(255,255,255,0.1);
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .social-link {
            width: 35px;
            height: 35px;
            background: #1e3a5f;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .social-link:hover {
            background: #ffcc00;
        }

        .social-link i {
            color: white;
            font-size: 16px;
        }

        .copyright {
            text-align: center;
            font-size: 11px;
            color: #b0c4de;
            padding-top: 15px;
        }

        .disclaimer {
            text-align: center;
            font-size: 10px;
            color: #6c7a96;
            margin-top: 10px;
        }

        /* RESPONSIVE BREAKPOINTS */
        @media (max-width: 992px) {
            .desktop-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .grid-thumb {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .blue-bar-inner {
                flex-direction: column;
                gap: 8px;
            }
            
            .account-left {
                width: 100%;
                justify-content: center;
            }
            
            /* Desktop elements hidden */
            .desktop-login,
            .sign-in,
            .join-now {
                display: none !important;
            }
            
            .account-right {
                width: 100%;
                justify-content: center;
            }
            
            /* Mobile CTA muncul di bawah header */
            .mobile-cta-wrapper {
                display: block;
            }
            
            .grid-main {
                grid-template-columns: 1fr;
            }
            
            .event-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }
            
            .event-time {
                min-width: auto;
            }
        }

        @media (max-width: 480px) {
            .grid-thumb {
                grid-template-columns: 1fr;
            }
            
            .logo {
                font-size: 20px;
            }
            
            .mobile-cta-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .btn-login-mobile,
            .btn-register-mobile {
                width: 100%;
            }
        }
        
.mobile-cta-bar{
display:flex;
width:100%;
margin:0px auto 10px auto; /* sedikit naik dari bawah header */
border-radius:5px;
overflow:hidden;
box-shadow:0 4px 10px rgba(0,0,0,0.35);
}

.mobile-cta-bar a{
flex:1;
text-align:center;
padding:14px 0;
font-weight:600;
color:#fff;
text-decoration:none;
font-size:15px;
display:flex;
align-items:center;
justify-content:center;
gap:6px;
}

.cta-login{
background:#d72626;
}

.cta-register{
background:#1bb55c;
}

/* efek saat ditekan */

.mobile-cta-bar a:active{
transform:scale(0.97);
}

@media (min-width:768px){

.mobile-cta-bar{
display:none;
}

}

/* WRAPPER */

.register-wrapper{
display:flex;
justify-content:center;
padding:20px;
}

.register-card{
width:100%;
max-width:480px;
background:#ffffff;
border-radius:10px;
padding:25px;
box-shadow:0 4px 20px rgba(0,0,0,0.15);
}

/* TITLE */

.register-card h2{
margin-top:0;
margin-bottom:20px;
font-size:22px;
font-weight:600;
text-align:center;
color:#1f2d3d;
}

/* LABEL */

.register-card label{
display:block;
font-size:14px;
margin-top:12px;
margin-bottom:4px;
font-weight:500;
color:#333;
}

/* INPUT */

.register-card input,
.register-card select{
width:100%;
padding:10px 12px;
border:1px solid #dcdcdc;
border-radius:6px;
font-size:14px;
outline:none;
transition:all .2s;
box-sizing:border-box;
}

/* INPUT FOCUS */

.register-card input:focus,
.register-card select:focus{
border-color:#2d7df6;
box-shadow:0 0 0 2px rgba(45,125,246,0.15);
}

/* AGREEMENT */

.agree{
margin-top:14px;
font-size:13px;
display:flex;
align-items:center;
gap:8px;
}

/* BUTTON */

.btn-register{
width:100%;
margin-top:16px;
padding:12px;
border:none;
border-radius:6px;
font-weight:600;
font-size:15px;
color:#fff;
cursor:pointer;

background:linear-gradient(45deg,#1bb55c,#0d8f45);

transition:all .2s;
}

.btn-register:hover{
transform:translateY(-1px);
box-shadow:0 4px 12px rgba(0,0,0,0.2);
}

/* ERROR */

.alert{
background:#ffe5e5;
border:1px solid #ffb3b3;
padding:10px;
border-radius:6px;
margin-bottom:15px;
color:#b00000;
font-size:13px;
}

/* MOBILE */

@media(max-width:600px){

.register-card{
padding:20px;
border-radius:8px;
}

}

.agree{
display:flex;
align-items:center;
gap:8px;
margin-top:14px;
font-size:13px;
justify-content:flex-start;
}

.agree input{
width:auto;
margin:0;
}

.agree span{
display:inline;
}