/* General Reset and Custom Properties */
:root {
    --primary: #005a9c;
    --primary-light: #007bb5;
    --primary-dark: #003a6c;
    --secondary: #00a8cc;
    --accent: #48cae4;
    --bg-color: #f4f9f9;
    --text-main: #2b2d42;
    --text-muted: #6c757d;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 75px;
    height: 75px;
}

.logo-text h1 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Section / Search Focus */
.hero-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotateBg 60s linear infinite;
    z-index: 1;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Search Box element */
.search-box {
    display: flex;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 8px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
    transition: var(--transition);
    position: relative;
}

.search-box:focus-within {
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transform: translateY(-2px);
    background: var(--white);
}

.search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.search-icon {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-right: 15px;
}

.search-input-wrapper input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    font-family: inherit;
    color: var(--text-main);
    outline: none;
}

.clear-search {
    background: none;
    border: none;
    color: #ccc;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    padding: 5px;
}

.search-input-wrapper input:valid ~ .clear-search {
    display: block;
}

.clear-search:hover {
    color: var(--text-muted);
}

.search-button {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 40px;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.search-button:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 10px rgba(0,90,156,0.3);
}

.search-suggestions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.suggestion-tag {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.suggestion-tag:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Main Content Area */
.main-content {
    min-height: 50vh;
    padding: 60px 20px;
}

.content-state {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.content-state.active {
    display: block;
}

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

/* Welcome State */
.welcome-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 30px;
    margin-top: 20px;
}

.welcome-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.welcome-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-bottom: 4px solid var(--primary);
}

.card-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.welcome-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--primary-dark);
}

.welcome-card p {
    color: var(--text-muted);
}

/* Search Results Layout */
.results-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.results-header h3 {
    font-weight: 500;
    color: var(--text-main);
}

#query-term {
    font-weight: 700;
    color: var(--primary);
}

.results-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

/* Filters Sidebar */
.results-filters {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    height: fit-content;
    box-shadow: var(--shadow-sm);
}

.results-filters h4 {
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.mt-4 {
    margin-top: 30px;
}

.filter-list li {
    margin-bottom: 10px;
}

.filter-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.filter-option input[type="checkbox"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}

.filter-label {
    flex: 1;
    color: var(--text-main);
    font-size: 0.95rem;
}

.filter-count {
    background: var(--bg-color);
    color: var(--text-muted);
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
}

/* Results Display */
.result-category-section {
    margin-bottom: 50px;
}

.category-header {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-header i {
    color: var(--secondary);
}

.result-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.result-item {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 20px 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    border: 1px solid #edf2f7;
    transition: var(--transition);
}

.result-item:hover {
    box-shadow: var(--shadow-md);
    border-color: #cbd5e0;
    transform: translateX(5px);
}

.result-title {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

a.result-title {
    transition: var(--transition);
}

a.result-title:hover {
    text-decoration: underline;
    opacity: 0.8;
}

span.result-title {
    cursor: default;
}

.result-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.result-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-link-action {
    color: var(--secondary) !important;
    font-weight: 600;
    transition: var(--transition);
}

.meta-link-action:hover {
    color: var(--primary) !important;
    text-decoration: underline;
}

.result-desc {
    font-size: 0.95rem;
    color: var(--text-main);
}

.highlight {
    background-color: rgba(255, 235, 59, 0.4);
    font-weight: 600;
    padding: 0 2px;
    border-radius: 2px;
}

/* Footer structure */
.main-footer {
    background-color: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-info h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.footer-membros h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: center;
}

.membros-logos {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
    overflow-x: auto;
    padding-bottom: 10px;
}

.membros-logos::-webkit-scrollbar {
    height: 4px;
}

.membros-logos::-webkit-scrollbar-thumb {
    background-color: rgba(255,255,255,0.3);
    border-radius: 4px;
}

.logo-membro-img {
    height: 50px;
    max-width: 120px;
    object-fit: contain;
    background-color: var(--white);
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
    flex-shrink: 0;
}

.logo-membro-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

.footer-bottom {
    background-color: rgba(0,0,0,0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .results-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1050px) {
    .nav-list {
        display: none; /* hide list initially for tablet/mobile */
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .logo-icon {
        width: 55px;
        height: 55px;
    }

    .logo-text h1 {
        font-size: 1rem;
    }

    .logo-text span {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }
    
    .search-box {
        flex-direction: column;
        border-radius: 20px;
        background: var(--white);
    }
    
    .search-button {
        width: 100%;
        margin-top: 10px;
    }
}
/* Members Page Styles */
.page-intro {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 30px;
}

.member-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-logo-container {
    height: 180px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    border-bottom: 1px solid #f0f0f0;
}

.member-card-logo {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.member-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.member-card-content h3 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.member-card-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
    flex: 1;
}

.member-link-btn {
    align-self: flex-start;
    padding: 10px 20px;
    background-color: var(--bg-color);
    color: var(--primary);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid var(--primary-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.member-link-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 8px rgba(0,90,156,0.2);
}

@media (max-width: 768px) {
    .members-grid {
        grid-template-columns: 1fr;
    }
}

/* Stats Dashboard Styles */
.stats-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.stats-overview-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(0,0,0,0.02);
}

.stats-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stats-data {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.stats-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
}

.stats-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stats-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    /* Critical: grid items must be able to shrink below their content minimum */
    overflow: hidden;
}

/* Grid children need min-width:0 to allow shrinking below content size */
.stats-tables,
.stats-charts {
    min-width: 0;
    overflow: hidden;
}

.stats-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
}

.stats-card h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Styled Table */
.styled-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.styled-table thead tr {
    background-color: var(--primary);
    color: #ffffff;
    text-align: left;
}

.styled-table th, .styled-table td {
    padding: 12px 15px;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid var(--primary);
}

.badge-total {
    background: var(--primary-light);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.table-responsive {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
}

.cloud-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cloud-btn {
    padding: 8px 16px;
    background: #f0f4f8;
    color: var(--primary);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid transparent;
}

.cloud-btn:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Events Page Styles */
.events-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.event-type-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.event-type-header {
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.event-type-header.silusba { background: linear-gradient(135deg, #005a9c 0%, #007bb5 100%); }
.event-type-header.silubesa { background: linear-gradient(135deg, #00a8cc 0%, #48cae4 100%); }
.event-type-header.especial { background: linear-gradient(135deg, #003a6c 0%, #005a9c 100%); }

.event-type-header i { font-size: 1.5rem; margin-bottom: 5px; }
.event-type-header h3 { font-size: 1.3rem; margin: 0; font-weight: 700; }
.event-type-header span { font-size: 0.8rem; opacity: 0.9; line-height: 1.2; }

.event-list-scroll {
    max-height: 450px;
    overflow-y: auto;
    padding: 10px;
}

.event-entry {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
}

.event-entry:hover { background: #fafafa; }
.event-entry:last-child { border-bottom: none; }

.event-year {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.85rem;
    min-width: 70px;
    padding-top: 2px;
}

.event-info h4 {
    font-size: 0.95rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.event-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.event-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.event-links a {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: #f0f4f8;
    color: var(--primary);
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.event-links a:hover {
    background: var(--primary);
    color: white;
}

.event-links a.book-link {
    background: #e1f5fe;
    color: #01579b;
}

.event-links a.book-link:hover {
    background: #01579b;
    color: white;
}

@media (max-width: 1000px) {
    .stats-detail-layout {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   MOBILE RESPONSIVENESS (max-width: 640px)
   ============================================= */

/* Chart.js canvas: prevent overflow */
canvas {
    max-width: 100% !important;
}

@media (max-width: 640px) {
    /* Page title */
    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* Header: compress logo area */
    .header-container {
        height: 70px;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
    }

    .logo-text h1 {
        font-size: 0.85rem;
    }

    .logo-text span {
        font-size: 0.72rem;
    }

    .logo-area {
        gap: 8px;
    }

    /* Footer: single column */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 20px;
    }

    .main-footer {
        padding-top: 30px;
    }

    /* Stats overview cards — 2 per row on mobile */
    .stats-overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 20px;
    }

    .stats-overview-card {
        padding: 12px;
        gap: 8px;
    }

    .stats-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .stats-value {
        font-size: 1.2rem;
    }

    .stats-label {
        font-size: 0.72rem;
    }

    /* Detail layout: single column */
    .stats-detail-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Cards: reduce padding, prevent overflow */
    .stats-card {
        padding: 15px;
        min-width: 0;
        overflow: hidden;
    }

    .stats-card h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    /* Table: compact, scrolls horizontally inside .table-responsive */
    .styled-table th, .styled-table td {
        padding: 7px 8px;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    /* Word cloud controls: stack vertically */
    .cloud-controls {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
    }

    .control-group {
        width: 100%;
    }

    .control-group input,
    .control-group select {
        width: 100%;
        font-size: 1rem; /* prevents iOS zoom on focus */
    }

    .btn-primary-sm {
        width: 100%;
        text-align: center;
    }

    /* Word cloud display */
    .word-cloud-display {
        min-height: 160px;
        padding: 12px;
    }

    /* Main content padding */
    .main-content {
        padding: 25px 12px;
    }

    /* Result items: reduce padding and disable translateX effect */
    .result-item {
        padding: 15px;
    }

    .result-item:hover {
        transform: none;
    }

    .result-meta {
        flex-wrap: wrap;
        gap: 8px;
    }

    /* Search results: single column */
    .results-layout {
        grid-template-columns: 1fr;
    }

    /* Container padding on mobile */
    .container {
        padding: 0 12px;
    }
}

/* Word Cloud Generator Styles */
.cloud-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.control-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.control-group input, .control-group select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    outline: none;
}

.btn-primary-sm {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary-sm:hover {
    background: var(--primary-dark);
}

.word-cloud-display {
    min-height: 250px;
    background: white;
    border: 1px dashed #ccc;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.cloud-placeholder {
    color: #999;
    font-style: italic;
    text-align: center;
    width: 100%;
}

.cloud-word {
    cursor: default;
    transition: var(--transition);
    padding: 2px 5px;
    border-radius: 4px;
    line-height: 1;
}

.cloud-word:hover {
    background: rgba(0, 90, 156, 0.1);
    transform: scale(1.1);
}
