* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global link reset - remove all underlines */
a {
    text-decoration: none !important;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background: #000;
}

.header-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(45deg, #004444 0%, #004444 70%, #003300 100%);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 2rem;
}

/* Remove all link styling for header */
a.header-link,
.header-link,
.header-content a,
.header-bar a {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    color: white !important;
    display: inline-block;
    transition: opacity 0.3s ease;
    border: none !important;
    border-bottom: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

a.header-link:link,
a.header-link:visited,
a.header-link:hover,
a.header-link:active,
a.header-link:focus,
.header-link:link,
.header-link:visited,
.header-link:hover,
.header-link:active,
.header-link:focus,
.header-content a:link,
.header-content a:visited,
.header-content a:hover,
.header-content a:active,
.header-content a:focus {
    text-decoration: none !important;
    text-decoration-line: none !important;
    color: white !important;
    outline: none !important;
    border: none !important;
    border-bottom: none !important;
}

.header-link:hover {
    opacity: 0.8;
}

.header-title {
    color: white !important;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none !important;
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: calc(1vh + 60px) 2rem 5vh 2rem;
    position: relative;
    margin: 0;
}

.hero-content {
    text-align: center;
    max-width: 600px;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    margin-top: 3vh;
}

.logo-container-fixed {
    position: static;
    text-align: center;
    padding: 0;
    background: transparent;
    margin: 0;
}

.logo-container-fixed .logo {
    width: 300px !important;
    max-width: 300px !important;
    height: auto;
    transition: transform 0.3s ease;
    border: none;
}

.logo-container {
    margin-top: -4cm;
    margin-bottom: 0.5rem;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo {
    max-width: 250px;
    height: auto;
    transition: transform 0.3s ease;
    border: none;
}

.logo:hover {
    transform: scale(1.05);
}

.hero-text {
    margin-bottom: 3rem;
    color: white;
}

.hero-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        -1px 0 0 #000,
        1px 0 0 #000,
        0 -1px 0 #000,
        0 1px 0 #000,
        0 0 10px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 1px;
}

.signup-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease-out 0.5s both;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group-row {
    display: flex;
    gap: 1rem;
}

.form-input-half {
    flex: 1;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-input:focus {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.submit-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    background: #004444;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 128, 128, 0.4);
    background: #004444;
}

.submit-btn:active:not(:disabled) {
    transform: translateY(-1px);
}

.submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

.btn-text {
    transition: opacity 0.3s ease;
}

.btn-loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.message.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.message.error {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.hidden {
    display: none;
}

.contact-link {
    margin-top: 1.5rem;
    text-align: center;
}

.contact-link p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.contact-link a {
    color: #40E0D0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link a:hover {
    color: #87CEEB;
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes textGlow {
    from {
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    to {
        text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Footer styles */
.footer {
    text-align: center;
    padding: 2rem 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: auto;
}

/* Remove responsive behavior - keep fixed sizes */

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-section {
        background-attachment: scroll;
    }
}

