body {
            font-family: monospace;
        }
        .dark-theme {
            background-color: #61380B;
            color: #070719;
            border-radius: 300px;
        }
        .light-theme {
            background-color: #B40431;
            color: #A9E2F3;
            border-radius: 300px;
        }
        .chat-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 10px;
            border-radius: 20px;
            border: 2px solid #FF00BF;
            background-color: #2EFEF7;
        }
        .light-theme .chat-container {
            background-color: #64FE2E;
            border: 6px solid #0101DF;
        }
        .chat-box {
            height: 430px;
            overflow-y: scroll;
            padding: 6px;
            border-radius: 30px;
            border: 0px solid #333;
            background-color: #2c2c2c;
        }
        .light-theme .chat-box {
            background-color: #f5f0f5;
            border: 1px solid #ccc;
        }
        .chat-input {
            width: calc(100% - 60px);
            border-radius: 20px;
        }
        .chat-button {
            background-color: #333;
            border: none;
            color: #fff;
            border-radius: 40px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .chat-button:hover {
            background-color: #555;
        }
        .btn-rounded {
            border-radius: 30px;
        }
        .message {
            padding: 10px;
            border-radius: 20px;
            margin-bottom: 10px;
            max-width: 80%;
            word-wrap: break-word;
        }
        .user-message {
            background-color: #0000FF;
            align-self: flex-end;
        }
        .bot-message {
            background-color: #FF0040;
            align-self: flex-start;
        }
        .light-theme .user-message {
            background-color: #0000FF;
        }
        .light-theme .bot-message {
            background-color: #FF0040;
        }
        .d-flex {
            display: flex;
        }
        .white-bubble {
            background-color: #DF01A5;
            color: #81DAF5;
        }
        pre {
            margin: 0;
            white-space: pre-wrap;
            word-wrap: break-word;
        }
        footer {
            text-align: center;
            margin-top: 30px;
        }
        footer p a {
            font-weight: bold;
        }
        /* Popup styles */
        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #FE2EF7;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            display: none;
        }
        .popup-content {
            text-align: center;
            font-style: bold;
        }
        .close-button {
            position: absolute;
            top: 10px;
            right: 10px;
            cursor: pointer;
        }
.audio-controls {
      margin-top: 20px;
    }

    .hacker-button {
      background-color: #000;
      color: #f00;
      border: 2px solid #f00;
      padding: 10px 20px;
      font-size: 16px;
      cursor: pointer;
      margin-right: 10px;
    }

    .hacker-button:hover {
      background-color: #f00;
      color: #fff;
    }
.news-container .title {
    position: absolute;
    background: #0000ff;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 24px;
    color: white;
    font-weight: bold;
    z-index: 200;
}

.news-container ul {
    display: flex;
    list-style: none;
    margin: 0;
    animation: scroll 25s infinite linear;
}

.news-container ul li {
    white-space: nowrap;
    padding: 10px 24px;
    color: #ffa500;
    position: relative;
}

.news-container ul li::after {
    content:"";
    width: 1px;
    height: 100%;
    background: #ee82ee;
    position: absolute;
    top: 0;
    right: 0;
}

.news-container ul li:last-child::after {
    display: none;
}

@keyframes scroll {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-1083px);

    }
}
body {
            font-family: Arial, sans-serif;
            background: linear-gradient(45deg, #ff0000, #00ff00, #0000ff, #ff0000); /* RGB gradient background */
            background-size: 400% 400%;
            animation: backgroundGradient 10s linear infinite;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            overflow: hidden;
        }
        .bounce-text {
    font-size: 28px;
    font-family: Arial, sans-serif;
    animation: bounce 0.75s infinite alternate;
  }

  @keyframes bounce {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-15px);
    }
  }
        .status {
            font-size: 25px;
            font-weight: bold;
            color: black; /* Text color */
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
            padding: 20px;
            border-radius: 10px;
            background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent white background */
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            animation: moveRotate 4s linear infinite;
            position: absolute;
        }

        @keyframes moveRotate {
            0% {
                top: 0;
                left: 0;
                transform: rotate(0deg);
            }
            25% {
                top: 0;
                left: calc(100% - 300px);
                transform: rotate(90deg);
            }
            50% {
                top: calc(100% - 100px);
                left: calc(100% - 300px);
                transform: rotate(180deg);
            }
            75% {
                top: calc(100% - 100px);
                left: 0;
                transform: rotate(270deg);
            }
            100% {
                top: 0;
                left: 0;
                transform: rotate(360deg);
            }
        }

        @keyframes backgroundGradient {
            0% {
                background-position: 0% 50%;
            }
            100% {
                background-position: 100% 50%;
            }
        }
body {
  display: grid;
  place-items: center;
  height: 100vh;
  margin: 0;
}

.animated-card {
  height: 300px;
  width: 200px;
  background: #1998ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.animated-card::before {
  content: "";
  position: absolute;
  height: 400px;
  width: 400px;
  background-image: conic-gradient(
    transparent,
    transparent,
    transparent,
    #74ff51
  );
  animation: rotate 5s linear infinite;
}

.animated-card .inner {
  position: absolute;
  height: 280px;
  width: 180px;
  background: #222;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
}

@keyframes rotate {
  to {
    transform: rotateZ(360deg);
  }
}
