/* Slang Page Specific Styles */

.slang-header {
    background: linear-gradient(135deg, #FFA500, #FF6347);
    padding: 60px 0 80px;
    color: var(--white);
}

.slang-header .page-title,
.slang-header .page-subtitle {
    color: var(--white);
}

.slang-search-box {
    max-width: 600px;
    margin: 32px auto 0;
    display: flex;
    gap: 12px;
    background: var(--white);
    padding: 8px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
}

.slang-search-input {
    flex: 1;
    padding: 12px 24px;
    border: none;
    font-size: 16px;
    border-radius: 50px;
    outline: none;
}

.slang-search-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slang-search-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Quick Phrases */
.quick-phrases-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.phrases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.phrase-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.phrase-card.highlight {
    border: 3px solid #FFA500;
}

.phrase-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.phrase-word {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.phrase-meaning {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.phrase-usage {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Alphabet Filter */
.alphabet-filter-section {
    padding: 32px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 73px;
    z-index: 100;
}

.alphabet-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.alphabet-btn {
    min-width: 44px;
    height: 44px;
    border: 2px solid var(--border-color);
    background: var(--white);
    color: var(--text-dark);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.alphabet-btn:hover,
.alphabet-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Slang Dictionary */
.slang-dictionary-section {
    padding: 60px 0;
}

.slang-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.slang-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.slang-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.slang-word {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.slang-pronunciation {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 12px;
}

.slang-meaning {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.slang-example {
    background: var(--bg-light);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.slang-example strong {
    color: var(--text-dark);
    font-weight: 600;
}

.slang-category {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 12px;
    background: #FFA500;
    color: var(--white);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Empty State */
.slang-empty-state {
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: var(--text-light);
}

/* Cultural Tips */
.cultural-tips-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.tips-cultural-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.cultural-tip-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.tip-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.cultural-tip-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.cultural-tip-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Fun Fact */
.fun-fact-section {
    padding: 60px 0;
}

.fun-fact-box {
    background: linear-gradient(135deg, #FFA500, #FF6347);
    padding: 40px;
    border-radius: 12px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.fun-fact-box h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--white);
}

.fun-fact-box p {
    font-size: 16px;
    line-height: 1.8;
}

.fun-fact-box strong {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .slang-grid {
        grid-template-columns: 1fr;
    }
    
    .alphabet-filter {
        gap: 6px;
    }
    
    .alphabet-btn {
        min-width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    .phrases-grid,
    .tips-cultural-grid {
        grid-template-columns: 1fr;
    }
}