<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Fake Name Generator Page Styles */
body {
    background: linear-gradient(to bottom right, rgba(26, 26, 26, 0.95) 0%, rgba(18, 18, 18, 0.95) 100%);
    color: #fafafa;
    min-height: 100vh;
}

.container-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.header-section {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 0;
    background: linear-gradient(to bottom right, rgba(26, 26, 26, 0.5), rgba(18, 18, 18, 0.5));
    border: 1px solid rgba(82, 82, 91, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(62, 207, 142, 0.5), transparent);
}

.form-section {
    background: linear-gradient(to bottom right, rgba(26, 26, 26, 0.5), rgba(18, 18, 18, 0.5));
    border: 1px solid rgba(82, 82, 91, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.form-section:hover {
    border-color: rgba(62, 207, 142, 0.3);
    box-shadow: 0 0 30px rgba(62, 207, 142, 0.1);
}

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

.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #b4b4b4;
    margin-bottom: 0.5rem;
}

.form-input, .form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(82, 82, 91, 0.5);
    border-radius: 0.5rem;
    color: #fafafa;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: #3ecf8e;
    box-shadow: 0 0 0 3px rgba(62, 207, 142, 0.1);
    background: rgba(26, 26, 26, 0.95);
}

.form-select option {
    background: #1a1a1a;
    color: #fafafa;
}

.generate-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3ecf8e 0%, #22c55e 100%);
    border: none;
    border-radius: 0.75rem;
    color: #121212;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.generate-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(62, 207, 142, 0.3);
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.generate-btn:active {
    transform: translateY(0);
}

.generate-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.result-section {
    display: none;
    background: linear-gradient(to bottom right, rgba(26, 26, 26, 0.5), rgba(18, 18, 18, 0.5));
    border: 1px solid rgba(82, 82, 91, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.result-section:hover {
    border-color: rgba(62, 207, 142, 0.3);
    box-shadow: 0 0 30px rgba(62, 207, 142, 0.1);
}

.identity-card {
    background: linear-gradient(to bottom right, rgba(26, 26, 26, 0.5), rgba(18, 18, 18, 0.5));
    border: 1px solid rgba(82, 82, 91, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.identity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(62, 207, 142, 0.5), transparent);
}

.identity-card:hover {
    transform: translateY(-2px);
    border-color: rgba(62, 207, 142, 0.3);
    box-shadow: 0 0 30px rgba(62, 207, 142, 0.1);
}

.identity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(71, 85, 105, 0.3);
}

.identity-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fafafa;
    margin: 0;
}

.identity-subtitle {
    font-size: 0.875rem;
    color: #b4b4b4;
    margin-top: 0.25rem;
}

.copy-identity-btn {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #3ecf8e 0%, #22c55e 100%);
    border: none;
    border-radius: 0.5rem;
    color: #121212;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-identity-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(62, 207, 142, 0.3);
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.data-section {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(82, 82, 91, 0.3);
    border-radius: 0.5rem;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.data-section:hover {
    border-color: rgba(62, 207, 142, 0.2);
    background: rgba(26, 26, 26, 0.8);
}

.data-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #3ecf8e;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(82, 82, 91, 0.2);
}

.data-row:last-child {
    border-bottom: none;
}

.data-label {
    font-size: 0.875rem;
    color: #b4b4b4;
    font-weight: 500;
}

.data-value {
    font-size: 0.875rem;
    color: #fafafa;
    font-weight: 500;
    text-align: right;
    word-break: break-word;
    max-width: 60%;
}

.notification-toast {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(20px);
    border: 1px solid;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 0.875rem;
    animation: slideIn 0.3s ease-out;
    max-width: 400px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.notification-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9) 0%, rgba(5, 150, 105, 0.9) 100%);
    border-color: rgba(16, 185, 129, 0.5);
    color: white;
}

.notification-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.9) 0%, rgba(220, 38, 38, 0.9) 100%);
    border-color: rgba(239, 68, 68, 0.5);
    color: white;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
    backdrop-filter: blur(5px);
}

.loading-spinner {
    width: 3rem;
    height: 3rem;
    border: 3px solid rgba(62, 207, 142, 0.3);
    border-top: 3px solid #3ecf8e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.text-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
    padding: 2rem;
}

.text-modal-content {
    background: linear-gradient(to bottom right, rgba(26, 26, 26, 0.95), rgba(18, 18, 18, 0.95));
    border: 1px solid rgba(82, 82, 91, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 2rem;
    width: 100%;
    max-width: 800px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.text-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(82, 82, 91, 0.3);
}

.text-modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fafafa;
}

.close-modal-btn {
    padding: 0.5rem;
    background: rgba(82, 82, 91, 0.3);
    border: none;
    border-radius: 0.5rem;
    color: #b4b4b4;
    cursor: pointer;
    transition: all 0.2s ease;
}

.close-modal-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.text-modal textarea {
    flex: 1;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(82, 82, 91, 0.5);
    border-radius: 0.5rem;
    color: #fafafa;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    padding: 1rem;
    resize: none;
    outline: none;
    min-height: 400px;
}

.text-modal textarea:focus {
    border-color: #3ecf8e;
    box-shadow: 0 0 0 3px rgba(62, 207, 142, 0.1);
}

.text-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(82, 82, 91, 0.3);
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

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

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

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

.country-flag {
    width: 1.25rem;
    height: auto;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .container-main {
        padding: 1rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .data-grid {
        grid-template-columns: 1fr;
    }
    
    .identity-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .data-value {
        max-width: 50%;
    }
}</pre></body></html>