/* body in script.css for home page is the main style, so we don't need to repeat some styles here */
body {
    font-family: 'Georgia', serif;
}

.app-title {
    color: #2c3e50;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.app-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    backdrop-filter: blur(10px);
}

.app-subtitle {
    color: #80d6dc;
    font-style: italic;
}

textarea {
    transition: border-color 0.3s ease;
}

textarea:focus {
    outline: none;
    border-color: #667eea;
}

.analyze-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.analyze-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.analyze-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.result {
    margin-top: 30px;
    padding: 30px;
    border-radius: 15px;
    display: none;
    animation: fadeIn 0.5s ease-in;
}

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

.drama-level {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.drama-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.drama-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.advice {
    font-style: italic;
    color: #555;
    background: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
}

/* Drama level specific styles */
.level-1 { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
.level-2 { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
.level-3 { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); }
.level-4 { background: linear-gradient(135deg, #ffa726 0%, #ff7043 100%); }
.level-5 { background: linear-gradient(135deg, #ff5722 0%, #e91e63 100%); }

.examples {
    margin-top: 30px;
    text-align: left;
}

.example {
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid #667eea;
}

.example-title {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.loading {
    display: none;
    color: #667eea;
    font-style: italic;
}

@media screen and (max-width: 480px) {
    .app-title {
        font-size: 1.7rem;
    }
}