* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    background: #2a5298;
    color: #fff;
}

.container {
    width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

header {
    padding: 20px 0;
    text-align: center;
    background: rgba(0, 20, 60, 0.8);
    border-bottom: 2px solid #00b4ff;
    position: relative;
}

header h1 {
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #00b4ff;
    animation: glow 2s infinite alternate;
}

header p {
    font-size: 18px;
    margin-top: 10px;
    color: #b3e5fc;
}

nav {
    margin: 20px 0;
    text-align: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 20px;
    font-size: 20px;
    padding: 10px 20px;
    background: rgba(0, 180, 255, 0.2);
    border-radius: 25px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: #00b4ff;
    box-shadow: 0 0 15px #00b4ff;
}

footer {
    text-align: center;
    padding: 20px 0;
    background: rgba(0, 20, 60, 0.8);
    margin-top: 40px;
    font-size: 14px;
    color: #b3e5fc;
}