/* Instagram Bio Generator CSS */
.generator-panel {
    background: var(--bg2, rgba(255, 255, 255, 0.03));
    border: 1px solid var(--border, rgba(255, 255, 255, 0.1));
    border-radius: 20px;
    padding: 30px;
    max-width: 800px;
    margin: 30px auto;
    text-align: left;
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .input-grid {
        grid-template-columns: 1fr;
    }
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--muted, #a0aab2);
    font-weight: 500;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border, rgba(255, 255, 255, 0.1));
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
}

.input-group input:focus, .input-group select:focus {
    outline: none;
    border-color: var(--accent, #1D7C6E);
    box-shadow: 0 0 0 3px rgba(29, 124, 110, 0.2);
}

.generate-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent, #1D7C6E);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.generate-btn:hover {
    background: var(--accent-hover, #145F55);
    transform: translateY(-2px);
}

/* Bio Grid & Cards */
.bio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.bio-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.bio-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.ig-profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.ig-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 2px;
}

.ig-avatar-inner {
    width: 100%;
    height: 100%;
    background: #2c2c2c;
    border-radius: 50%;
    border: 2px solid #000;
}

.ig-stats {
    display: flex;
    gap: 15px;
    color: white;
    font-size: 13px;
    text-align: center;
}

.ig-stat strong {
    display: block;
    font-size: 15px;
}

.ig-name {
    font-weight: 700;
    color: white;
    font-size: 15px;
    margin-bottom: 2px;
}

.ig-category {
    color: #a0aab2;
    font-size: 13px;
    margin-bottom: 8px;
}

.ig-bio-text {
    color: white;
    font-size: 14px;
    line-height: 1.5;
    white-space: pre-wrap;
    margin-bottom: 15px;
}

.ig-link {
    color: #e0f1ff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
}

.copy-bio-btn {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-bio-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.copy-bio-btn.copied {
    background: #55efc4;
    color: #000;
}
