/* Grundlayout */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: black;
    color: white;
    text-align: center;
}

/* Container */
.container {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px;
    max-width: 800px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Cosplay-Container */
.cosplay-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Bilder links */
.cosplay-container img {
    width: 150px;
    height: auto;
    border-radius: 10px;
    margin-right: 20px;
}

/* Text rechts */
.cosplay-text {
    text-align: left;
}

/* Buttons */
.button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Stil für Buttons */
.glow-on-hover {
    width: 180px;
    height: 60px;
    border: none;
    outline: none;
    color: white;
    background: black;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    font-size: 16px;
    text-align: center;
}

.glow-on-hover:before {
    content: "";
    background: linear-gradient(45deg, 
        #ff0000, #ff7300, #fffb00, 
        #48ff00, #00ffd5, #002bff, 
        #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(8px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
}

/* Glow beim Hover */
.glow-on-hover:hover:before {
    opacity: 1;
}

/* Glow Animation */
@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}