:root {
	--bg: #0b2a4a;
	--accent: #ffcc33;
	--text: #102a43;
	--muted: #5c6b7a;
	--card: #ffffff;
	--maxw: 1100px;
	--radius: 14px;
	--shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

a {
	text-decoration: none;
}

* {
	box-sizing: border-box
}

html,
body {
	margin: 0;
	padding: 0;
	/* font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,'Helvetica Neue',Arial,'Noto Sans',sans-serif; */
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	scroll-behavior: smooth;
}

body {
	color: var(--text);
	background: #f6f8fb
}

p {
  line-height: 26px;;
}

.container {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 20px
}

header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: linear-gradient(180deg, rgba(11, 42, 74, 0.98), rgba(11, 42, 74, 0.92));
	backdrop-filter: saturate(120%) blur(6px);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 6px 0;
	color: #fff
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: #fff
}

.brand img {
	width: 65px;
	height: 65px;
	border-radius: 50%;
	border: 2px solid var(--accent);
	object-fit: cover
}

.brand span {
	font-weight: 800;
	letter-spacing: .5px
}

nav ul {
	display: flex;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0
}

nav a {
	color: #eaf2ff;
	text-decoration: none;
	font-weight: 600;
	opacity: .92
}

nav a:hover {
	opacity: 1;
	color: #ffd24d;
}

#menuBtn {
	display: none;
	background: transparent;
	border: 0;
	color: #fff;
	font-size: 28px;
	cursor: pointer
}

.theme-toggle {
	margin-left: 12px;
	border: 1px solid rgba(255, 255, 255, .25);
	background: transparent;
	color: #fff;
	border-radius: 999px;
	padding: 6px 10px;
	cursor: pointer
}

.hero {
	background: radial-gradient(1200px 400px at 10% -10%, var(--accent) 0%, #ffe37e 60%, #fff8d6 100%);
	padding: 64px 0 40px;
	border-bottom: 1px solid #f0e6b1;
}

.hero-inner {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 32px;
	align-items: center
}

.hero .badge {
	width: 200px;
	max-width: 50vw;
	filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .18))
}

h1 {
	font-size: clamp(28px, 4vw, 44px);
	margin: 0 0 12px;
	color: #07233f
}

.lead {
	font-size: clamp(16px, 2.4vw, 20px);
	color: #25364a;
	line-height: 1.6;
	margin: 0 0 24px
}

.cta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap
}

.btn {
	appearance: none;
	border: 0;
	border-radius: 999px;
	padding: 12px 18px;
	font-weight: 700;
	cursor: pointer
}

.btn.primary {
	background: var(--bg);
	color: #fff
}

.btn.secondary {
	background: transparent;
	border: 2px solid var(--bg);
	color: var(--bg)
}

.btn.primary:hover {
	color: #ffd24d;
}

#menu .btn.secondary,
.btn.secondary:hover {
	background: transparent;
	border: 2px solid #ffd24d;
	color: #ffd24d;
}

.section {
	padding: 60px 0
}

.section h2 {
	font-size: 28px;
	margin: 0 0 18px;
	color: #0b2a4a
}

.section p.subtitle {
	color: var(--muted);
	margin-top: -8px
}

.cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px
}

.card {
	background: var(--card);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 18px
}

.card h3 {
	margin: 0 0 10px
}

.kv {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--muted);
	font-size: 14px
}

.footer-title {
	color: #ffd24d;
}

.table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow)
}

.table th,
.table td {
	padding: 14px;
	border-bottom: 1px solid #eef1f4;
	text-align: left
}

.table th {
	background: #f7fafc;
	color: #334e68
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 10px;
	border-radius: 999px;
	background: #eef6ff;
	color: #0b2a4a;
	font-weight: 700;
	font-size: 12px
}

.gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px
}

.gallery img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: var(--shadow)
}

.partners {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px
}

.partner {
	background: #fff;
	padding: 20px;
	border-radius: 12px;
	box-shadow: var(--shadow);
	text-align: center;
	font-weight: 700
}

.contact {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px
}

input,
textarea,
select {
	width: 100%;
	padding: 12px;
	border: 1px solid #d8e0e8;
	border-radius: 10px;
	background: #fff;
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	scroll-behavior: smooth;
  font-size: 16px;
}

label {
	display: block;
	font-weight: 700;
	margin: 10px 0 6px
}

form .btn {
	margin-top: 10px
}

footer {
	background: #0b2a4a;
	color: #c8d6e5;
	margin-top: 40px
}

footer .container {
	padding: 26px 20px;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 20px
}

footer a {
	color: #c8d6e5;
	text-decoration: none;
  line-height: 26px;
}

footer a:hover {
	color: #ffd24d;
}

.footer-note {
	grid-column: 1/-1;
	text-align: center;
	padding-top: 8px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	margin-top: 20px
}

@media (max-width: 900px) {
	.hero-inner {
		grid-template-columns: 1fr
	}

	.cards {
		grid-template-columns: 1fr 1fr
	}

	.gallery {
		grid-template-columns: 1fr 1fr
	}

	footer .container {
		grid-template-columns: 1fr 1fr
	}
}

@media (max-width: 600px) {
	nav ul {
		display: none;
		position: absolute;
		right: 10px;
		top: 62px;
		background: var(--bg);
		padding: 12px;
		border-radius: 12px;
		box-shadow: var(--shadow);
	}

	nav ul.open {
		display: flex;
		flex-direction: column;
		gap: 10px;
		min-width: 200px
	}

	#menuBtn {
		display: block
	}

	.cards {
		grid-template-columns: 1fr
	}

	.gallery {
		grid-template-columns: 1fr
	}

	.contact {
		grid-template-columns: 1fr
	}

	footer .container {
		grid-template-columns: 1fr
	}

	.hideSm {
		display: none;
	}
}

/* Dark mode */
.dark {
	--bg: #081c31;
	--accent: #ffd24d;
	--text: #e6eef7;
	--muted: #9db0c3;
	--card: #0e2540;
	background: #071829;
	color: var(--text)
}

.dark .section h2 {
	color: #e6eef7
}

.dark header {
	background: rgba(8, 28, 49, .95)
}

.dark .table th {
	background: #0e2540;
	color: #dfe8f3
}

.dark input,
.dark textarea,
.dark select {
	background: #0b2036;
	color: #e6eef7;
	border-color: #203a59
}

.dark .partner,
.dark .card,
.dark .table {
	background: #0e2540;
	color: #dfe8f3
}

.dark footer {
	background: #061526
}

/* Packages */
#sponsor {
 	background-color: #ebeef1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.packages{
    display: flex;
    justify-content: left;
    align-items: center;
    color: rgba(0,0,0,0.7);
	flex-direction: column;
	flex-wrap: wrap;
}

.packages .card{
    background-color: white;
    padding: 40px;
    margin: 30px 0px;
    border-radius: 10px;
    box-shadow: 10px 10px 10px -1px rgba(10,99,169,0.16),
    3px 3px 10px -1px rgba(255,255,255,0.7);
	width: 100%;
	text-align: center;
}

@media only screen and (min-width: 480px) {

	.packages{
		flex-direction: row;
	}
	.packages .card{
		width: 30% !important;
    	margin: 30px 15px;
	}
}

/* For Active Card */
section.section {
  scroll-margin-top: 50px;
}
.packages .card.active{
    background-color: #0b2a4a;
    transform: scale(1, 1.09);
}

.packages .card h3{
    margin-bottom: 15px;
}

/* For Active Card */
.packages .card.active{
   color: rgba(255,255,255,1);;
}

.packages .card h1{
    margin-bottom: 10px;
    color: rgba(0,0,0,1);
}
/* For Active Card */
.packages .card.active h1{
    color: rgba(255,255,255,1);;
 }
 

.packages .card h1 span{
    font-size: 12px;
    color: rgba(0,0,0,0.7);
}

/* For Active Card */
.packages .card.active h1 span{
    color: rgba(255,255,255,0.9);;
 }
 

.packages .card p{
    margin: 20px 0;
    color: rgba(0,0,0,0.6);
    font-size: 14px;
    line-height: 1.5;
}

/* For Active Card */
.packages .card.active p{
    color: rgba(255,255,255,1);;
 }
 

.packages .card ul{
    list-style: none;
	padding-inline-start: 0;
}

.packages .card ul li{
    line-height: 3;
    color: rgba(0,0,0,0.9);
}

/* For Active Card */
.packages .card.active ul li{
    color: rgba(255,255,255,0.9);;
 }
 

.packages .card ul li i{
    color: rgba(0,0,0,0.4);
    margin-right: 10px;
}

/* For Active Card */
.packages .card.active ul li i{
    color: rgba(255,255,255,0.4);;
 }
 
/* For Active Card */
.packages .card.active a{
	border: 2px solid #ffd24d;
	color: #ffd24d;
 }
 

/* For Active Card */
.packages .card.active a:hover{
	border: 2px solid #fff;
	color: #fff;
  }
  
  
.profile-container {
	max-width: 800px;
	margin: auto;
	background-color: #fff;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.player-image {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #333;
}
h1 {
	margin-top: 0;
}
.details {
	display: flex;
	align-items: center;
	gap: 20px;
}
.info {
	margin-top: 20px;
}
.info table {
	width: 100%;
	border-collapse: collapse;
}
.info th, .info td {
	padding: 10px;
	border-bottom: 1px solid #ddd;
	text-align: left;
}
.stats {
	display: flex;
	gap: 20px;
	margin-top: 20px;
}
.stat-box {
	background-color: #eaeaea;
	padding: 15px;
	border-radius: 8px;
	flex: 1;
	text-align: center;
}
@media(max-width: 600px) {
	.details {
		flex-direction: column;
		align-items: center;
	}
	.stats {
		flex-direction: column;
	}
}

.fw-700 {
	font-weight: 700;	
}	


/* Carousel container */
.carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Slide base */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(120deg, #002244, #0b4aa8);
  color: white;
  opacity: 0;
  transform: scale(1.05);
  transition: all 1s ease;
}
.slide img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--accent);
	margin-bottom: 50px;
}
/* Active slide */
.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
  z-index: 1;
}

.content {
  position: relative;
  text-align: center;
  z-index: 2;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Logo */
.logo {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  animation: popIn 1s ease forwards;
}

@keyframes popIn {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Titles */
.carousel h1 {
  font-size: 2.2rem;
  color: #fdd835;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

h2 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 10px;
}

.details, .venue {
  font-size: 1.1rem;
  color: #d6e4ff;
}

.btn {
  margin-top: 25px;
  padding: 12px 28px;
  background: #fdd835;
  border: none;
  border-radius: 30px;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

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

/* Navigation buttons */
.nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 8px 16px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 3;
}

.nav button:hover {
  background: rgba(255,255,255,0.2);
}

.prev { left: 20px; }
.next { right: 20px; }

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .details, .venue { font-size: 1rem; }
  .logo { width: 120px; }
}
.bold {
	font-weight: 600 !important;
}

table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

#presentation2025 {
	padding-top: 0px;
}
table thead tr {
    background-color: #002244;
    color: #ffffff;
    text-align: left;
}
table th,
table td {
    padding: 12px 15px;
}
table tbody tr {
    border-bottom: 1px solid #dddddd;
}

table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

table tbody tr:last-of-type {
    border-bottom: 2px solid #002244;
}
table tbody tr.active-row {
    font-weight: bold;
    color: #002244;
}
