:root {
    /* HSL Color System */
    /* Primary: Emerald Green (Islamic/Peaceful) */
    --primary-h: 150;
    --primary-s: 100%;
    --primary-l: 25%;
    --primary: hsl(var(--primary-h), var(--primary-s), var(--primary-l));
    --primary-light: hsl(var(--primary-h), var(--primary-s), 35%);
    --primary-dark: hsl(var(--primary-h), var(--primary-s), 15%);
    --primary-safe: #008040;
    /* Fallback */

    /* Secondary: Gold/Sand */
    --secondary: hsl(45, 100%, 50%);
    --secondary-light: hsl(45, 100%, 60%);

    /* Neutral */
    --surface-1: #f7f4f2;
    --surface-2: hsl(210, 20%, 96%);
    --surface-3: hsl(210, 20%, 92%);
    --text-1: hsl(210, 29%, 24%);
    --text-2: hsl(210, 25%, 40%);
    --text-inverse: hsl(0, 0%, 100%);

    /* Feedback */
    --danger: hsl(0, 84%, 60%);
    --success: hsl(150, 100%, 30%);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-s: 1rem;
    --space-m: 1.5rem;
    --space-l: 2rem;
    --space-xl: 3rem;

    /* Radius */
    --radius-m: 8px;
    --radius-l: 16px;
    --radius-full: 999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--surface-1);
    color: var(--text-1);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-m);
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-panel {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-l);
}

.glow-green {
    box-shadow: 0 0 30px rgba(0, 128, 64, 0.4), 0 0 10px var(--primary);
    border: 1px solid var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-inverse);
    box-shadow: 0 4px 12px rgba(0, 128, 64, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 16px rgba(0, 128, 64, 0.4);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(0, 128, 64, 0.04);
    color: var(--primary);
    border: 1px solid rgba(0, 128, 64, 0.15);
    box-shadow: none;
    font-weight: 500;
    --bs-btn-active-bg: rgba(0, 128, 64, 0.1);
}

.btn-secondary:hover {
    background: rgba(0, 128, 64, 0.08);
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 128, 64, 0.1);
    color: #75b798;
}

.btn-vote {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    transition: all 0.2s ease;
}

.btn-vote:hover:not(:disabled) {
    background: rgba(0, 128, 64, 0.3);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 128, 64, 0.3);
    transform: translateY(-1px);
}

.btn-vote:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: rgba(0, 128, 64, 0.1);
}


/* Home Page Styles */
.hero {
    padding: 2rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-1);
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 30%;
    /* background-color: rgba(0, 128, 64, 0.2); Removed as per request */
    z-index: -1;
    transform: skewX(-15deg);
}


.hero-logo {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.hero-logo:hover {
    animation: heartbeat 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(0, 128, 64, 0.2));
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.05);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.flying-doves {
    display: inline-block;
    vertical-align: middle;
    height: 1em;
    width: auto;
    margin-bottom: 5px;
    /* slight adjustment for visual alignment */
    filter: invert(1);
    mix-blend-mode: multiply;
    pointer-events: none;
    opacity: 0.3;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-through-container {
    animation: fadeThrough 0.4s ease-out forwards;
    width: 100%;
    /* Ensure it takes full width */
}

@keyframes fadeThrough {
    from {
        opacity: 0;
        transform: scale(0.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-2);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.section {
    padding: 4rem 0;
}

.about-panel {
    padding: 2rem;
    text-align: center;
}

.about-panel h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.about-panel>p {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-2);
}

.welcome-panel {
    padding: 0 2rem;
    text-align: center;
    box-shadow: none;
    border: none;
    background: transparent;
    /* Also removing background as usually linked to glass effect */
}

.welcome-panel h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.welcome-panel>p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: var(--text-2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

/* Knowledge Page Styles */
.mb-large {
    margin-bottom: 3rem;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-2);
    font-size: 1.1rem;
}

.articles-grid {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, var(--surface-1) 100%);
    border-radius: var(--radius-l);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px -4px rgba(0, 128, 64, 0.4), 0 0 15px rgba(0, 128, 64, 0.2);
    border-color: var(--primary);
}

.card-icon {
    color: var(--primary);
    background: var(--surface-2);
    padding: 10px;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    display: inline-flex;
}

.card-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-1);
}

.card-content {
    color: var(--text-2);
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Navbar Styles */
.navbar {
    background-color: var(--surface-1);
    border-bottom: 2px solid var(--secondary);
    /* Re-adding gold ribbon as requested or seen in screenshot */
    position: sticky;
    top: 40px;
    margin-top: 40px;
    z-index: 1000;
    padding: 0.1rem 0;
    min-height: 75px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.nav-clock {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    font-family: inherit;
    letter-spacing: 0.5px;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s, transform 0.2s;
    line-height: 1.1;
    margin-left: 0;
    /* Naturally positioned now */
    padding: 2px 0;
}

.nav-clock .clock-time {
    font-weight: 700;
    color: var(--secondary);
}

.nav-clock:hover {
    color: var(--secondary);
    transform: scale(1.05);
}

/* Calendar Modal Styles */
.calendar-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 2rem;
}

.calendar-modal-content {
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
    border-radius: var(--radius-l);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.calendar-header h2,
.calendar-header .year-toggle {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin: 0;
    font-family: var(--font-header);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.year-link {
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0.4;
    user-select: none;
}

.year-link.active {
    opacity: 1;
    color: var(--primary-dark);
    border-bottom: 3px solid var(--secondary);
}

.year-link:hover:not(.active) {
    opacity: 0.7;
    color: var(--primary);
}

.separator {
    opacity: 0.2;
    font-weight: 300;
}

.calendar-header .close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-2);
    cursor: pointer;
    transition: color 0.3s;
}

.calendar-header .close-btn:hover {
    color: var(--danger);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 2rem;
}

.month-card {
    padding: 1rem;
    background: white;
    border-radius: var(--radius-m);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.month-card.current-month {
    border: 1px solid var(--secondary);
    box-shadow: 0 0 15px rgba(200, 193, 179, 0.3);
}

.month-name {
    text-align: center;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-2);
    margin-bottom: 0.5rem;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.day-cell {
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
    border-radius: 4px;
    color: var(--text-1);
}

.day-cell.important {
    background: rgba(0, 128, 64, 0.1);
    /* var(--primary) with low alpha */
    color: var(--primary);
    font-weight: 700;
    border: 1px dashed var(--primary);
    cursor: help;
}

.day-cell.important:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 128, 64, 0.3);
    z-index: 2;
}

.day-cell.today {
    background: var(--secondary);
    color: white;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(200, 193, 179, 0.5);
    z-index: 1;
}

.day-cell.today.important {
    background: var(--secondary);
    border: 1px solid white;
}

.day-cell.empty {
    visibility: hidden;
}

@media (max-width: 900px) {
    .calendar-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 600px) {
    .calendar-modal-overlay {
        padding: 1rem;
    }

    .calendar-modal-content {
        padding: 1.5rem;
    }

    .calendar-header h2 {
        font-size: 1.8rem;
    }

    .calendar-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}


.navbar::before,
.navbar::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary);
    z-index: 1004;
    /* Below logo (1005) */
}

.navbar::before {
    top: -5px;
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1);
}

.navbar::after {
    bottom: -5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-s);
    position: relative;
    /* For mobile menu positioning */
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-s);
}

.nav-logo {
    height: 140px;
    width: auto;
    position: absolute;
    top: -75px;
    /* Break out of navbar correctly */
    left: 10px;
    z-index: 1010;
    /* Higher than everything else */
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-s);
    min-width: 160px;
    /* Reserve space for the absolute logo */
    height: 100%;
    position: relative;
    /* Anchor for the absolute logo */
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: var(--space-m);
}

.nav-item {
    font-weight: 600;
    color: var(--primary);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    text-decoration: none !important;
}

/* High Contrast Navbar Overrides */
.navbar .nav-item {
    color: #ffffff;
}

.navbar .nav-item i {
    color: var(--secondary);
}

.navbar .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.navbar .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--secondary);
    border-color: var(--secondary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-item:hover {
    color: var(--primary-dark);
}

.navbar .nav-item:hover {
    color: var(--secondary);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary);
    cursor: pointer;
    padding: 0;
}

@media (max-width: 768px) {
    .nav-logo {
        height: 110px;
        top: -55px;
        left: 20px;
        transform: none;
    }

    /* Mobile Navbar */
    .hamburger {
        display: block;
        color: #ffffff;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-dark);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.25rem;
        border-bottom: 5px solid var(--secondary);
        box-shadow: var(--shadow-lg);
        text-align: center;
        z-index: 1001;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-item {
        justify-content: center;
        padding: 0.5rem;
        width: 100%;
    }

    /* Hero Responsive */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .about-panel {
        padding: 1.5rem;
    }
}

/* Footer Styles */
.footer {
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    color: var(--text-2);
    font-size: 0.9rem;
    border-top: 1px solid var(--shadow-sm);
    background-color: var(--surface-2);
}

.glow-green {
    box-shadow: 0 0 20px rgba(0, 128, 64, 0.4);
    border: 1px solid rgba(0, 128, 64, 0.2) !important;
}

/* Elegant Tooltip */
.info-tooltip {
    position: relative;
    cursor: help;
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 600;
    transition: color 0.2s;
}

.info-tooltip:hover {
    color: var(--primary);
}

.info-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: max-content;
    max-width: 250px;
    padding: 0.75rem 1rem;

    /* Glassmorphism */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--primary-light);
    box-shadow: 0 4px 15px rgba(0, 128, 64, 0.15);

    color: var(--text-2);
    font-size: 0.9rem;
    font-weight: normal;
    text-align: center;
    border-radius: var(--radius-m);
    line-height: 1.4;

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 100;
    pointer-events: none;
}

.info-tooltip:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.info-tooltip::before {
    content: '';
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border-width: 6px;
    border-style: solid;
    border-color: var(--primary-light) transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 100;
}

.info-tooltip:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Audio Modal Overlay */
.audio-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease-out;
}

.audio-modal {
    width: 90%;
    max-width: 400px;
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
}

.audio-title {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.audio-subtitle {
    color: var(--text-2);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.audio-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(0, 128, 64, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    cursor: pointer;
}

.progress-bar {
    height: 100%;
    background: var(--primary);
    transition: width 0.1s linear;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-2);
    font-variant-numeric: tabular-nums;
}

.control-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.btn-secondary-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.2s;
}

.btn-secondary-danger:hover {
    background: rgba(220, 53, 69, 0.2);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .control-buttons button {
        min-width: 48px;
        min-height: 48px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .progress-container {
        gap: 0.2rem;
        flex-wrap: nowrap;
        /* Prevent wrapping */
        justify-content: center;
    }

    .progress-number {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.8rem;
    }

    .progress-number.active {
        transform: scale(1.1);
    }
}

@media (max-width: 480px) {
    .progress-container {
        gap: 0.15rem;
    }

    .progress-number {
        width: 24px !important;
        /* Smallest size for phones */
        height: 24px !important;
        font-size: 0.75rem;
    }
}

.progress-container {
    display: flex;
    gap: 0.5rem;
}

.progress-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.progress-number:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.progress-number.active {
    background: rgba(0, 128, 64, 0.15);
    border: 1px solid rgba(0, 128, 64, 0.4);
    color: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 128, 64, 0.2);
}

.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

.slide-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 1rem;
    font-weight: 400;
}

.highlight-text {
    color: var(--primary-dark);
    font-weight: 600;
}

.quote-card {
    background: linear-gradient(135deg, rgba(0, 128, 64, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    border: 1px solid rgba(0, 128, 64, 0.1);
    border-left: 5px solid var(--primary);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    position: relative;
}

.quote-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -12px;
    left: 20px;
    font-size: 1.25rem;
    color: var(--primary);
    background: white;
    padding: 0 10px;
}

.quote-text {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.quote-source {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #718096;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.styled-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.styled-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.5;
}

.styled-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    font-size: 1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Names Grid */
.names-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    padding: 0.5rem;
    flex-grow: 1;
}

@media (min-width: 768px) {
    .names-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}