/* Game Logo */
.game-logo {
    width: 100px;
    height: 100px;
    opacity: 33;
    border-radius: 50px;
}

/* Title Styling */
.NFTitle {
    font-size: 90px;
    color: #870000;
    text-shadow: 0px 0px 50px white;
    border-radius: 60px;
}

.NverFerBG {
    background-image: url('../api/NeverFearIcon.png');
    opacity: 20;
    background-color: rgba(1, 1, 1, 0);
    background-size: auto;
    border-radius: 50px;
}

/* Running Character Animation */
.animation-container {
    position: relative;
    width: 100%;
    height: 150px; /* Increased space for animation */
    overflow: visible; /* Ensures the sprite isn't cut off */
}

/* Character Sprite */
.sprite {
    position: absolute;
    bottom: 0;
    width: 36px; /* 144px / 4 */
    height: 72px; /* 288px / 4 */
    background: url('../api/Cyborg_run.png') no-repeat 0 0;
    background-size: 432px 72px; /* 1728px / 4, 288px / 4 */
    animation: run 0.6s steps(6) infinite, move-right 3s linear infinite;
}

@keyframes run {
    100% {
        background-position: -432px 0;
    }
}

@keyframes move-right {
    100% {
        transform: translateX(300px);
    }
}

/* Cyberpunk Button Styling */
.glow-button {
    background: linear-gradient(45deg, #ff0000, #ff7300);
    border: none;
    font-size: 20px;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 20px #ff0000;
    text-transform: uppercase;
    display: inline;
    padding: 2px 2px;
}

.glow-button:hover {
    background: linear-gradient(45deg, #ff7300, #ff0000);
    box-shadow: 0 0 20px #ff7300;
    transform: scale(1.1);
}

/* Smaller buttons */
.glow-button.small {
    font-size: 16px;
    padding: 10px 20px;
    box-shadow: 0 0 8px #ff0000;
}
