:root {
    --primary: #6366f1; /* Modern Indigo */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --bg-dark: #020617;
    --bg-dark2:#373E48;
    --bg-blue1:#005CE5;
    --bg-brown:#B38C5F;
    --bg-amber:#FFBF00;
    --bg-white:#FFFFFF;
    --text-white:#EEF6F9;
    --text-gray:#E2E8F0;


    --glass: rgba(30, 41, 59, 0.7);
}

* { box-sizing: border-box; }

.unselectable {
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark2);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    line-height: 1.6;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Subtle Animated Glow */
.background-glow {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.container {
    max-width: 600px;
    width: 90%;
    padding: 3rem;
    background: var(--bg-blue1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    text-align: center;
}

/* Header & Logo */
.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
    margin-bottom: 2rem;
    color: var(--text-gray);
    font-family: "Public Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    word-spacing: 0.4rem;
    letter-spacing: 0.1rem;
}

/* Hero & Bio */
h1 { font-size: 2.25rem; font-weight: 800; margin-bottom: 1.5rem; letter-spacing: -0.02em; font-family: "Public Sans", sans-serif;
  font-optical-sizing: auto; font-style: normal;}
.bio { color: var(--text-white); font-size: 1.1rem; margin-bottom: 2.5rem; font-family: "Mako", sans-serif; font-optical-sizing: auto; font-weight: 400; font-style: normal;}
.hr {
    height: 1px;
    color: #E7E5E4;
    background: #E7E5E4;
    font-size: 0;
    border: 0;
}

/* Form */
.notify-form {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.2);
    color: white;
    font-size: 1rem;
    transition: 0.3s;
}

input:focus { outline: 2px solid var(--primary); border-color: transparent; }

button {
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    border: none;
    background: var(--primary);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

button:hover { transform: translateY(-2px); background: #4f46e5; }

/* Contact Section Styling */
.contact-section {
    margin-top: 4rem;
    text-align: left; /* Better for readability in forms */
    animation: fadeIn 0.8s ease-out;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

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

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

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 4px;
}

input, select, textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.4);
    color: var(--text-main);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

textarea { resize: vertical; }

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(30, 41, 59, 0.6);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    background: var(--bg-white);
    color: #005CE5;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    color: var(--bg-blue1);
    background: var(--bg-amber);
}

/* Responsive fix for the form rows */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
}

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

/* Footer */
footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.social-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 1rem; }
.social-links a { color: var(--text-muted); text-decoration: none; font-size: 0.7rem; transition: 0.3s; }
.social-links a:hover { color: var(--text-white); }
.copyright { font-size: 0.6rem; color: #FFFFFF; }

/* Mobile Responsive */
@media (max-width: 480px) {
    .notify-form { flex-direction: column; }
    h1 { font-size: 1.75rem; }
}