/* Pi_Server_Xiaomi_FRP - Light Transparent Burly Theme with Purple Neon */

/* General Body */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f8f4ff 0%, #e8dfff 50%, #d4c5ff 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  color: #2d1b45;
  position: relative;
  overflow-x: hidden;
}

/* Particle Canvas - Full Screen Background */
#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Background pattern for depth */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 25% 25%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(75, 0, 130, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Main Title with Transparent Blur Box */
.main-title {
  font-size: 3.5em;
  font-weight: 900;
  margin: 20px 0 40px 0;
  text-align: center;
  letter-spacing: 3px;
  
  /* Transparent Blur Box */
  padding: 30px 50px;
  border-radius: 25px;
  backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(138, 43, 226, 0.4);
  box-shadow: 
    0 15px 50px rgba(138, 43, 226, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.8),
    inset 0 -2px 0 rgba(138, 43, 226, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 10;
}

/* Individual word colors - Clean & Clear */
.pi-text {
  color: #8a2be2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.server-text {
  color: #00aa00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.xiaomi-text {
  color: #ff6600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.frp-text {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Title box glow effect */
.main-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(138, 43, 226, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 25px;
}

.main-title:hover::before {
  opacity: 1;
}


/* Container for cards/grid */
.container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 800px;
  margin: 20px 0;
}

/* Card style for servers and admin - Light & Transparent */
.card, .admin-card {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(138, 43, 226, 0.3);
  border-radius: 12px;
  padding: 12px;
  color: #2d1b45;
  text-align: center;
  box-shadow: 
    0 12px 40px rgba(138, 43, 226, 0.15),
    inset 0 2px 0 rgba(255, 255, 255, 0.8),
    inset 0 -2px 0 rgba(138, 43, 226, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  font-weight: 600;
}

.card:hover, .admin-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(138, 43, 226, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.9),
    inset 0 -2px 0 rgba(138, 43, 226, 0.2);
  border-color: rgba(138, 43, 226, 0.6);
  background: rgba(255, 255, 255, 0.6);
}

/* Card glow effect */
.card::before, .admin-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(138, 43, 226, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.card:hover::before, .admin-card:hover::before {
  opacity: 1;
}

/* Status Emoji style - Clean without borders */
.status {
  font-size: 32px;
  margin: 15px 0;
  font-weight: 900;
}

/* Status colors - Clean without neon effects */
.online { 
  color: #00aa00;
}

.offline { 
  color: #cc0000;
}

.maintenance { 
  color: #ffaa00;
}

.full { 
  color: #0066cc;
}

/* Heading colors - Bold & Burly */
h2, h3 {
  color: #ffffff;
  text-shadow: 
    0 0 8px rgba(0, 0, 0, 0.8),
    0 2px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: 1px;
}

h2 {
  font-size: 2.4em;
  margin: 20px 0;
  text-transform: uppercase;
}

/* Form elements styling - Light & Bold */
input, select, button {
  margin: 10px 0;
  padding: 14px 18px;
  border-radius: 12px;
  border: 2px solid rgba(138, 43, 226, 0.3);
  outline: none;
  background: rgba(255, 255, 255, 0.7);
  color: #2d1b45;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  font-weight: 600;
  font-size: 1.05em;
}

input:focus, select:focus {
  border-color: #8a2be2;
  box-shadow: 
    0 0 20px rgba(138, 43, 226, 0.3),
    inset 0 2px 4px rgba(138, 43, 226, 0.1);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

/* Button styling with bold glow effect */
button {
  background: linear-gradient(135deg, #8a2be2 0%, #9932cc 100%);
  color: white;
  cursor: pointer;
  font-weight: 800;
  border: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 
    0 6px 20px rgba(138, 43, 226, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

button:hover {
  background: linear-gradient(135deg, #9932cc 0%, #ba55d3 100%);
  box-shadow: 
    0 8px 30px rgba(138, 43, 226, 0.6),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

button:active {
  transform: translateY(-1px);
  box-shadow: 
    0 4px 15px rgba(138, 43, 226, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

/* Labels styling - Bold */
label {
  display: block;
  margin-bottom: 8px;
  color: #6b2797;
  font-weight: 700;
  text-align: left;
  font-size: 1.1em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Logout link styling - Bold & Transparent */
a.logout {
  display: inline-block;
  margin: 20px 0;
  color: #8a2be2;
  text-decoration: none;
  padding: 12px 24px;
  border: 2px solid rgba(138, 43, 226, 0.4);
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

a.logout:hover {
  background: rgba(138, 43, 226, 0.1);
  text-shadow: 0 0 15px #8a2be2;
  border-color: #8a2be2;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

/* Paragraph styling - Bold & Clear */
p {
  margin: 12px 0;
  font-size: 1.15em;
  line-height: 1.5;
  font-weight: 600;
  color: #3d2456;
}

/* Responsive design */
@media (max-width: 768px) {
  .main-title {
    font-size: 2.5em;
    margin: 15px 0 30px 0;
    letter-spacing: 2px;
  }
  
  .container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
  
  .card, .admin-card {
    padding: 20px;
  }
  
  h2 {
    font-size: 1.8em;
  }
  
  .status {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 2em;
    letter-spacing: 1px;
  }
}

/* Input placeholder styling */
input::placeholder {
  color: rgba(45, 27, 69, 0.6);
  font-weight: 500;
}

/* Option styling for select elements */
option {
  background: rgba(255, 255, 255, 0.95);
  color: #2d1b45;
  font-weight: 600;
}

/* Contact Section Styling */
.contact-section {
  margin-top: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(138, 43, 226, 0.3);
  border-radius: 25px;
  backdrop-filter: blur(20px);
  text-align: center;
  box-shadow: 
    0 12px 40px rgba(138, 43, 226, 0.15),
    inset 0 2px 0 rgba(255, 255, 255, 0.8);
  width: 100%;
  max-width: 1200px;
}

.contact-section h3 {
  color: #6b2797;
  font-size: 2em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  text-shadow: 
    0 0 8px rgba(138, 43, 226, 0.3),
    0 2px 4px rgba(138, 43, 226, 0.2);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.contact-links a {
  display: inline-block;
  padding: 12px 20px;
  background: rgba(138, 43, 226, 0.8);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid rgba(138, 43, 226, 0.9);
  box-shadow: 
    0 4px 15px rgba(138, 43, 226, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Social media icon styling */
.social-icon {
  font-size: 1.2em;
  margin-right: 10px;
  display: inline-block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  width: 20px;
  text-align: center;
}

.contact-links a:hover {
  background: rgba(153, 50, 204, 0.9);
  transform: translateY(-3px);
  box-shadow: 
    0 6px 25px rgba(138, 43, 226, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: #9932cc;
}

.contact-links a:active {
  transform: translateY(-1px);
}

/* Individual platform colors */
.facebook-link {
  background: #1877f2 !important;
  border-color: #1877f2 !important;
}

.facebook-link:hover {
  background: #166fe5 !important;
  border-color: #166fe5 !important;
}

.messenger-link {
  background: #006aff !important;
  border-color: #006aff !important;
}

.messenger-link:hover {
  background: #0056cc !important;
  border-color: #0056cc !important;
}

.telegram-link {
  background: #26a5e4 !important;
  border-color: #26a5e4 !important;
}

.telegram-link:hover {
  background: #228bc9 !important;
  border-color: #228bc9 !important;
}

.channel-link {
  background: #2481cc !important;
  border-color: #2481cc !important;
}

.channel-link:hover {
  background: #1f73b7 !important;
  border-color: #1f73b7 !important;
}

.whatsapp-link {
  background: #25d366 !important;
  border-color: #25d366 !important;
}

.whatsapp-link:hover {
  background: #20bd5a !important;
  border-color: #20bd5a !important;
}

.website-link {
  background: #667eea !important;
  border-color: #667eea !important;
}

.website-link:hover {
  background: #5a6fd8 !important;
  border-color: #5a6fd8 !important;
}

.about-link {
  background: #f093fb !important;
  border-color: #f093fb !important;
}

.about-link:hover {
  background: #ed7ef7 !important;
  border-color: #ed7ef7 !important;
}

/* Mobile responsive for contact section */
@media (max-width: 768px) {
  .contact-section {
    margin-top: 30px;
    padding: 20px;
  }
  
  .contact-links {
    gap: 10px;
  }
  
  .contact-links a {
    padding: 10px 15px;
    font-size: 1em;
  }
}

/* Reset Timer Styling */
.reset-timer-container {
  margin: 20px auto;
  max-width: 1000px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.reset-timer {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(138, 43, 226, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 8px 30px rgba(138, 43, 226, 0.15),
    inset 0 2px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.reset-timer:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 40px rgba(138, 43, 226, 0.25),
    inset 0 2px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(138, 43, 226, 0.5);
}

.timer-label {
  font-weight: 700;
  color: #6b2797;
  font-size: 1.1em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.timer-display {
  font-family: 'Courier New', monospace;
  font-size: 1.3em;
  font-weight: 900;
  color: #8a2be2;
  background: rgba(138, 43, 226, 0.1);
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(138, 43, 226, 0.3);
  min-width: 80px;
  text-align: center;
  text-shadow: 0 0 5px rgba(138, 43, 226, 0.3);
}

.refresh-btn {
  background: linear-gradient(135deg, #8a2be2 0%, #9932cc 100%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 
    0 4px 15px rgba(138, 43, 226, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.refresh-btn:hover {
  background: linear-gradient(135deg, #9932cc 0%, #ba55d3 100%);
  transform: translateY(-1px) rotate(180deg);
  box-shadow: 
    0 6px 20px rgba(138, 43, 226, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.refresh-btn:active {
  transform: translateY(0) rotate(360deg);
}

@media (max-width: 480px) {
  .contact-links {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-links a {
    width: 80%;
    max-width: 250px;
  }
}

/* Logo Navigation Bar - Top Left Corner */
.logo-nav {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1500;
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 25px;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(138, 43, 226, 0.3);
  box-shadow: 
    0 12px 40px rgba(138, 43, 226, 0.15),
    inset 0 2px 0 rgba(255, 255, 255, 0.8),
    inset 0 -2px 0 rgba(138, 43, 226, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  text-decoration: none;
}

.logo-nav:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 15px 50px rgba(138, 43, 226, 0.25),
    inset 0 2px 0 rgba(255, 255, 255, 0.9),
    inset 0 -2px 0 rgba(138, 43, 226, 0.2);
  border-color: rgba(138, 43, 226, 0.5);
  background: rgba(255, 255, 255, 0.6);
}

/* Logo Image Styling */
.logo-nav .logo-img {
  width: 40px;
  height: 40px;
  margin-right: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(138, 43, 226, 0.3));
}

.logo-nav:hover .logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(138, 43, 226, 0.5));
}

/* Logo Text Styling */
.logo-nav .logo-text {
  font-size: 1.2em;
  font-weight: 800;
  color: #2d1b45;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}

.logo-nav .logo-text .pi-brand {
  color: #8a2be2;
  text-shadow: 0 0 8px rgba(138, 43, 226, 0.4);
}

/* Glow Effect for Logo Nav */
.logo-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(138, 43, 226, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 25px;
}

.logo-nav:hover::before {
  opacity: 1;
}

/* Responsive Design for Logo Navigation */
@media (max-width: 768px) {
  .logo-nav {
    top: 15px;
    left: 15px;
    padding: 10px 16px;
  }
  
  .logo-nav .logo-img {
    width: 35px;
    height: 35px;
    margin-right: 10px;
  }
  
  .logo-nav .logo-text {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .logo-nav {
    top: 10px;
    left: 10px;
    padding: 8px 12px;
  }
  
  .logo-nav .logo-img {
    width: 30px;
    height: 30px;
    margin-right: 8px;
  }
  
  .logo-nav .logo-text {
    font-size: 1em;
    letter-spacing: 0.3px;
  }
}

/* Enhanced Beautiful Menu Button - Top Right Corner */
.beautiful-menu-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.beautiful-menu-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  overflow: hidden;
  
  /* Beautiful Gradient Background */
  background: linear-gradient(135deg, #8a2be2 0%, #9932cc 50%, #ba55d3 100%);
  
  /* Enhanced Glassmorphism */
  backdrop-filter: blur(20px);
  
  /* Beautiful Shadow with Multiple Layers */
  box-shadow: 
    0 8px 32px rgba(138, 43, 226, 0.4),
    0 4px 16px rgba(138, 43, 226, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    
  /* Smooth Animations */
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* 3D Transform Effect */
  transform-style: preserve-3d;
}

.beautiful-menu-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: all 0.4s ease;
  transform: rotate(0deg);
}

.beautiful-menu-btn:hover::before {
  opacity: 1;
  transform: rotate(360deg);
}

.beautiful-menu-btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 
    0 16px 48px rgba(138, 43, 226, 0.6),
    0 8px 24px rgba(138, 43, 226, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.beautiful-menu-btn:active {
  transform: translateY(-2px) scale(1.05);
  transition: all 0.15s ease;
}

/* Menu Icon Styling */
.menu-icon {
  color: white;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.beautiful-menu-btn:hover .menu-icon {
  transform: rotate(90deg);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Enhanced Dropdown Menu */
.enhanced-dropdown-menu {
  display: none;
  position: absolute;
  top: 75px;
  right: 0;
  min-width: 220px;
  max-width: 280px;
  
  /* Beautiful Background */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  
  /* Enhanced Border and Shadow */
  border: 2px solid rgba(138, 43, 226, 0.2);
  border-radius: 20px;
  box-shadow: 
    0 20px 60px rgba(138, 43, 226, 0.3),
    0 10px 30px rgba(138, 43, 226, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.9);
    
  /* Smooth Animation */
  opacity: 0;
  transform: translateY(-10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  padding: 15px;
  z-index: 2000;
}

.enhanced-dropdown-menu.show {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Enhanced Menu Items */
.enhanced-menu-item {
  display: block;
  padding: 16px 20px;
  color: #2d1b45;
  text-decoration: none;
  border-radius: 12px;
  margin: 8px 0;
  font-weight: 600;
  font-size: 14px;
  
  /* Beautiful Transition */
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Subtle Background */
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(138, 43, 226, 0.1);
}

.enhanced-menu-item:hover {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.15) 0%, rgba(186, 85, 211, 0.15) 100%);
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 8px 25px rgba(138, 43, 226, 0.2);
  border-color: rgba(138, 43, 226, 0.3);
}

.enhanced-menu-item .menu-item-icon {
  margin-right: 12px;
  font-size: 16px;
  color: #8a2be2;
  transition: all 0.3s ease;
}

.enhanced-menu-item:hover .menu-item-icon {
  transform: scale(1.2);
  color: #9932cc;
}

.enhanced-menu-item .menu-item-desc {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.enhanced-menu-item:hover .menu-item-desc {
  opacity: 1;
  color: #555;
}

/* Floating Telegram Button Enhancement */
.floating-telegram-btn {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  z-index: 1500 !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #0088cc 0%, #229ed9 100%) !important;
  color: white !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  
  /* Enhanced Shadow and Effects */
  box-shadow: 
    0 12px 35px rgba(0, 136, 204, 0.4),
    0 6px 18px rgba(0, 136, 204, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.2) !important;
    
  backdrop-filter: blur(15px) !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.floating-telegram-btn:hover {
  transform: translateY(-6px) scale(1.1) !important;
  box-shadow: 
    0 20px 50px rgba(0, 136, 204, 0.5),
    0 10px 25px rgba(0, 136, 204, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.3) !important;
}

.floating-telegram-btn i {
  font-size: 26px !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

/* Responsive Design for Enhanced Menu */
@media (max-width: 768px) {
  .beautiful-menu-container {
    top: 15px;
    right: 15px;
  }
  
  .beautiful-menu-btn {
    width: 55px;
    height: 55px;
  }
  
  .menu-icon {
    font-size: 26px;
  }
  
  .enhanced-dropdown-menu {
    min-width: 200px;
    max-width: 250px;
    top: 70px;
  }
}

@media (max-width: 480px) {
  .beautiful-menu-container {
    top: 10px;
    right: 10px;
  }
  
  .beautiful-menu-btn {
    width: 50px;
    height: 50px;
  }
  
  .menu-icon {
    font-size: 24px;
  }
  
  .enhanced-dropdown-menu {
    min-width: 180px;
    max-width: 220px;
    right: -10px;
    top: 65px;
  }
  
  .floating-telegram-btn {
    width: 55px !important;
    height: 55px !important;
    bottom: 15px !important;
    right: 15px !important;
  }
  
  .floating-telegram-btn i {
    font-size: 24px !important;
  }
}