/* Global Styles */
.player-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(255,255,255,0.2);
    overflow: hidden;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    animation: fadeIn 0.6s ease-out;
    border: 1px solid rgba(255,255,255,0.3);
  }

  /* Header Styles */
  .player-header {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,240,240,0.9));
    padding: 30px 20px;
    text-align: center;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
  }


  .player-header h1 {
    color: #333;
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #555, #263680);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .player-header p {
    color: #666;
    margin: 12px 0 0;
    font-size: 16px;
    font-weight: 500;
  }

  /* Input Section */
  .input-section {
    padding: 30px 20px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(5px);
    border-bottom: 2px solid rgba(240,240,240,0.5);
  }

  .url-input {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50px;
    font-size: 16px;
    box-sizing: border-box;
    background: rgba(255,255,255,0.9);
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
  }

  .url-input:focus {
    outline: none;
    border-color: #FF7700;
    box-shadow: 0 0 0 4px rgba(255, 119, 0, 0.15), 0 8px 25px rgba(255, 119, 0, 0.1);
    background: rgba(255,255,255,0.95);
    transform: translateY(-2px);
  }

  .url-input::placeholder {
    color: #999;
    font-weight: 400;
  }

  /* Captcha Section */
  .captcha-section {
    padding: 20px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(5px);
    border-bottom: 2px solid rgba(240,240,240,0.5);
    text-align: center;
  }

  .captcha-container {
    display: inline-block;
    min-height: 65px;
    position: relative;
  }

  .captcha-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FF7700;
    font-size: 14px;
    font-weight: 500;
  }

  .captcha-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 10px;
    padding: 8px 16px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 20px;
    display: none;
  }

  /* Server Selection */
  .server-section {
    padding: 25px 20px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(240,240,240,0.5);
  }

  .server-section h3 {
    margin: 0 0 20px;
    color: #444;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
  }

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

  .server-btn {
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,240,240,0.9));
    color: #FF7700;
    border: 2px solid rgba(255, 119, 0, 0.3);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
  }

  .server-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
  }

  .server-btn:hover::before {
    left: 100%;
  }

  .server-btn:hover {
    background: linear-gradient(135deg, #FF7700, #FF9500);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 119, 0, 0.3);
    border-color: #FF7700;
  }

  .server-btn:active {
    transform: translateY(-1px);
  }

  .server-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(240,240,240,0.7);
    color: #999;
    border-color: rgba(221,221,221,0.5);
    transform: none;
  }

  /* Status Indicator */
  .status-section {
    padding: 20px;
    text-align: center;
    background: rgba(249,249,249,0.8);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(238,238,238,0.5);
    min-height: 24px;
  }

  /* Download Section */
  .download-section {
    padding: 15px 20px;
    text-align: center;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(238,238,238,0.5);
  }

  .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    text-decoration: none;
  }

  .download-btn:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
  }

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

  .download-btn svg {
    transition: transform 0.3s ease;
  }

  .download-btn:hover svg {
    transform: translateY(2px);
  }

  #status {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
  }

  #status.success {
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
  }

  #status.error {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
  }

  /* Player Section */
  .player-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    display: none; /* Hidden by default */
  }

  .player-wrapper.visible {
    display: block;
    animation: slideDown 0.5s ease-out;
  }

  #video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0;
  }

  /* Hide download option from video controls */
  #video::-webkit-media-controls-download-button {
    display: none !important;
  }

  #video::-webkit-media-controls-overflow-menu-button {
    display: none !important;
  }

  /* Hide download menu items */
  video::-webkit-media-controls-download-button {
    display: none !important;
  }

  video::-webkit-media-controls-overflow-button {
    display: none !important;
  }

  video::-webkit-media-controls-download {
    display: none !important;
  }

  /* Firefox specific controls hiding */
  video::-moz-media-controls-download-button {
    display: none !important;
  }

  /* Generic approach - disable context menu on video */
  #video {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  /* Disable right click context menu on video */
  video {
    pointer-events: auto;
  }

  video::-webkit-media-controls-panel {
    /* Custom styling to ensure only essential controls are shown */
  }

  /* More specific selectors for hiding download buttons */
  video::-webkit-media-controls-download-button,
  video::-webkit-media-controls-overflow-menu-button,
  video::-webkit-media-controls-overflow-button,
  video::-internal-media-controls-download-button,
  video::-webkit-media-controls-enclosure::-webkit-media-controls-download-button {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
  }

  /* Hide three-dot menu that contains download option */
  [data-title="More options"],
  [aria-label="More options"],
  [aria-label="Download"],
  button[aria-label="Download"],
  button[title="Download"] {
    display: none !important;
    visibility: hidden !important;
  }

  /* Overlay */
  #overlay {
    position: absolute;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.95), rgba(26,26,26,0.95));
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.5s ease;
    backdrop-filter: blur(10px);
  }

  #overlay.hidden {
    opacity: 0;
    pointer-events: none;
  }

  .countdown-container {
    text-align: center;

    position: relative;
    z-index: 20;
  }

  #countdown {
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(135deg, #FFF, #F415FB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 15px 0;
    display: block;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 20px rgba(255, 119, 0, 0.3);
    position: relative;
    z-index: 25;
    line-height: 1;
  }

  .overlay-text {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin: 10px 0;
    position: relative;
    z-index: 15;
  }


  /* Controls */
  .controls {
    padding: 25px 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(240,240,240,0.5);
    flex-wrap: wrap;
  }

  .control-btn {
    padding: 16px 36px;
    background: linear-gradient(135deg, #FF7700, #FF9500);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
    box-shadow: 0 6px 20px rgba(255, 119, 0, 0.3);
    position: relative;
    overflow: hidden;
  }

  .control-btn::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: left 0.5s;
  }

  .control-btn:hover::before {
    left: 100%;
  }

  .control-btn.visible {
    display: block;
    animation: slideUp 0.5s ease-out;
  }

  .control-btn:hover {
    background: linear-gradient(135deg, #e56e00, #e58500);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 119, 0, 0.4);
  }

  .control-btn:active {
    transform: translateY(-1px);
  }

  .share-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
  }

  .share-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
  }

  /* Share Modal */
  .share-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }

  .share-modal.visible {
    display: flex;
    animation: fadeIn 0.3s ease-out;
  }

  .share-content {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  }

  .share-content h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
  }

  .share-url {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 119, 0, 0.3);
    border-radius: 50px;
    font-size: 14px;
    background: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    font-family: monospace;
    word-break: break-all;
  }

  .share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
  }

  .copy-btn, .close-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .copy-btn {
    background: linear-gradient(135deg, #f08929, #f7a04f);
    color: white;
  }

  .close-btn {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
  }

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

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

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

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

  /* Responsive Design */
  @media (max-width: 768px) {
    .player-header h1 {
      font-size: 28px;
    }

    .server-btn {
      padding: 12px 20px;
      font-size: 14px;
    }

    .control-btn {
      padding: 14px 28px;
      font-size: 15px;
    }

    .controls {
      flex-direction: column;
      align-items: center;
    }

    .share-content {
      margin: 20px;
      padding: 25px;
    }
  }

  @media (max-width: 480px) {
    .player-header h1 {
      font-size: 24px;
    }

    .servers {
      gap: 10px;
    }

    .server-btn {
      padding: 10px 16px;
      font-size: 13px;
    }

    .control-btn {
      width: 100%;
      max-width: 300px;
    }

    #countdown {
      font-size: 56px;
    }
  }

/* --- Enhanced Responsive and Awesome Design Additions --- */

/* Make player-container pop with glassmorphism and shadow */
.player-container {
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18), 0 1.5px 8px rgba(42,42,114,0.08);
  background: rgba(255,255,255,0.85);
  border-radius: 32px;
  border: 1.5px solid rgba(42,42,114,0.12);
  margin-top: 32px;
  margin-bottom: 32px;
}

/* Add a subtle animated gradient to the header */
.player-header {
  background: linear-gradient(120deg, #e6f7ff 0%, #cce6ff 100%);
  position: relative;
  overflow: hidden;
}
.player-header::before {
  content: '';
  position: absolute;
  top: -40px; left: -40px; right: -40px; bottom: -40px;
  background: linear-gradient(120deg, #e6f7ff 0%, #b3e0ff 100%);
  opacity: 0.18;
  z-index: 0;
  filter: blur(24px);
  animation: gradientMove 8s linear infinite alternate;
}
.player-header > * {
  position: relative;
  z-index: 1;
}
@keyframes gradientMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(20px); }
}

/* Inputs and buttons: more modern, with shadow and focus */
.url-input {
  box-shadow: 0 2px 12px rgba(0,159,253,0.07);
  background: rgba(255,255,255,0.98);
  border: 2px solid #cce6ff;
  transition: border 0.2s, box-shadow 0.2s;
}
.url-input:focus {
  border-color: #009ffd;
  box-shadow: 0 0 0 4px rgba(0, 159, 253, 0.13), 0 8px 25px rgba(0, 159, 253, 0.09);
}

.server-btn, .control-btn, .copy-btn, .close-btn {
  box-shadow: 0 2px 8px rgba(0,159,253,0.08);
  letter-spacing: 0.02em;
}
.server-btn, .control-btn, .copy-btn {
  background: linear-gradient(135deg, #2a2a72 0%, #009ffd 100%);
  color: #fff;
  border: none;
}
.server-btn:focus, .control-btn:focus, .copy-btn:focus, .close-btn:focus {
  outline: 2px solid #009ffd;
  outline-offset: 2px;
}
.server-btn:hover, .control-btn:hover, .copy-btn:hover {
  background: linear-gradient(135deg, #009ffd 0%, #2a2a72 100%);
  color: #fff;
}
.close-btn {
  background: rgba(42,42,114,0.08);
  color: #2a2a72;
}
.close-btn:hover {
  background: #009ffd;
  color: #fff;
}

/* Responsive tweaks for better mobile experience */
@media (max-width: 600px) {
  .player-container {
    border-radius: 0;
    margin: 0;
    box-shadow: none;
    border: none;
  }
  .player-header, .input-section, .captcha-section, .server-section, .status-section {
    padding-left: 8px;
    padding-right: 8px;
  }
  .player-header h1 {
    font-size: 20px;
  }
  .player-header p {
    font-size: 13px;
  }
  .url-input {
    font-size: 15px;
    padding: 14px 12px;
  }
  .server-btn {
    font-size: 12px;
    padding: 8px 10px;
  }
  .status-section {
    font-size: 13px;
  }
}

/* --- SEO Content Section Styling --- */
.seo-content {
  margin-top: 32px;
  margin-bottom: 32px;
  background: rgba(255,255,255,0.97);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,159,253,0.07);
  padding: 32px 40px;
  color: #222;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  line-height: 1.7;
}
.seo-content h2, .seo-content h3 {
  background: linear-gradient(90deg, #2a2a72 0%, #009ffd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  margin-top: 0;
}
.seo-content ul, .seo-content ol {
  margin-left: 1.2em;
  margin-bottom: 1em;
}
.seo-content li {
  margin-bottom: 0.4em;
  font-size: 1em;
}
.seo-content code {
  background: #e6f7ff;
  color: #2a2a72;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.98em;
}
@media (max-width: 600px) {
  .seo-content {
    padding: 16px 6px;
    font-size: 0.98em;
    border-radius: 0;
    box-shadow: none;
  }
  .seo-content h2 {
    font-size: 1.2em;
  }
  .seo-content h3 {
    font-size: 1em;
  }
}

/* --- SEO Content Inner and Banner Styling --- */
.seo-content-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 12px;
}
.seo-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.seo-banner svg {
  margin-bottom: 8px;
  box-shadow: 0 2px 12px rgba(0,159,253,0.10);
  border-radius: 50%;
}
.seo-banner h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 0;
  line-height: 1.2;
}
.seo-content-inner h3 {
  margin-top: 2.2em;
  margin-bottom: 0.7em;
  font-size: 1.2em;
}
.seo-content-inner p,
.seo-content-inner ul,
.seo-content-inner ol {
  margin-bottom: 1.2em;
}
.seo-content-inner ul,
.seo-content-inner ol {
  padding-left: 1.3em;
}
.seo-content-inner li {
  margin-bottom: 0.5em;
  font-size: 1em;
}
.seo-content-inner code {
  font-size: 0.97em;
  padding: 2px 6px;
  border-radius: 6px;
}
@media (max-width: 600px) {
  .seo-content-inner {
    padding: 0 2px;
  }
  .seo-banner h2 {
    font-size: 1.1em;
  }
  .seo-content-inner h3 {
    font-size: 1em;
  }
}

/* --- FAQ Section Styling --- */
.faq-content {
  margin: 40px auto 0 auto;
  background: rgba(255,255,255,0.98);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(42,42,114,0.07);
  max-width: 800px;
  padding: 32px 0 32px 0;
}
.faq-content-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq-content h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.2em;
  background: linear-gradient(90deg, #2a2a72 0%, #009ffd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.faq-item {
  background: linear-gradient(120deg, #f6faff 0%, #e6f0fa 100%);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,159,253,0.07);
  margin-bottom: 24px;
  padding: 24px 20px 18px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1.5px solid #e3eafd;
}
.faq-item:hover {
  box-shadow: 0 6px 24px rgba(0,159,253,0.13);
  transform: translateY(-2px) scale(1.01);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 10px;
  display: flex;
  align-items: center;
}
.faq-question:focus {
  background: rgba(0,159,253,0.07);
  outline: 2px solid #009ffd;
}
.faq-question h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: #2a2a72;
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s;
  will-change: max-height, opacity;
  margin-top: 0;
}
.faq-answer[hidden] {
  display: block;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}
.faq-answer:not([hidden]) {
  max-height: 400px;
  opacity: 1;
  margin-top: 12px;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.25s;
}
.faq-item {
  padding-bottom: 0;
}
.faq-item h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2a2a72;
  margin-bottom: 0.7em;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-item h3::before {
  content: "❓";
  font-size: 1.1em;
  color: #009ffd;
  margin-right: 6px;
}
.faq-item p {
  color: #333;
  font-size: 1em;
  margin: 0;
  line-height: 1.7;
}
.faq-arrow {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
}
.faq-question[aria-expanded="true"] {
  background: linear-gradient(90deg, #e6f7ff 0%, #cce6ff 100%);
  box-shadow: 0 2px 8px rgba(0,159,253,0.07);
}
@media (max-width: 600px) {
  .faq-content {
    border-radius: 0;
    box-shadow: none;
    padding: 18px 0 18px 0;
  }
  .faq-content-inner {
    padding: 0 4px;
  }
  .faq-content h2 {
    font-size: 1.1em;
    margin-bottom: 1.2em;
  }
  .faq-item {
    padding: 14px 8px 10px 8px;
    margin-bottom: 14px;
  }
  .faq-item h3 {
    font-size: 1em;
  }
  .faq-question h3 {
    font-size: 1em;
  }
}

/* --- Enhanced Server Section & Play Button --- */
.server-section {
  padding: 32px 20px 28px 20px;
  background: linear-gradient(120deg, #e6f7ff 0%, #cce6ff 100%);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,159,253,0.07);
  margin: 32px 0 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.server-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2a2a72;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
  background: linear-gradient(90deg, #2a2a72 0%, #009ffd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 8px rgba(0,159,253,0.04);
}
.servers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.server-btn {
  font-size: 1.15rem;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 50px;
  background: linear-gradient(90deg, #009ffd 0%, #2a2a72 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 18px rgba(0,159,253,0.13);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
  position: relative;
  overflow: hidden;
  outline: none;
  margin: 0 auto;
  z-index: 1;
  letter-spacing: 0.02em;
  animation: pulsePlayBtn 2.2s infinite cubic-bezier(0.4,0,0.2,1);
}
.server-btn:active {
  transform: scale(0.97);
}
.server-btn:focus {
  box-shadow: 0 0 0 4px rgba(0,159,253,0.13), 0 4px 18px rgba(0,159,253,0.13);
}
.server-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #e3eafd;
  color: #b0b0b0;
  box-shadow: none;
  animation: none;
}
@keyframes pulsePlayBtn {
  0%, 100% { box-shadow: 0 4px 18px rgba(0,159,253,0.13); }
  50% { box-shadow: 0 0 0 12px rgba(0,159,253,0.08); }
}
.input-section {
  padding: 32px 20px 18px 20px;
  background: #fff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 2px 12px rgba(0,159,253,0.06);
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.url-input {
  font-size: 1.1rem;
  padding: 18px 28px;
  border-radius: 50px;
  border: 2px solid #cce6ff;
  background: #f6faff;
  color: #2a2a72;
  box-shadow: 0 2px 8px rgba(0,159,253,0.06);
  transition: border 0.2s, box-shadow 0.2s;
  margin-bottom: 0;
}
.url-input:focus {
  border-color: #009ffd;
  box-shadow: 0 0 0 4px rgba(0,159,253,0.13), 0 2px 8px rgba(0,159,253,0.09);
}
@media (max-width: 600px) {
  .input-section, .server-section {
    border-radius: 0;
    padding: 16px 4px 10px 4px;
    margin: 0;
    box-shadow: none;
  }
  .server-btn {
    font-size: 1em;
    padding: 14px 0;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .url-input {
    font-size: 1em;
    padding: 14px 12px;
  }
}

.telegram-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 32px;
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff !important;
  background: linear-gradient(90deg, #009ffd 0%, #2a2a72 100%);
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0,159,253,0.13);
  transition: background 0.3s, box-shadow 0.2s, transform 0.18s;
  margin-top: 22px;
  margin-bottom: 0;
  letter-spacing: 0.01em;
  border: none;
  outline: none;
  cursor: pointer;
}
.telegram-btn svg {
  display: inline-block;
  vertical-align: middle;
}
.telegram-btn:hover, .telegram-btn:focus {
  background: linear-gradient(90deg, #2a2a72 0%, #009ffd 100%);
  color: #fff !important;
  box-shadow: 0 8px 32px rgba(0,159,253,0.18);
  text-decoration: none;
  transform: translateY(-2px) scale(1.03);
}
.telegram-btn:active {
  transform: scale(0.98);
}
@media (max-width: 600px) {
  .telegram-btn {
    font-size: 1em;
    padding: 10px 12px;
    border-radius: 20px;
    width: 100%;
    justify-content: center;
  }
}

/* --- Awesome Animated Background --- */
body {
  background: #f7f7fa;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
.bg-abstract {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-abstract svg {
  position: absolute;
  width: 60vw;
  min-width: 400px;
  max-width: 900px;
  opacity: 0.18;
  filter: blur(8px);
  animation: floatBg 18s ease-in-out infinite alternate;
}
.bg-abstract svg.bg1 {
  top: -120px; left: -180px;
  animation: floatBg1 18s ease-in-out infinite alternate;
}
.bg-abstract svg.bg2 {
  bottom: -160px; right: -120px;
  animation: floatBg2 22s ease-in-out infinite alternate;
}
@keyframes floatBg {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.08) translateY(40px); }
}
@keyframes floatBg1 {
  0% { transform: scale(1) rotate(0deg) translateY(0); }
  40% { transform: scale(1.08) rotate(8deg) translateY(30px) translateX(10px); }
  70% { transform: scale(0.98) rotate(-6deg) translateY(-20px) translateX(-10px); }
  100% { transform: scale(1.05) rotate(12deg) translateY(40px) translateX(20px); }
}
@keyframes floatBg2 {
  0% { transform: scale(1.1) rotate(0deg) translateY(0); }
  30% { transform: scale(1.03) rotate(-10deg) translateY(-20px) translateX(10px); }
  60% { transform: scale(1.13) rotate(7deg) translateY(30px) translateX(-10px); }
  100% { transform: scale(1.07) rotate(-8deg) translateY(-30px) translateX(20px); }
}
@media (max-width: 600px) {
  .bg-abstract svg {
    width: 100vw;
    min-width: 0;
    max-width: none;
    opacity: 0.13;
    filter: blur(12px);
  }
}

/* --- Visitors Reviews Section --- */
.reviews-section {
  margin: 48px auto 0 auto;
  padding: 0 0 48px 0;
  max-width: 900px;
  background: rgba(255,255,255,0.92);
  border-radius: 32px;
  box-shadow: 0 4px 32px rgba(42,42,114,0.07);
  position: relative;
  z-index: 2;
}
.reviews-header {
  text-align: center;
  padding: 36px 0 18px 0;
}
.reviews-header h2 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 0.3em;
  background: linear-gradient(90deg, #2a2a72 0%, #009ffd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.reviews-header p {
  color: #444;
  font-size: 1.08rem;
  margin-bottom: 0;
}
.reviews-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.slider-arrow {
  background: linear-gradient(135deg, #009ffd 0%, #2a2a72 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  font-weight: 900;
  box-shadow: 0 2px 12px #009ffd33;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
  z-index: 3;
  margin: 0 10px;
  outline: none;
}
.slider-arrow:focus, .slider-arrow:hover {
  background: linear-gradient(135deg, #2a2a72 0%, #009ffd 100%);
  box-shadow: 0 4px 18px #009ffd55;
  transform: scale(1.08);
}
.reviews-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 8px 32px 8px;
  width: 100%;
}
.review-card {
  scroll-snap-align: center;
  min-width: 280px;
  max-width: 320px;
}
@media (max-width: 900px) {
  .reviews-slider {
    max-width: 100vw;
  }
  .reviews-list {
    gap: 14px;
    padding: 0 2px 24px 2px;
  }
}
@media (max-width: 600px) {
  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    margin: 0 2px;
  }
  .reviews-list {
    gap: 6px;
    padding: 0 0 18px 0;
  }
  .review-card {
    min-width: 220px;
    max-width: 90vw;
  }
}
