:root {
    --primary-color: #f1b735;
    --secondary-color: #2a2a2a;
    --background-color: #2a2a2a;
    --text-color: #FFFFFF;
    --accent-color: #e5a419;
    --success-color: #4CAF50;
    --warning-color: #FFC107;
    --danger-color: #FF5252;
}

body {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    /* text-transform: uppercase; */
}

.navbar {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.logo {
    width: auto;
    height: 60px;
    filter: drop-shadow(0 0 10px var(--secondary-color));
}

 h1 {
    /* font-family: 'Yanone Kaffeesatz', Arial, Helvetica, sans-serif; */
    font-family: 'Roboto', Arial, Helvetica, sans-serif !important;
    color: var(--primary-color) !important;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* text-shadow: 0 0 10px var(--primary-color); */
    text-transform: uppercase;
    }

 h2 {
    /* font-family: 'Yanone Kaffeesatz', Arial, Helvetica, sans-serif; */
    font-family: 'Roboto', Arial, Helvetica, sans-serif !important;
    color: var(--primary-color) !important;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
    font-size: 1.75rem;
    text-transform: uppercase;
}

label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.futuristic-button {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--accent-color);
    padding: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.futuristic-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    z-index: -1;
}

.futuristic-button:hover::before {
    left: 0;
}

.futuristic-button:hover {
    color: var(--background-color);
}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
}