/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    background: #05070d;
    color: white;
    height: 100vh;
    overflow: hidden;
}

/* Background video */
#bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Dark overlay */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 25, 0.75);
    z-index: -1;
}

/* Center content */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* Fish styling */
.fish {
    width: 200px;
    animation: spin 4s linear infinite;
}

/* Spin animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Text */
h1 {
    margin-top: 20px;
    font-size: 2rem;
    color: #cce0ff;
    text-shadow: 0 0 10px rgba(0, 100, 255, 0.6);
}