/* Simple Bio Generator Styles */
.simple-bio-container {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Header */
.bio-header {
    text-align: center;
    margin-bottom: 30px;
}
.bio-header h2 {
    color: #2d3748;
    font-size: 32px;
    margin: 0 0 10px 0;
}
.bio-header p {
    color: #718096;
    margin: 0;
    font-size: 16px;
}

/* Type Selector */
.type-selector {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    justify-content: center;
}
.type-btn {
    padding: 12px 25px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
}
.type-btn:hover {
    border-color: #4299e1;
    color: #4299e1;
}
.type-btn.active {
    background: #4299e1;
    border-color: #4299e1;
    color: white;
}

/* Input Area */
.input-area {
    margin-bottom: 25px;
}
.input-area textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.6;
    min-height: 150px;
    resize: vertical;
    box-sizing: border-box;
}
.input-area textarea:focus {
    outline: none;
    border-color: #4299e1;
}
.char-count {
    text-align: right;
    color: #718096;
    font-size: 14px;
    margin-top: 8px;
}

/* Generate Button */
.generate-area {
    text-align: center;
    margin-bottom: 30px;
}
.generate-btn {
    padding: 16px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}
.generate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Loading */
.loading-area {
    text-align: center;
    padding: 40px;
}
.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid #4299e1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}
.loading-area p {
    color: #718096;
    font-size: 16px;
    margin: 0;
}

/* Results Area */
.results-area {
    animation: fadeIn 0.5s ease;
}
.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.result-header h3 {
    margin: 0;
    color: #2d3748;
    font-size: 24px;
}
.copy-all-btn {
    padding: 10px 20px;
    background: #38a169;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* Bio Output */
.bio-output {
    background: #f8fafc;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid #e2e8f0;
}
.bio-output pre {
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: 'Courier New', monospace;
    font-size: 15px;
    line-height: 1.6;
    color: #2d3748;
}

/* Hashtags */
.hashtags-section {
    background: #f0f9ff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #bae6fd;
}
.hashtags-section h4 {
    margin: 0 0 15px 0;
    color: #0369a1;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hashtags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    min-height: 40px;
}
.hashtag-item {
    background: #3b82f6;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}
.copy-hashtags-btn {
    padding: 10px 20px;
    background: #0ea5e9;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* Social Sharing */
.social-sharing {
    background: #fef3c7;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #fbbf24;
}
.social-sharing h4 {
    margin: 0 0 15px 0;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 10px;
}
.share-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}
.share-btn {
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    color: white;
}
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.facebook { background: #1877f2; }
.share-btn.whatsapp { background: #25d366; }

/* Stats */
.bio-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 25px 0;
    flex-wrap: wrap;
}
.stat {
    background: white;
    padding: 15px 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e2e8f0;
    min-width: 120px;
}
.stat span:first-child {
    font-size: 20px;
    display: block;
    margin-bottom: 8px;
}
.stat span:last-child {
    font-size: 24px;
    font-weight: 700;
    color: #4299e1;
    display: block;
}

/* New Bio Button */
.new-bio-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: #ed8936;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}

/* Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .simple-bio-container {
        padding: 20px;
        margin: 20px;
    }
    .type-selector {
        flex-direction: column;
    }
    .share-buttons {
        grid-template-columns: 1fr;
    }
    .bio-stats {
        gap: 15px;
    }
    .stat {
        min-width: 100px;
    }
}