/* Hint Section - Integrated with Playing Field */
.hint-section {
    background: white;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
    width: 100%;
}

.hint-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
    padding: 0;
}

.hint-content-wrapper {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 40px;
}

.hint-icon {
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

.hint-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #1f2937;
    font-weight: 700;
    text-align: left;
    flex: 1;
}

.hint-text:empty {
    display: none;
}

/* Next Headline Button */
.next-headline-btn, .give-up-btn {
    padding: 12px 20px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
    white-space: nowrap;
}

.next-headline-btn:hover, .give-up-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.4);
    background: #2563eb;
}

.next-headline-btn:active, .give-up-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
}

.hint-buttons {
    display: flex;
    gap: 12px;
}

.hint-buttons button {
    flex: 1;
}

/* Source link styling within hint text */
.hint-text a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.hint-text a:hover {
    border-bottom-color: #667eea;
    color: #5568d3;
}

/* OLD Headline Description Styling - Kept for backward compatibility */
.headline-description {
    margin: 24px auto;
    max-width: 600px;
    width: 100%;
    display: none; /* Hidden in new layout */
}

.description-text {
    background: #f0f9ff;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid #bfdbfe;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #1e40af;
    text-align: center;
    font-style: normal;
    font-weight: 500;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    padding-bottom: 32px;
}

.description-text:empty {
    display: none;
}

/* Tip header section with icon and label - horizontal layout */
.tip-header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Lightbulb icon - on the left */
.tip-icon {
    font-size: 1.5rem;
    line-height: 1;
}

/* Tip label section - "Tip:" and "[Source]" stacked vertically */
.tip-label-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    line-height: 1;
}

/* "Tip:" text */
.tip-label {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
}

/* Source name in brackets */
.tip-source {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.8;
    line-height: 1;
}

/* Tip content text */
.tip-content {
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
    flex: 1;
    position: relative;
}

/* Right-aligned source text */
.tip-source-right {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.8;
    line-height: 1;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateY(100%);
}
