* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: linear-gradient(180deg, #0f172a, #020617);
  color: #e5e7eb;
  min-height: 100vh;
}

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}

header h1 {
  font-size: 26px;
}

header i {
  font-size: 26px;
  cursor: pointer;
}

.login-btn {
  background: #22d3ee;
  color: #020617;
  border: none;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: bold;
}

/* Search */
.search-box {
  padding: 20px;
}

.search-box input {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 2px solid #22d3ee;
  background: transparent;
  color: #fff;
  font-size: 16px;
}

.search-info {
  text-align: center;
  margin-top: 60px;
  opacity: 0.9;
}

.search-info i {
  font-size: 50px;
  color: #22d3ee;
  margin-bottom: 10px;
}

/* Bottom Nav */
.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #020617;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  border-top: 1px solid #1e293b;
}

.bottom-nav a {
  color: #94a3b8;
  font-size: 12px;
  text-align: center;
}

.bottom-nav a i {
  display: block;
  font-size: 22px;
}

.bottom-nav a.active {
  color: #22d3ee;
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: #020617;
  padding: 20px;
  transition: 0.3s;
  z-index: 10;
}

.side-menu h2 {
  margin-bottom: 20px;
}

.side-menu a {
  display: block;
  padding: 12px 0;
  color: #cbd5f5;
  text-decoration: none;
}

.side-menu a i {
  margin-right: 10px;
}

.side-menu .pro {
  color: #a855f7;
}

.side-menu hr {
  border: 0;
  height: 1px;
  background: #1e293b;
  margin: 15px 0;
}

.side-menu small {
  color: #64748b;
  font-size: 12px;
}
.tournaments {
  padding: 20px;
}

.tournaments h2 {
  margin-bottom: 15px;
}

.card {
  background: #020617;
  border: 1px solid #1e293b;
  padding: 16px;
  border-radius: 14px;
  margin-bottom: 15px;
}

.card h3 {
  color: #22d3ee;
}

.card button {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #22d3ee;
  color: #020617;
  font-weight: bold;
}

.card button.free {
  background: #16a34a;
  color: white;
}
/* Withdrawal Page */
.withdraw {
  padding: 20px;
}

.balance-box {
  background: #020617;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  font-size: 18px;
}

.withdraw input {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid #1e293b;
  background: transparent;
  color: white;
}

.withdraw-btn {
  width: 100%;
  padding: 12px;
  background: #22d3ee;
  border: none;
  border-radius: 10px;
  font-weight: bold;
}

.withdraw-note {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 10px;
}
/* IMPORTANT NOTICE STYLE */
.important-notice {
  background: #1a1a1a;
  border-left: 5px solid red;
  padding: 15px;
  margin: 15px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
}

.important-notice h3 {
  color: #ff4d4d;
  margin-bottom: 8px;
}