/* ============================================
   ADDITIONAL STYLES FOR WORDFINDER THEME
   ============================================ */

/* Word Finder Hero */
.wordfinder-hero {
    text-align: center;
    margin-bottom: 40px;
}

/* Word Finder Hero */
.wordfinder-hero {
    text-align: center;
    margin-bottom: 40px;
}

/* H1 styles removed to favor style.css 3D tiles */

/* Input Enhancements */
.label-icon {
    margin-right: 8px;
    font-size: 18px;
}

.input-hint {
    display: block;
    margin-top: 5px;
    color: #7f8c8d;
    font-size: 12px;
    font-style: italic;
}

.letters-input {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Form Actions */
.form-actions {
    margin-top: 30px;
}

/* Quick Test Section */
.quick-test-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.quick-test-label {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 15px;
    font-weight: 500;
}

/* Loading Indicator */
.loading-detail {
    color: #7f8c8d;
    font-size: 14px;
    margin-top: 10px;
}

/* Results Enhancements */
.results-count {
    font-size: 28px;
    color: #2c3e50;
}

.results-stats {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 5px;
}

/* Word Card Enhancements */
.word-rank {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.word-scrabble-score {
    font-size: 11px;
    color: #95a5a6;
    margin-top: 5px;
    text-align: center;
}

/* Section Styles */
.section-title {
    text-align: center;
    color: #2c3e50;
    margin: 60px 0 40px;
    font-size: 32px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #667eea, #764ba2);
    margin: 15px auto;
    border-radius: 2px;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tip {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.tip h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 18px;
}

.tip p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Animation for word cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.word-card {
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.word-card:nth-child(1) {
    animation-delay: 0.1s;
}

.word-card:nth-child(2) {
    animation-delay: 0.2s;
}

.word-card:nth-child(3) {
    animation-delay: 0.3s;
}

.word-card:nth-child(4) {
    animation-delay: 0.4s;
}

.word-card:nth-child(5) {
    animation-delay: 0.5s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wordfinder-hero h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 24px;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }
}

/* Print styles */
@media print {

    .site-header,
    .site-footer,
    .btn,
    .quick-test-section,
    .features-section,
    .tips-section {
        display: none;
    }

    .wordfinder-form {
        display: none;
    }

    .word-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .results-grid {
        display: block;
    }
}