/* Vokal Prompt Generator - Akıllı + Basit */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(255, 107, 107, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(78, 205, 196, 0.3);
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(
299deg, #4ecdc4, #ff6b6b);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
}

.subtitle {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(78, 205, 196, 0.15);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #4ecdc4;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #4ecdc4;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Content */
.content {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Dropdown Section */
.dropdown-section {
    margin-bottom: 30px;
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(45deg, #4ecdc4, #44a3a0);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
}

.dropdown-header label {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4ecdc4;
}

.dropdown-header label {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4ecdc4;
}

.info-btn {
    background: rgba(78, 205, 196, 0.2);
    border: 1px solid #4ecdc4;
    color: #4ecdc4;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.info-btn:hover {
    background: #4ecdc4;
    color: #1a1a2e;
    transform: scale(1.1);
}

/* Info Box */
.info-box {
    display: none;
    margin-top: 10px;
    padding: 15px;
    background: rgba(78, 205, 196, 0.1);
    border-left: 3px solid #4ecdc4;
    border-radius: 5px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ddd;
}

/* Dropdown Select */
select {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234ecdc4' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

select:hover:not(:disabled) {
    border-color: #4ecdc4;
    background-color: rgba(78, 205, 196, 0.1);
}

select:focus {
    outline: none;
    border-color: #4ecdc4;
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.3);
}

select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: rgba(0, 0, 0, 0.2);
}

select option {
    background: #16213e;
    color: #fff;
    padding: 10px;
}

/* Generate Button */
.generate-btn {
    width: 100%;
    padding: 18px 60px;
    margin-top: 20px;
    background: linear-gradient(45deg, #4ecdc4, #44a3a0);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.generate-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.5);
}

.generate-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #555;
    box-shadow: none;
}

.generate-btn.active {
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3); }
    50% { box-shadow: 0 8px 25px rgba(78, 205, 196, 0.6); }
}

/* Output Section */
.output-section {
    margin-top: 40px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 2px solid rgba(78, 205, 196, 0.3);
}

.output-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    color: #4ecdc4;
    font-size: 1.3rem;
    font-weight: 700;
}

.copy-btn {
    padding: 10px 20px;
    background: linear-gradient(45deg, #f093fb, #f5576c);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 147, 251, 0.4);
}

#output {
    width: 100%;
    min-height: 120px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    resize: vertical;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Usage Guide */
.usage-guide {
    margin-top: 20px;
    padding: 20px;
    background: rgba(78, 205, 196, 0.05);
    border-radius: 8px;
    border-left: 3px solid #4ecdc4;
}

.usage-guide strong {
    color: #4ecdc4;
    display: block;
    margin-bottom: 10px;
}

.usage-guide ol {
    margin-left: 20px;
    color: #ddd;
}

.usage-guide li {
    margin: 8px 0;
    line-height: 1.6;
}

/* Tech Details */
.tech-details {
    margin-top: 15px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border-left: 3px solid #4ecdc4;
}

.tech-row {
    display: flex;
    margin: 8px 0;
    line-height: 1.6;
}

.tech-label {
    color: #4ecdc4;
    font-weight: 600;
    min-width: 140px;
}

.toggle-tech {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 6px;
    color: #4ecdc4;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.toggle-tech:hover {
    background: rgba(78, 205, 196, 0.2);
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    color: #aaa;
    font-size: 0.9rem;
}

.footer-note {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .content {
        padding: 25px;
    }
    
    .generate-btn {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
}
