/* General styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Cinzel', serif;
    color: #fff;
    background: url("../img/timelock_studio.jpg") no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container styles */
.container {
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Header styles */
header h1 {
    font-size: 3.5rem;
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 5px;
    animation: glow 2.5s infinite;
}

header p {
    font-size: 2.5rem;
}

/* Glow animation */
@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px #ffd700, 0 0 20px #ffd700, 0 0 30px #ffd700, 0 0 40px #ffd700, 0 0 50px #ffd700;
    }
    50% {
        text-shadow: 0 0 20px #ffd700, 0 0 40px #ffd700, 0 0 60px #ffd700, 0 0 80px #ffd700, 0 0 100px #ffd700;
    }
}

/* Button styles */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background: #0066cc;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #005bb5;
}
