@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons+Outlined");

:root {
  /* Modern Dark Theme with Gold Accents */
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: linear-gradient(145deg, #16161f 0%, #1a1a25 100%);
  --bg-card-hover: linear-gradient(145deg, #1a1a25 0%, #1e1e2a 100%);
  --accent-gold: #f0b90b;
  --accent-gold-light: #fcd535;
  --accent-gold-dark: #c99a07;
  --accent-orange: #ff6b35;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  --border-color: rgba(240, 185, 11, 0.2);
  --success: #00d68f;
  --error: #ff4d4d;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --shadow-glow: 0 0 40px rgba(240, 185, 11, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a,
button,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Animated Background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(240, 185, 11, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(240, 185, 11, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Glass Card Style */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  border-color: var(--border-color);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

/* Modern Button */
.modern-btn {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #000;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(240, 185, 11, 0.3);
}

.modern-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(240, 185, 11, 0.4);
}

.modern-btn:active {
  transform: translateY(0);
}

.modern-btn-secondary {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  box-shadow: none;
}

.modern-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-gold);
  box-shadow: 0 4px 15px rgba(240, 185, 11, 0.15);
}

/* Modern Input */
.modern-input {
  width: 100%;
  padding: 16px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

.modern-input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.1);
}

.modern-input::placeholder {
  color: var(--text-muted);
}

/* Modern Select */
.modern-select {
  width: 100%;
  padding: 16px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23f0b90b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
}

.modern-select:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.1);
}

.modern-select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

/* Header Style */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.header-title {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-actions {
  display: flex;
  gap: 10px;
}

.header-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-btn:hover {
  background: rgba(240, 185, 11, 0.1);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* Balance Card */
.balance-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 32px;
  margin: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.balance-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange), var(--accent-gold));
}

.balance-label {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.balance-amount {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Claim Button */
.claim-container {
  display: flex;
  justify-content: center;
  padding: 30px 20px;
}

.claim-btn {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(240, 185, 11, 0.3) 0%, transparent 50%),
    linear-gradient(145deg, #1a1a25 0%, #12121a 100%);
  border: 3px solid var(--accent-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(240, 185, 11, 0.2), inset 0 0 60px rgba(240, 185, 11, 0.05);
}

.claim-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--accent-gold), transparent);
  animation: rotate 4s linear infinite;
  opacity: 0.3;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.claim-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 80px rgba(240, 185, 11, 0.3), inset 0 0 80px rgba(240, 185, 11, 0.1);
}

.claim-btn:active {
  transform: scale(0.98);
}

.claim-btn-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.claim-amount {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.claim-text {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.claim-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* Premium Button */
.premium-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 20px 20px;
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(240, 185, 11, 0.15) 0%, rgba(255, 107, 53, 0.1) 100%);
  border: 1px solid var(--accent-gold);
  border-radius: 16px;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.premium-btn:hover {
  background: linear-gradient(135deg, rgba(240, 185, 11, 0.25) 0%, rgba(255, 107, 53, 0.15) 100%);
  box-shadow: 0 4px 20px rgba(240, 185, 11, 0.2);
}

.premium-btn img {
  width: 24px;
  height: 24px;
}

/* Tab Bar */
.tabbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(18, 18, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  padding: 8px 0 env(safe-area-inset-bottom);
}

.tabbar ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 500px;
  margin: 0 auto;
}

.tabbar li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 12px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tabbar li span {
  font-size: 24px;
  transition: all 0.3s ease;
}

.tabbar li.active {
  color: var(--accent-gold);
}

.tabbar li.active::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.tabbar li:hover:not(.active) {
  color: var(--text-secondary);
  background: var(--glass-bg);
}

/* Page Title */
.page-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-title a {
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.page-title .material-icons-outlined {
  font-size: 28px;
  transition: all 0.3s ease;
}

.page-title a:hover .material-icons-outlined {
  color: var(--accent-gold);
}

/* Section Title */
.section-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 16px 20px 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Token List Item */
.token-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--glass-bg);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.token-item:first-child {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.token-item:last-child {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom: none;
}

.token-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.token-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.token-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.token-name {
  font-weight: 600;
  font-size: 15px;
}

.token-balance {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
}

/* Action Buttons Row */
.action-row {
  display: flex;
  gap: 12px;
  padding: 20px;
}

.action-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background: rgba(240, 185, 11, 0.1);
  border-color: var(--accent-gold);
}

.action-btn .icon-circle {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  border-radius: 50%;
  color: #000;
}

.action-btn span:last-child {
  font-size: 13px;
  font-weight: 500;
}

/* Task Card */
.task-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  margin: 0 20px 16px;
  overflow: hidden;
}

.task-card-header {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 16px;
  background: rgba(240, 185, 11, 0.1);
  border-bottom: 1px solid var(--glass-border);
  color: var(--accent-gold);
}

.task-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
  cursor: pointer;
}

.task-item:last-child {
  border-bottom: none;
}

.task-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.task-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.task-reward {
  font-size: 13px;
  color: var(--accent-gold);
  font-weight: 500;
}

/* Stake Card */
.stake-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  margin: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.stake-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(240, 185, 11, 0.2) 0%, transparent 70%);
}

.stake-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.stake-title {
  font-size: 20px;
  font-weight: 700;
}

.stake-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.stake-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
}

.stake-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--glass-border);
}

.stake-info img {
  width: 36px;
  height: 36px;
}

.stake-info-title {
  font-weight: 600;
  font-size: 16px;
}

.stake-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stake-stat {
  padding: 16px;
  background: var(--glass-bg);
  border-radius: 12px;
}

.stake-stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.stake-stat-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-gold);
}

/* Tab Menu */
.tab-menu {
  display: flex;
  gap: 8px;
  padding: 0 20px;
  margin-bottom: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-menu::-webkit-scrollbar {
  display: none;
}

.tab-menu-item {
  padding: 10px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}

.tab-menu-item.active,
.tab-menu-item:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #000;
}

/* Profile Card */
.profile-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  margin: 20px;
  overflow: hidden;
}

.profile-header {
  text-align: center;
  padding: 32px 20px;
  background: linear-gradient(180deg, rgba(240, 185, 11, 0.1) 0%, transparent 100%);
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  object-fit: cover;
  border: 3px solid var(--accent-gold);
  margin-bottom: 12px;
}

.profile-name {
  font-size: 20px;
  font-weight: 700;
}

.profile-item {
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--glass-border);
}

.profile-item:last-child {
  border-bottom: none;
}

.profile-item-label {
  color: var(--text-secondary);
}

.profile-item-value {
  font-weight: 600;
}

/* Premium Packages */
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 0 20px;
  margin-bottom: 20px;
}

.package-item {
  padding: 16px 8px;
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.package-item.active {
  border-color: var(--accent-gold);
  background: rgba(240, 185, 11, 0.1);
}

.package-item:hover {
  border-color: var(--accent-gold);
}

.package-name {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}

.package-price {
  font-size: 11px;
  color: var(--accent-gold);
}

/* Leaderboard */
.leaderboard-top {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  padding: 30px 20px;
}

.leader-item {
  text-align: center;
  padding: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  min-width: 90px;
  transition: all 0.3s ease;
}

.leader-item.first {
  transform: translateY(-20px);
  border-color: var(--accent-gold);
  background: rgba(240, 185, 11, 0.1);
}

.leader-rank {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.leader-name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.leader-code {
  font-size: 11px;
  color: var(--text-muted);
}

.leaderboard-list {
  margin: 0 20px;
}

.leaderboard-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--glass-bg);
  border-radius: 12px;
  margin-bottom: 8px;
}

.leaderboard-item-rank {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  color: var(--accent-gold);
}

.leaderboard-item-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
}

.leaderboard-item-info {
  flex: 1;
}

.leaderboard-item-name {
  font-weight: 600;
  font-size: 14px;
}

.leaderboard-item-stats {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
}

.leaderboard-item-stats span {
  color: var(--accent-gold);
}

/* Info Box */
.info-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px;
  padding: 16px 20px;
  background: rgba(240, 185, 11, 0.1);
  border: 1px solid var(--accent-gold);
  border-radius: 12px;
  color: var(--accent-gold);
  font-size: 14px;
}

.info-box.warning {
  background: rgba(255, 77, 77, 0.1);
  border-color: var(--error);
  color: var(--error);
}

.info-box.success {
  background: rgba(0, 214, 143, 0.1);
  border-color: var(--success);
  color: var(--success);
}

/* Withdraw Options */
.withdraw-option {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 20px 12px;
  padding: 16px 20px;
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.withdraw-option.active {
  border-color: var(--accent-gold);
  background: rgba(240, 185, 11, 0.1);
}

.withdraw-option:hover {
  border-color: var(--accent-gold);
}

.withdraw-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.withdraw-option.active .withdraw-radio {
  border-color: var(--accent-gold);
  background: var(--accent-gold);
}

.withdraw-option.active .withdraw-radio::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
}

.withdraw-info {
  flex: 1;
}

.withdraw-name {
  font-weight: 600;
  margin-bottom: 2px;
}

.withdraw-min {
  font-size: 12px;
  color: var(--text-muted);
}

/* Copy Box */
.copy-box {
  display: flex;
  align-items: center;
  margin: 0 20px 16px;
  padding: 16px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-box:hover {
  border-color: var(--accent-gold);
}

.copy-box-text {
  flex: 1;
  font-size: 13px;
  word-break: break-all;
  margin-right: 12px;
}

.copy-box-icon {
  color: var(--accent-gold);
}

/* Splash Screen */
.splash-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.splash-logo {
  width: 120px;
  height: 120px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

.splash-text {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 2px;
}

/* Safe area padding for bottom */
.page-content {
  padding-bottom: 100px;
}

/* Animation classes */
.fade-in {
  animation: fadeIn 0.4s ease;
}

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

.slide-up {
  animation: slideUp 0.4s ease;
}

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

/* Hide default tab styles */
.tab-style2 .active:before,
.tab-style2 .active:after {
  display: none;
}

.flex-center {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
