* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: url('https://files.catbox.moe/cxrpaj.png') no-repeat center center/cover;
}
    
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
    position: relative;
}

.container {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    animation: fadeIn 0.5s ease-in-out;
    color: white;
    position: relative;
}

.container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid blueviolet;
    border-radius: 10px;
    animation: borderMove 3s linear infinite;
}

@keyframes borderMove {
    0% { clip-path: inset(0% 100% 0% 0%); }
    25% { clip-path: inset(0% 0% 0% 0%); }
    50% { clip-path: inset(0% 0% 100% 0%); }
    75% { clip-path: inset(0% 0% 0% 100%); }
    100% { clip-path: inset(0% 100% 0% 0%); }
}

h2 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid yellow;
    border-radius: 10px;
    animation: borderMove 3s linear infinite;
}

@keyframes borderMove {
    0% { clip-path: inset(0% 100% 0% 0%); }
    25% { clip-path: inset(0% 0% 0% 0%); }
    50% { clip-path: inset(0% 0% 100% 0%); }
    75% { clip-path: inset(0% 0% 0% 100%); }
    100% { clip-path: inset(0% 100% 0% 0%); }
}

h3 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding: 10px 20px ;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid rgb(202, 4, 4);
    border-radius: 10px;
    animation: borderMove 3s linear infinite;
}

@keyframes borderMove {
    0% { clip-path: inset(0% 100% 0% 0%); }
    25% { clip-path: inset(0% 0% 0% 0%); }
    50% { clip-path: inset(0% 0% 100% 0%); }
    75% { clip-path: inset(0% 0% 0% 100%); }
    100% { clip-path: inset(0% 100% 0% 0%); }
}

p {
    font-size: 15px;
    margin-bottom: 10px;
    text-align: left;
}

.back-btn {
    margin-top: 15px;
    padding: 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.back-btn:hover {
    background: #0056b3;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.music-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 20px;
  padding: 10px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

