/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
  }
  
  /* Body and Background */
  body {
    background: radial-gradient(circle, #0d0d0d 20%, #1a1a1a);
    color: #f1f1f1;
    font-size: 16px;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 1s ease;
  }
  
  /* Main Container */
  .main-container {
    max-width: 1600px;
    width: 100%;
    padding: 50px 30px;
    background: #1a1a1a;
    border-radius: 25px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.4s ease-in-out;
  }
  
  .main-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.6);
  }
  
  /* Header */
  header {
    text-align: center;
    padding: 30px;
    animation: fadeIn 1s ease-out;
  }
  
  header h1 {
    font-size: 4.5rem;
    background: linear-gradient(90deg, #e91e63, #03a9f4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    transition: transform 0.5s ease-out;
  }
  
  header h1:hover {
    transform: rotateX(15deg);
  }
  
  header p {
    font-size: 1.5rem;
    color: #bbb;
    letter-spacing: 1px;
    margin-top: 15px;
    transition: color 0.3s ease;
  }
  
  header p:hover {
    color: #fff;
  }
  
  /* Tool Container */
  .tool-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
  }
  
  /* Status Checker */
  .status-checker {
    background: #222;
    border-radius: 20px;
    padding: 40px;
    flex: 1 1 45%;
    min-width: 400px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
  }
  
  .status-checker:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.4);
  }
  
  .status-checker h2 {
    font-size: 2rem;
    color: #03a9f4;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  }
  
  .status-checker input,
  .status-checker button {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 12px;
    font-size: 1.1rem;
    background: #333;
    color: #fff;
    border: none;
    outline: none;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .status-checker input:focus,
  .status-checker button:hover {
    background: #444;
    transform: translateY(-3px);
  }
  
  .status-checker button {
    background: #03a9f4;
    cursor: pointer;
  }
  
  .status-checker button:active {
    background: #0288d1;
    transform: translateY(2px);
  }
  
  #result {
    font-size: 1.4rem;
    color: #8bc34a;
    font-weight: 600;
    margin-top: 10px;
    opacity: 0;
    animation: fadeIn 1s forwards;
  }
  
  /* Embedded Server List */
  .embedded-server-list {
    background: #222;
    border-radius: 20px;
    padding: 40px;
    flex: 1 1 45%;
    min-width: 400px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
  }
  
  .embedded-server-list:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.4);
  }
  
  .embedded-server-list h2 {
    font-size: 2rem;
    color: #03a9f4;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  }
  
  .embedded-server-list iframe {
    width: 100%;
    height: 600px;
    border-radius: 10px;
    background: #000;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .embedded-server-list iframe:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  }
  
  /* Footer */
  footer {
    padding: 20px 0;
    font-size: 1.3rem;
    color: #ccc;
    margin-top: 40px;
  }
  
  footer p {
    color: #bbb;
    text-align: center;
    font-weight: 300;
    letter-spacing: 1px;
  }
  
  /* Animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes glow {
    0% {
      box-shadow: 0 0 5px #03a9f4, 0 0 10px #03a9f4, 0 0 20px #03a9f4;
    }
    50% {
      box-shadow: 0 0 20px #03a9f4, 0 0 30px #03a9f4, 0 0 40px #03a9f4;
    }
    100% {
      box-shadow: 0 0 5px #03a9f4, 0 0 10px #03a9f4, 0 0 20px #03a9f4;
    }
  }
  