/* Base styles and reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #050505;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

.hidden {
    display: none;
}

.container {
    max-width: 800px;
    width: 100%;
}

.logo {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
    /* Subtle neon drop shadow matching the logo's pink outline */
    /* box-shadow: 0 0 15px rgba(255, 0, 255, 0.4); */
}

h1 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
    text-transform: uppercase;
}

.contact-methods {
    margin-bottom: 3rem;
}

/* Neon Button Styling */
.neon-button {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cyan-glow {
    border: 2px solid #00ffff;
    box-shadow: inset 0 0 10px #00ffff, 0 0 10px #00ffff;
    text-shadow: 0 0 5px #00ffff;
}

.cyan-glow:hover {
    background-color: #00ffff;
    color: #000;
    box-shadow: inset 0 0 20px #00ffff, 0 0 30px #00ffff;
}

.pink-glow {
    border: 2px solid #ff00ff;
    box-shadow: inset 0 0 10px #ff00ff, 0 0 10px #ff00ff;
    text-shadow: 0 0 5px #ff00ff;
    width: 100%;
    margin-top: 1rem;
}

.pink-glow:hover {
    background-color: #ff00ff;
    color: #000;
    box-shadow: inset 0 0 20px #ff00ff, 0 0 30px #ff00ff;
}

/* Form Styling */
.form-container {
    background: rgba(20, 20, 20, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.input-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #111;
    border: 1px solid #444;
    color: #fff;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Input focus states with neon cyan glow */
.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
}