
/* Landing Page */
:root {
    --primary: #f59e0b;
    --primary-hover: #d97706;
    --dark-bg: #0b1220;
    --card-bg: rgba(30, 41, 59, 0.55);
    --border-color: rgba(255, 255, 255, 0.08);
    --nav-height: 65px;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* BASE */
html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: var(--nav-height);
}

body {
    background: var(--dark-bg);
    color: #f8fafc;
    overflow-x: hidden;

    line-height: 1.6;
    font-size: 14.5px;

    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    position: relative;
}

/* noise */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

/* scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #0b1220;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 10px;
}

/* selection */
::selection {
    background: var(--primary);
    color: #0b1220;
}

/* links */
a {
    text-decoration: none;
}

/* focus */
button:focus,
a:focus,
input:focus {
    outline: none !important;
    box-shadow: none !important;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid rgba(245, 158, 11, 0.6);
    outline-offset: 3px;
}

/* container layering */
.container {
    position: relative;
    z-index: 2;
}

/* glass */
.glass {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 16px;
}

/* glow utility */
.glow {
    box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.1),
0 10px 40px rgba(245, 158, 11, 0.15);
}

/* headings */
h1,
h2,
h3,
h4,
h5 {
    letter-spacing: -0.5px;
}

/* Schedule */

.schedule-wrapper{
    max-width: 1200px;
    margin:auto;

    padding:20px;

    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
}

.schedule-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    overflow:hidden;
}

.schedule-header{
    padding:18px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
}

.schedule-image-wrapper{
    border-top:1px solid rgba(255,255,255,.08);
}

.schedule-image{
    width:100%;
    display:block;
}

.empty-state{
    text-align:center;
    padding:60px 20px;
    color:#94a3b8;
}

.feature-card{
    background: rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-5px);
}

.feature-number{
    font-size:14px;
    font-weight:800;
    color:#fbbf24;
    letter-spacing:2px;
}

.info-list{
    list-style:none;
    padding:0;
    margin:0;
}

.info-list li{
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.06);
    color:#cbd5e1;
}

.info-list li:last-child{
    border-bottom:none;
}

.feature-bar {
    width: 42px;
    height: 3px;
    background: #fbbf24;
    border-radius: 10px;
    margin-bottom: 12px;
}

.hero-logo{
    width:220px;
    height:auto;
    margin-bottom:20px;

    filter:
        drop-shadow(0 15px 35px rgba(251,191,36,.15));

    transition:.3s;
}

.hero-logo:hover{
    transform:translateY(-3px);
}

@media (max-width:768px){
    .hero-logo{
        width:160px;
    }
}

.hero-title{
    font-size:clamp(2rem,5vw,4rem);
    font-weight:900;
    line-height:1;
    margin-bottom:10px;
}

.hero-subtitle{
    font-size:clamp(2.5rem,6vw,5rem);
    font-weight:900;
    color:#fbbf24;
    margin-bottom:0;
}

.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;

    padding: 14px 0;

    transition: 0.3s ease;

    background: transparent;
}

.navbar-custom.scrolled {
    background: rgba(15, 18, 32, 0.7);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-brand {
    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 16px;
}

.nav-brand span {
    color: #fbbf24;
}

.nav-menu {
    list-style: none;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.nav-link-custom {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.nav-link-custom:hover {
    color: #fff;
}

.nav-link-custom.active {
    color: #fbbf24;
}

.nav-link-custom.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fbbf24;
    border-radius: 10px;
}

.nav-btn {
    background: #fbbf24;
    color: #0f172a;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 13px;
    transition: 0.2s;
}

.nav-btn:hover {
    transform: translateY(-2px);
    background: #facc15;
}

.nav-logo-full{
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
}


/* Dashboard */

.dashboard-header{

    background:linear-gradient(
        135deg,
        rgba(251,191,36,.15),
        rgba(251,191,36,.03)
    );

    border:1px solid rgba(251,191,36,.15);

    border-radius:20px;

    padding:25px;

    margin-bottom:25px;
}

.dashboard-title{
    font-size:2rem;
    font-weight:800;
    margin-bottom:5px;
}

.dashboard-subtitle{
    color:#94a3b8;
    margin:0;
}

.page-wrapper {
    padding-top: 120px;
    padding-bottom: 40px;
}

.mobile-menu{
    margin-bottom:20px;
}

.mobile-menu-btn{
    width:100%;
    border:none;
    background:#fbbf24;
    color:#111827;
    font-weight:700;
    padding:14px 18px;
    border-radius:14px;
    transition:.2s;
}

.mobile-menu-btn:hover{
    opacity:.9;
}

.card-custom {

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 20px;

    padding: 25px;
}

.table {
    color: white;
}

.table th {
    color: #94a3b8;
    font-size: .85rem;
}

.team-logo {

    width: 45px;
    height: 45px;

    border-radius: 50%;

    object-fit: cover;
}

.badge-pending {
    background: #fbbf24;
    color: #0f172a;
}
.action-buttons{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}

.action-buttons form{
    margin:0;
}

.btn-action{
    min-width:85px;
    border-radius:10px;
    font-size:.8rem;
    font-weight:600;
}

.badge-approved,
.badge-rejected,
.badge-pending{
    padding:6px 12px;
    border-radius:999px;
    font-size:.75rem;
    font-weight:600;
}

@media (max-width:768px){

    .action-buttons{
        flex-direction:column;
        width:100%;
    }

    .action-buttons .btn,
    .action-buttons form{
        width:100%;
    }

    .action-buttons .btn{
        display:block;
    }
}

.btn-action {

    font-size: .8rem;

    padding: 6px 12px;

    border-radius: 8px;
}

.search-input {

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(255, 255, 255, .08);

    color: white;

    height: 46px;

    border-radius: 12px;
}

.search-input:focus {

    background: rgba(255, 255, 255, .05);

    color: white;

    border-color: #fbbf24;

    box-shadow: none;
}

.table-custom {

    width: 100%;

    border-collapse: collapse;
}

.table-custom thead th {

    color: #94a3b8;

    font-size: .8rem;

    text-transform: uppercase;

    letter-spacing: .5px;

    padding: 15px;

    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.table-custom tbody td {

    padding: 16px 15px;

    border-bottom: 1px solid rgba(255, 255, 255, .05);

    vertical-align: middle;
}

.table-custom tbody tr:hover {

    background: rgba(255, 255, 255, .02);
}


.dashboard-page {
    padding-top: 100px;
    padding-bottom: 40px;
}

.admin-sidebar {

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 20px;

    padding: 25px;

    position: sticky;
    top: 90px;
}

.sidebar-brand {

    font-size: 1.3rem;

    font-weight: 800;

    color: #fbbf24;

    margin-bottom: 30px;
}

.sidebar-menu {

    display: flex;

    flex-direction: column;

    gap: 8px;
}

.sidebar-menu a {

    color: #cbd5e1;

    text-decoration: none;

    padding: 12px 16px;

    border-radius: 12px;

    transition: .2s;
}

.sidebar-menu a:hover {

    background: rgba(255, 255, 255, .05);

    color: white;
}

.sidebar-menu a.active {

    background: rgba(251, 191, 36, .12);

    color: #fbbf24;

    font-weight: 600;
}

.logout-btn {

    margin-top: 25px;

    width: 100%;

    border: none;

    border-radius: 12px;

    padding: 12px;

    background: #dc2626;

    color: white;
}

.mobile-menu {

    display: none;
}

@media(max-width:991px) {

    .mobile-menu {
display: block;
margin-bottom: 15px;
    }

    .admin-sidebar {
display: none;
    }
}

.page-header {

    margin-bottom: 25px;
}

.page-title {

    font-size: 2rem;

    font-weight: 800;

    margin-bottom: 5px;
}

.page-subtitle {

    color: #94a3b8;
}

.stat-card {

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 18px;

    padding: 20px;
}

.stat-number {

    font-size: 2rem;

    font-weight: 800;

    line-height: 1;
}

.stat-label {

    color: #94a3b8;

    font-size: .85rem;

    margin-top: 8px;
}

.content-card {

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 20px;

    padding: 25px;
}

.content-title {

    font-size: 1.1rem;

    font-weight: 700;

    margin-bottom: 20px;
}

.badge-approved {

    background: #16a34a;

    padding: 6px 12px;

    border-radius: 30px;
}

.badge-pending {

    background: #fbbf24;

    color: #111827;

    padding: 6px 12px;

    border-radius: 30px;
}

/* Teams Registration */

.registration-page {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
}

.registration-card {
    max-width: 950px;
    margin: auto;

    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);

    border-radius: 24px;
    padding: 40px;
}

.registration-title {
    font-size: 2.3rem;
    font-weight: 800;
}

.registration-subtitle {
    color: #94a3b8;
    max-width: 600px;
    margin: auto;
}

.section-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 20px;
    color: #fbbf24;
}

.section-divider {
    border-color: rgba(255, 255, 255, .08);
    margin: 35px 0;
}

.form-label {
    font-size: .85rem;
    color: #cbd5e1;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control {
    background: rgba(255, 255, 255, .03) !important;
    border: 1px solid rgba(255, 255, 255, .08);
    color: white !important;

    height: 48px;
    border-radius: 12px;
    font-size: 14px;
}

.form-control:focus {
    border-color: #fbbf24;
    background: rgba(255, 255, 255, .05) !important;
    box-shadow: none;
}

.player-row {
    margin-bottom: 12px;
}

.btn-add-player {

    background: transparent;

    border: 1px solid rgba(255, 255, 255, .08);

    color: white;

    border-radius: 10px;

    padding: 10px 16px;

    transition: .2s;
}

.btn-add-player:hover {
    border-color: #fbbf24;
    color: #fbbf24;
}

.btn-remove-player{

    width:48px;

    border:none;

    border-radius:12px;

    background:#dc2626;

    color:white;

    font-size:18px;

    font-weight:700;

    flex-shrink:0;
}

.btn-remove-player:hover{

    background:#b91c1c;
}

.payment-box {

    background: rgba(251, 191, 36, .05);

    border: 1px solid rgba(251, 191, 36, .15);

    border-radius: 16px;

    padding: 25px;
}

.payment-title {
    color: #fbbf24;
    font-weight: 700;
    margin-bottom: 15px;
}

.payment-value {
    font-size: 1.1rem;
    font-weight: 700;
}

.submit-wrapper {
    margin-top: 40px;
}

.btn-register-team {

    background: #fbbf24;

    color: #0f172a;

    border: none;

    padding: 14px 35px;

    border-radius: 12px;

    font-weight: 700;

    transition: .2s;
}

.btn-register-team:hover {

    transform: translateY(-2px);

    background: #facc15;
}

.badge-event {

    display: inline-block;

    padding: 8px 16px;

    border-radius: 999px;

    background: rgba(251, 191, 36, .08);

    color: #fbbf24;

    border: 1px solid rgba(251, 191, 36, .15);

    font-size: .8rem;

    letter-spacing: 1px;
}

.file-note {
    font-size: .8rem;
    color: #94a3b8;
    margin-top: 6px;
}

@media(max-width:768px) {

    .registration-card {
padding: 25px;
    }

    .registration-title {
font-size: 1.8rem;
    }
}

.success-card {
    max-width: 750px;
    margin: 0 auto;
}

.success-message {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.success-status {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 193, 7, .12);
    color: #ffc107;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.success-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.success-description {
    max-width: 520px;
    margin: 0 auto;
    color: rgba(255,255,255,.75);
    line-height: 1.8;
}

/* Team Detail */

.team-detail-logo{
    width:90px;
    height:90px;
    border-radius:20px;
    object-fit:cover;
    border:1px solid rgba(255,255,255,.1);
}

.placeholder-logo{
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    font-weight:700;
    background:#1f2937;
    color:white;
}

.info-card{
    padding:18px;
    border-radius:14px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
}

.player-card{
    padding:14px 16px;
    border-radius:12px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
}

.payment-proof-image{
    width:100%;
    max-height:700px;
    object-fit:contain;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.08);
}

/* Drawing */
.wheel-wrapper{
    position:relative;
    width:500px;
    max-width:100%;
    margin:auto;
}

#wheel{
    width:100%;
    aspect-ratio:1;
    border-radius:50%;
    background:#111827;
}

.wheel-pointer{
    position:absolute;
    top:-12px;
    left:50%;
    transform:translateX(-50%);
    width:0;
    height:0;
    border-left:18px solid transparent;
    border-right:18px solid transparent;
    border-top:30px solid #fbbf24;
    z-index:10;
}

/* Login */
.login-page {

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 100px 20px;
}

.login-card {

    width: 100%;
    max-width: 450px;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(16px);

    border-radius: 24px;

    padding: 40px;
}

.login-logo {

    width: 80px;
    height: 80px;

    border-radius: 50%;

    background: #fbbf24;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;

    font-weight: 800;

    color: #0f172a;
}

.login-title {

    font-size: 2rem;

    font-weight: 800;
}

.login-subtitle {

    color: #94a3b8;
}

.form-label {

    color: #cbd5e1;

    font-size: .85rem;

    font-weight: 600;
}

.form-control {

    background: rgba(255, 255, 255, .03) !important;

    border: 1px solid rgba(255, 255, 255, .08);

    color: white !important;

    height: 48px;

    border-radius: 12px;
}

.form-control:focus {

    border-color: #fbbf24;

    box-shadow: none;

    background: rgba(255, 255, 255, .05) !important;
}

.btn-login {

    width: 100%;

    height: 50px;

    border: none;

    border-radius: 12px;

    background: #fbbf24;

    color: #0f172a;

    font-weight: 700;

    transition: .2s;
}

.btn-login:hover {

    background: #facc15;

    transform: translateY(-2px);
}

.alert-custom {

    background: rgba(239, 68, 68, .1);

    border: 1px solid rgba(239, 68, 68, .2);

    color: #fca5a5;

    border-radius: 12px;

    padding: 12px;
}

/* Gallery */

.gallery-image{

    height:550px;

    object-fit:cover;

    border-radius:24px;
}

.carousel-inner{

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
0 15px 40px rgba(0,0,0,.25);
}

.carousel-control-prev,
.carousel-control-next{

    width:8%;
}

@media(max-width:768px){

    .gallery-image{

height:280px;
    }
}