body {
    background: #0a0a0a;
    font-family: Arial, sans-serif;
}

h1 {
    color: #fff;
    font-size: 48px;
}

.glow-btn {
    position: relative;
    padding: 15px 40px;
    color: white;
    text-decoration: none;
    font-size: 20px;
    border-radius: 4px;
    background: #111;
    z-index: 1;
    overflow: hidden;
}

.glow-btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(45deg, #8a2cff, #3bb2ff);
    z-index: -1;
}

.glow-btn::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: inherit;
    background: linear-gradient(135deg, #8a2cff, #3bb2ff);
    filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -2;
}

.glow-btn:hover::after {
    opacity: 0.7;
}

.outlined-text {
    font-family: Arial, sans-serif;
    color: white;
    text-shadow: 
        1px 1px 10px #8c00ff,
        -1px -1px 10px #ff00f2,
        -1px 1px 10px #1e00ff,
        1px -1px 10px #00f2ff;
}


.rainbow-shadow {
  font-size: 90px;
  font-weight: bold;
  color: white;
  display: inline-block;
  text-shadow:
      1px 1px 10px red,
      -1px -1px 10px red,
      -1px 1px 10px red,
      1px -1px 10px red;
  animation: hueRotate 2s linear infinite;
}

@keyframes hueRotate {
  0%   { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

.strobe-shadow {
  font-size: 90px;
  font-weight: bold;
  color: white;
  display: inline-block;
  text-shadow:
      1px 1px 10px white,
      -1px -1px 10px white,
      -1px 1px 10px white,
      1px -1px 10px white;
  animation: strobe 0.5s linear infinite;
}

@keyframes strobe {
  0%   { filter: brightness(0); }
  50%  { filter: brightness(2); }  
  100% { filter: brightness(0); }  
}

/* ========== GENERAL PAGE STYLE ========== */
body {
    background: #0a0a0a;
    font-family: Arial, sans-serif;
}

h1 {
    color: #fff;
    font-size: 48px;
}

/* ========== GLOW BUTTON ========== */
.glow-btn {
    position: relative;
    padding: 15px 40px;
    color: white;
    text-decoration: none;
    font-size: 20px;
    border-radius: 4px;
    background: #111;
    z-index: 1;
    overflow: hidden;
}

.glow-btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(45deg, #8a2cff, #3bb2ff);
    z-index: -1;
}

.glow-btn::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: inherit;
    background: linear-gradient(135deg, #8a2cff, #3bb2ff);
    filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -2;
}

.glow-btn:hover::after {
    opacity: 0.7;
}


/* ========== TEXT SHADOW EFFECTS ========== */
.outlined-text {
    font-family: Arial, sans-serif;
    color: white;
    text-shadow: 
        1px 1px 10px #8c00ff,
        -1px -1px 10px #ff00f2,
        -1px 1px 10px #1e00ff,
        1px -1px 10px #00f2ff;
}

.rainbow-shadow {
    font-size: 90px;
    font-weight: bold;
    color: white;
    display: inline-block;
    text-shadow:
        1px 1px 10px red,
        -1px -1px 10px red,
        -1px 1px 10px red,
        1px -1px 10px red;
    animation: hueRotate 2s linear infinite;
}

@keyframes hueRotate {
    0%   { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.strobe-shadow {
    font-size: 90px;
    font-weight: bold;
    color: white;
    display: inline-block;
    text-shadow:
        1px 1px 10px white,
        -1px -1px 10px white,
        -1px 1px 10px white,
        1px -1px 10px white;
    animation: strobe 0.5s linear infinite;
}

@keyframes strobe {
    0%   { filter: brightness(0); }
    50%  { filter: brightness(2); }
    100% { filter: brightness(0); }
}


/* ========== CHANGELOG DROPDOWN ========== */
.accordion-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.accordion {
    outline: none;
    width: 100%;
    margin: 0;
    cursor: pointer;
    border: none;
}

.accordion:focus,
.accordion:active {
    outline: none;
    box-shadow: 0 0 15px rgba(138, 44, 255, 0.6),
                0 0 25px rgba(59, 178, 255, 0.6);
}

.panel {
    max-height: 0;
    overflow: hidden;
    background: #111;
    padding: 0;
    margin: 0;
    border-radius: 4px;
    transition: max-height 0.4s ease, margin 0.4s ease;
}

.panel p {
    color: white;
    padding: 15px 0;
}

.panel.open {
    margin-bottom: 10px;
}

.chat-page {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #222;
    color: white;
}

.chat-page #chat-container {
    width: 400px;
    height: 500px;
    border: 1px solid #555;
    display: flex;
    flex-direction: column;
}

.chat-page #messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    border-bottom: 1px solid #555;
}

.chat-page #message-input {
    padding: 10px;
    border: none;
    width: 100%;
    box-sizing: border-box;
}

.chat-page #send-btn {
    padding: 10px;
    border: none;
    background: #555;
    color: white;
    cursor: pointer;
}

.chat-page #send-btn:hover {
    background: #777;
}