/* Global Styling */
body {
    background: url('https://t4.ftcdn.net/jpg/07/79/18/25/240_F_779182567_fUReRQ5vwWeSO4TE3fyy7sElO84PiOfB.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Garamond', serif;
    margin: 0;
    padding: 0;
    color: #dcdcdc; /* Light gray for better visibility */
}

header {
    text-align: center;
    margin-top: 100px;
    color: #ffffff; /* Bright white to stand out */
    font-size: 3em;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 0 15px #aaffff, 0 0 25px #aaffff, 0 0 40px #ff6347; /* Glowing effect */
}

h1 {
    margin-top: 50px;
    font-family: 'Cinzel', serif;
}

/* Navigation Bar */
.nav {
    display: flex;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.6);
}

.nav a {
    color: #aaffff; /* Light cyan for visibility */
    font-size: 1.5em;
    text-decoration: none;
    padding: 15px;
    margin: 0 20px;
    border: 2px solid #aaffff;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.nav a:hover {
    background-color: #ff6347; /* Red for hover */
    color: #ffffff;
    text-shadow: 0 0 10px #ff6347;
}

/* Ghost Styling */
.ghost {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    opacity: 0.8; /* Higher opacity for better visibility */
    animation: float 12s infinite ease-in-out;
}

.ghost:before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 30px;
    height: 20px;
    background-color: white;
    border-radius: 10px 10px 0 0;
    transform: translateX(-50%);
}

.ghost:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    transform: translateX(-50%);
}

@keyframes float {
    0% {
        transform: translateX(100vw) translateY(-100vh);
    }
    50% {
        transform: translateX(50vw) translateY(50vh);
    }
    100% {
        transform: translateX(-100vw) translateY(-100vh);
    }
}

/* Message Box */
.message-box {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #aaffff; /* Light cyan */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px #ff6347;
    font-size: 1.5em;
    text-align: center;
    text-shadow: 0 0 10px #aaffff, 0 0 20px #ff6347;
}

.message-box h2 {
    font-size: 2.5em;
    text-shadow: 0 0 20px #aaffff, 0 0 30px #ff6347;
}

/* Buttons */
button {
    background-color: #aaffff; /* Light cyan */
    color: #000; /* Black text for contrast */
    padding: 15px 30px;
    font-size: 1.5em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

button:hover {
    background-color: #ff6347;
    color: #000000;
    text-shadow: 0 0 10px #ff6347;
}

/* Section Styling */
.section {
    padding: 50px;
    color: #f70808; /* White text for better readability */
    text-align: center;
}

.section h2 {
    font-size: 3em;
    color: #aaffff; /* Light cyan for contrast */
    text-shadow: 0 0 20px #aaffff, 0 0 30px #ff6347;
}

.section p {
    font-size: 1.2em;
    line-height: 1.5;
    color: #dcdcdc; /* Light gray for readable text */
}

a {
    color: #aaffff; /* Light cyan */
    text-decoration: none;
    font-weight: bold;
}
