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

body {
    font-family: 'Nebula Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

h1 {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: -1px;
    color: #f0f0f0;
    margin-bottom: 0.5rem;
    font-family: 'Monaspace Radon', monospace;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.tagline {
    font-size: 1.2rem;
    color: #9ca3af;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Monaspace Radon', monospace;
}

main {
    flex: 1;
}

.hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: rgba(30, 30, 45, 0.8);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-family: 'Monaspace Radon', monospace;
}

.hero p {
    font-size: 1.3rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

.content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.card {
    background: rgba(30, 30, 45, 0.8);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card h3 {
    font-size: 1.5rem;
    color: #f0f0f0;
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: 'Monaspace Radon', monospace;
}

.card p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-block;
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #93bbfc;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

footer {
    text-align: center;
    padding: 2rem 0;
    color: #9ca3af;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer img {
    transition: all 0.3s ease;
}

footer a:hover img {
    opacity: 1 !important;
    filter: brightness(1.4) !important;
}

/* Email Form Styles */
.email-form {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    font-family: 'Nebula Sans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: #6b7280;
}

.email-input:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
    background: rgba(0, 0, 0, 0.5);
}

.submit-btn {
    padding: 0.75rem 1.5rem;
    font-family: 'Nebula Sans', sans-serif;
    font-size: 1rem;
    background: #60a5fa;
    color: #0f0f0f;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.submit-btn:hover:not(:disabled) {
    background: #93bbfc;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(96, 165, 250, 0.3);
}

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

.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.form-message .success {
    color: #10b981;
}

.form-message .error {
    color: #ef4444;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .content {
        grid-template-columns: 1fr;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .email-input {
        min-width: 100%;
    }
}