@font-face {
    font-family: 'OpenSans';
    src: url('fonts/OpenSans-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'OpenSansBold';
    src: url('fonts/OpenSans-Bold.ttf') format('truetype');
}
body {
    font-family: 'OpenSans', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #f5f5f5;
    animation: fadeIn 1.5s ease-in-out;
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
header {
    background: linear-gradient(to bottom, #000000, #331a00);
    color: #fff;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 1000;
    animation: slideDown 1s ease-in-out;
}
@keyframes slideDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(0); }
}
header h1 {
    margin: 0;
    font-family: 'OpenSansBold', sans-serif;
    font-size: 2.5em;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}
header p {
    margin: 5px 0;
    font-size: 1.2em;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
main {
    text-align: center;
    padding: 160px 20px 20px 20px; /* Increased padding-top to accommodate fixed header */
    flex: 1;
    animation: zoomIn 1s ease-in-out;
}
@keyframes zoomIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
main h2 {
    font-family: 'OpenSansBold', sans-serif;
    font-weight: normal;
    margin: 20px 0;
    font-size: 2em;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
p {
    position: relative;
    margin: 20px 0;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
p:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    margin-top: 10px;
}
footer {
    background: #1a1a1a;
    color: #fff;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    bottom: 0;
    animation: fadeIn 1.5s ease-in-out;
}
a {
    color: #ff6600;
    text-decoration: none;
    transition: color 0.3s;
}
a:hover {
    color: #e65c00;
    text-decoration: underline;
}
svg {
    overflow: visible;
    height: 100px; /* Adjusted height */
}
text {
    font-family: 'Orbitron', sans-serif;
    font-size: 60px;
    fill: none;
    stroke: #0ff;
    stroke-width: 2;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: dash 4s linear forwards, glow 2s ease-in-out infinite alternate;
}
@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}
@keyframes glow {
    from {
        stroke: #0ff;
    }
    to {
        stroke: #f0f;
    }
}
/* Login Form Styles */
.login-form {
    display: none;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}
.login-form input {
    padding: 10px;
    margin: 5px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #000;
    color: #fff;
    font-family: 'OpenSans', sans-serif;
}
.login-form input::placeholder {
    color: #777;
}
.login-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: #ff6600;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}
.login-button:hover {
    background: #e65c00;
}
.main-menu {
    display: flex;
    justify-content: center;
}

.main-menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.main-menu li {
    margin: 0 15px;
}

.main-menu a {
    text-decoration: none;
    color: #fff;
    font-family: 'OpenSans', sans-serif;
    font-size: 1.2em;
    transition: color 0.3s;
}

.main-menu a:hover {
    color: #ff6600;
}
