/* ===== ENHANCED BASE STYLES ===== */
:root {
  --primary-red: #901f1f;
  --secondary-blue: #1fbdec;
  --accent-purple: #8256b8e0;
  --accent-green: #24be76;
  --accent-orange: #ff6b35;
  --accent-gold: #ffd700;
  --dark: #000000;
  --light: #f4f4f4;
  --table-blue: #5bc0de;
  --table-red: #a50404e3;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #000;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== ENHANCED HEADER STYLES ===== */
.header {
  background: linear-gradient(135deg, #901f1f 0%, #b30000 100%);
  color: #fff;
  padding: 25px 10px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1fbdec, #901f1f, #1fbdec, #901f1f);
  background-size: 400% 400%;
  animation: shimmer 3s ease infinite;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.header-logo img {
  height: 100px;
  width: auto;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: var(--transition-slow);
  border: 4px solid white;
  background: white;
  padding: 5px;
}

.header-logo img:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.header-text h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.header-text p {
  margin: 12px 0 0;
  font-size: 1.3rem;
  opacity: 0.95;
  letter-spacing: 2px;
  font-weight: 300;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* ===== ENHANCED NAVBAR STYLES ===== */
.navbar {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-shadow: var(--shadow-xl);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #1fbdec;
}

.menu-wrapper {
  position: relative;
}

.nav-links {
  display: flex;
  gap: 5px;
}

.navbar a {
  padding: 18px 24px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  border-radius: 8px 8px 0 0;
  font-size: 1.05rem;
}

.navbar a:hover {
  background: linear-gradient(135deg, #1fbdec 0%, #1a9fc7 100%);
  transform: translateY(-2px);
}

.navbar a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #1fbdec;
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar a:hover::before {
  width: 80%;
}

.navbar a.active {
  background: linear-gradient(135deg, #1fbdec 0%, #1a9fc7 100%);
  box-shadow: 0 4px 15px rgba(31, 189, 236, 0.4);
}

.navbar a.active::before {
  width: 100%;
  background: var(--accent-gold);
}

/* ===== ENHANCED MAIN CONTENT STYLES ===== */
.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.highlight {
  color: #d63384;
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 20px;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 5px;
  background: linear-gradient(90deg, #901f1f, #1fbdec, #901f1f);
  border-radius: 3px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Enhanced Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, #901f1f 0%, #b30000 50%, #901f1f 100%);
  color: white;
  padding: 35px;
  border-radius: var(--border-radius-lg);
  margin: 35px 0;
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  z-index: 1;
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.highlight-box h2 {
  margin: 0 0 15px;
  font-size: 2.2rem;
  position: relative;
  z-index: 2;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-box p {
  margin: 0;
  font-size: 1.3rem;
  opacity: 0.95;
  position: relative;
  z-index: 2;
  font-weight: 300;
}

/* Quick Info Box */
.quick-info-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 25px;
  border-radius: var(--border-radius-lg);
  margin: 30px 0;
  box-shadow: var(--shadow-xl);
  border-left: 6px solid var(--accent-gold);
  position: relative;
  overflow: hidden;
}

.quick-info-box::before {
  content: '📢';
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  font-size: 3rem;
  opacity: 0.2;
}

.quick-info-box h3 {
  margin: 0 0 15px;
  font-size: 1.5rem;
  font-weight: 700;
}

.quick-info-box p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.8;
}

/* Enhanced Section Styles */
.section {
  margin: 30px 0;
  border-radius: var(--border-radius-lg);
  padding: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #e9ecef;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: var(--transition-slow);
  position: relative;
}

.section:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-blue);
}

.section h3 {
  background: linear-gradient(135deg, var(--accent-purple) 0%, #6a3093 100%);
  color: white;
  padding: 20px 25px;
  margin: 0;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(130, 86, 184, 0.4);
  display: flex;
  align-items: center;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.section h3::before {
  content: '🚀';
  margin-right: 15px;
  font-size: 1.2rem;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

.section ul {
  padding: 25px 25px 25px 45px;
  margin: 0;
}

.section li {
  margin-bottom: 15px;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.7;
  padding-left: 10px;
}

.section li::before {
  content: '✔';
  color: var(--accent-green);
  font-weight: bold;
  position: absolute;
  left: -25px;
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.section li strong {
  color: var(--primary-red);
  font-weight: 700;
}

/* Enhanced Table Styles */
.fee-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 20px 0;
}

.fee-table thead {
  background: linear-gradient(135deg, var(--table-blue) 0%, #46b8da 100%);
}

.fee-table th {
  padding: 18px 20px;
  text-align: left;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  border: none;
}

.fee-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #e9ecef;
  font-size: 1.05rem;
  transition: var(--transition);
}

.fee-table tbody tr:hover {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  transform: scale(1.01);
}

.fee-table tbody tr:last-child td {
  border-bottom: none;
}

/* Payment Methods */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.payment-method {
  background: linear-gradient(135deg, var(--accent-green) 0%, #1e8c5a 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}

.payment-method:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Enhanced Section Table Sell */
.section-table-sell {
  margin: 40px 0;
  padding: 0;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transition: var(--transition);
}

.section-table-sell:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.15);
}

.table-title-sell {
  background: linear-gradient(135deg, var(--table-red) 0%, #8a0303 100%);
  color: #ffffff;
  font-weight: 800;
  padding: 20px 25px;
  margin: 0;
  font-size: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.table-info-sell {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.05rem;
}

.table-info-sell th, .table-info-sell td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
  transition: var(--transition);
}

.table-info-sell th {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  font-weight: 700;
  color: var(--dark);
  font-size: 1.1rem;
}

.table-info-sell tr:hover {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.table-info-sell tr:last-child td {
  border-bottom: none;
}

/* Enhanced Apply Button */
.apply-button {
  background: linear-gradient(135deg, var(--accent-green) 0%, #1e8c5a 100%);
  color: white;
  border: none;
  padding: 18px 35px;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-slow);
  box-shadow: 0 8px 25px rgba(36, 190, 118, 0.4);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.apply-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: var(--transition-slow);
}

.apply-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(36, 190, 118, 0.6);
}

.apply-button:hover::before {
  left: 100%;
}

.apply-button i {
  margin-right: 12px;
  font-size: 1.4rem;
}

/* Enhanced Social Section */
.social {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
  text-align: center;
}

.social div {
  padding: 30px 20px;
  border-radius: var(--border-radius-lg);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: 2px solid transparent;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.social div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--secondary-blue), var(--accent-gold));
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

.social div:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-gold);
}

.social strong {
  display: block;
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: white;
  font-weight: 700;
}

.social button {
  margin-top: 15px;
  background: linear-gradient(135deg, var(--accent-green) 0%, #1e8c5a 100%);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Enhanced Footer */
.footer-top {
  background: linear-gradient(135deg, #1a75bb 0%, #155d92 100%);
  color: white;
  padding: 50px 20px;
  margin-top: 60px;
  position: relative;
}

.footer-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--secondary-blue), var(--accent-gold));
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-section {
  flex: 1 1 300px;
  margin: 15px;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  font-weight: 700;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--secondary-blue);
  border-radius: 2px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 15px;
  transition: var(--transition);
}

.footer-section ul li:hover {
  transform: translateX(5px);
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 500;
}

.footer-section ul li a::before {
  content: '➤';
  margin-right: 12px;
  transition: var(--transition);
  color: var(--secondary-blue);
  font-weight: bold;
}

.footer-section ul li a:hover {
  color: white;
  transform: translateX(8px);
}

.footer-section ul li a:hover::before {
  color: var(--accent-gold);
  transform: scale(1.2);
}

.footer-bottom {
  background: linear-gradient(135deg, #222 0%, #000 100%);
  color: white;
  text-align: center;
  padding: 25px 10px;
  font-size: 1rem;
  line-height: 1.8;
  border-top: 3px solid var(--secondary-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-text h1 {
    font-size: 2.2rem;
  }
  
  .header-text p {
    font-size: 1.1rem;
  }
  
  .highlight {
    font-size: 2.2rem;
  }
  
  .highlight-box h2 {
    font-size: 1.8rem;
  }
  
  .navbar a {
    padding: 15px 18px;
    font-size: 1rem;
  }
  
  .container {
    padding: 20px;
    margin: 20px auto;
  }
  
  .social {
    grid-template-columns: 1fr;
  }
  
  .payment-methods {
    justify-content: center;
  }
  
  .apply-button {
    padding: 15px 30px;
    font-size: 1.2rem;
  }
}

/* Scroll Animations */
.container > * {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.container > *:nth-child(1) { animation-delay: 0.1s; }
.container > *:nth-child(2) { animation-delay: 0.2s; }
.container > *:nth-child(3) { animation-delay: 0.3s; }
.container > *:nth-child(4) { animation-delay: 0.4s; }
.container > *:nth-child(5) { animation-delay: 0.5s; }
.container > *:nth-child(6) { animation-delay: 0.6s; }
.container > *:nth-child(7) { animation-delay: 0.7s; }
.container > *:nth-child(8) { animation-delay: 0.8s; }

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-blue) 100%);
  border-radius: 10px;
  border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-red) 100%);
}