@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

body { 
    font-family: 'Inter', system-ui, -apple-system, sans-serif; 
    background-color: #121926; /* Midnight Navy */
    color: #cbd5e1; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 100vh; 
    margin: 0; 
    text-align: center; 
}

.container { 
    background-color: #1a2234; /* Card Navy */
    padding: 50px 40px; 
    border-radius: 24px; 
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); 
    max-width: 480px; 
    width: 90%; 
    border: 1px solid #2d3748; 
}

.network-header { 
    font-family: 'Great Vibes', cursive;
    font-size: 2.2em; 
    color: #ffffff; 
    margin-bottom: 25px; 
    text-shadow: 0 0 10px rgba(66, 135, 245, 0.2);
}

.icon-wrapper { 
    margin-bottom: 25px; 
    opacity: 0.9;
}

h1 { 
    color: #ffffff; 
    margin-top: 0; 
    margin-bottom: 12px; 
    font-size: 2em; 
    font-weight: 700;
}

p { 
    font-size: 1.05em; 
    line-height: 1.6; 
    color: #94a3b8;
    margin-bottom: 25px; 
}

hr { 
    border: 0; 
    border-top: 1px solid #2d3748; 
    margin: 30px 0; 
}

form { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    margin-top: 20px; 
}

input[type="text"] { 
    padding: 14px 18px; 
    border-radius: 12px; 
    border: 1px solid #334155; 
    background-color: #121926; 
    color: #fff; 
    font-size: 1em; 
    transition: all 0.2s ease;
}

input[type="text"]:focus { 
    outline: none; 
    border-color: #4287f5; 
    box-shadow: 0 0 0 3px rgba(66, 135, 245, 0.15);
}

button { 
    background-color: #4287f5; /* Bright Blue Button */
    color: #ffffff; 
    border: none; 
    padding: 14px; 
    border-radius: 12px; 
    font-size: 1.1em; 
    font-weight: 700; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    box-shadow: 0 4px 6px -1px rgba(66, 135, 245, 0.2);
}

button:hover { 
    background-color: #2563eb; 
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(66, 135, 245, 0.4);
}

.success-msg { 
    color: #4287f5; 
    font-weight: 600; 
    background: rgba(66, 135, 245, 0.1);
    padding: 12px;
    border-radius: 10px;
}

.error-msg { 
    color: #ef4444; 
    font-weight: 600; 
}

.note { 
    font-size: 0.9em; 
    color: #64748b; 
    margin-top: 20px;
    line-height: 1.5; 
}

.request-link { 
    color: #4287f5; 
    text-decoration: none; 
    font-weight: 700; 
    cursor: pointer; 
    margin-left: 5px; 
}

.request-link:hover { 
    text-decoration: underline; 
}

#requestContainer { 
    display: none; 
    animation: fadeIn 0.4s ease;
}

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