body {
    margin: 0;
    overflow: hidden;
    background-color: #000;
}

canvas {
    display: block;
}

/* Add pulse animation for important messages */
@keyframes pulse {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
    100% { transform: translateX(-50%) scale(1); }
}

/* Add highlight glow effect for the reeling meter */
@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(76, 175, 80, 0.5); }
    50% { box-shadow: 0 0 15px rgba(76, 175, 80, 0.8); }
    100% { box-shadow: 0 0 5px rgba(76, 175, 80, 0.5); }
}

/* Add bobbing animation for fish info */
@keyframes bob {
    0% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
    100% { transform: translateY(0); }
}

/* Add blinking effect for important indicators */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Add shimmer effect for special messages */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Loading screen styles */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d3b66;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    transition: opacity 1s ease-out;
}

#loading-logo {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
    animation: bob 2s infinite ease-in-out;
}

#loading-bar-container {
    width: 300px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

#loading-bar {
    height: 100%;
    width: 0%;
    background-color: #4CAF50;
    border-radius: 10px;
    transition: width 0.3s ease-out;
}

#loading-text {
    color: white;
    font-family: Arial, sans-serif;
    margin-top: 15px;
    font-size: 18px;
}

/* Removed tension bar styles */