:root {
    --primary-blue: #1e3a8a;
    --light-blue: #3b82f6;
    --primary-red: #dc2626;
    --light-red: #ef4444;
    --admin-red: #b91c1c;
    --dark-grey: #1f2937;
    --medium-grey: #374151;
    --light-grey: #6b7280;
    --primary-yellow: #f59e0b;
    --light-yellow: #fcd34d;
    --white: #ffffff;
    --off-white: #f8fafc;
    --success: #10b981;
    --info: #0ea5e9;
}

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

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--off-white);
    color: var(--dark-grey);
    line-height: 1.6;
}

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

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
    max-width: 56px;
    max-height: 56px;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-text span {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s;
}

nav a:hover, nav a.active {
    color: var(--light-yellow);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--light-yellow);
    transition: width 0.3s;
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 0.95rem;
}

.btn-login {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-login:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

.btn-register {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-register:hover {
    background-color: var(--light-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.user-menu {
    position: relative;
}

.user-avatar {
    cursor: pointer;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.user-avatar i {
    font-size: 1.7rem;
    color: var(--light-yellow);
}

.user-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    margin-top: 10px;
}

.user-menu:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--dark-grey);
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: var(--off-white);
}

.dropdown-menu a i {
    margin-right: 10px;
    width: 20px;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(rgba(30, 58, 138, 0.8), rgba(30, 58, 138, 0.9)),
                url('https://images.unsplash.com/photo-1518509562904-e7ef99cdcc86?ixlib=rb-4.0.3');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 8rem 0;
    text-align: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--dark-grey);
}

.btn-primary:hover {
    background-color: var(--light-yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Live Notification */
.live-notification {
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.live-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.live-badge i {
    animation: pulse 2s infinite;
    color: var(--white);
}

.btn-watch {
    background-color: var(--white);
    color: var(--primary-red);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-watch:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--light-grey);
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    padding: 2rem;
    text-align: center;
    font-size: 3rem;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card-content p {
    color: var(--light-grey);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.card-btn {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.card-btn:hover {
    background-color: var(--light-red);
    transform: translateX(5px);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--light-yellow);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Events */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.event-date {
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

.event-content h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.event-content p {
    color: var(--light-grey);
    margin: 0.3rem 0;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 400px;
    max-height: 600px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    font-size: 1.1rem;
}

.chat-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-icon {
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-tabs {
    display: flex;
    background: var(--off-white);
    border-bottom: 1px solid #e5e7eb;
}

.chat-tab {
    flex: 1;
    padding: 1rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    color: var(--light-grey);
    transition: all 0.3s;
}

.chat-tab.active {
    color: var(--primary-blue);
    border-bottom: 3px solid var(--primary-blue);
}

.chat-content {
    flex: 1;
    overflow: hidden;
}

.chat-panel {
    display: none;
    height: 450px;
}

.chat-panel.active {
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.message {
    margin-bottom: 1rem;
    padding: 0.8rem;
    border-radius: 10px;
    background: var(--off-white);
}

.message.own {
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    color: var(--white);
    margin-left: auto;
    max-width: 80%;
}

.message-sender {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.message-content {
    font-size: 0.95rem;
}

.message-time {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 0.3rem;
}

.chat-input {
    display: flex;
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
    gap: 0.5rem;
}

.chat-input input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #e5e7eb;
    border-radius: 25px;
    outline: none;
    font-size: 0.95rem;
}

.btn-send {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-send:hover {
    transform: scale(1.1);
}

#privateChatPanel {
    flex-direction: row;
}

.private-chat-sidebar {
    width: 40%;
    border-right: 1px solid #e5e7eb;
    overflow-y: auto;
}

.user-item {
    padding: 1rem;
    cursor: pointer;
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.3s;
}

.user-item:hover {
    background: var(--off-white);
}

.user-item.active {
    background: var(--light-blue);
    color: var(--white);
}

.private-chat-area {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-grey);
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary-red);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-grey);
}

.form-control {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Footer */
footer {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: var(--light-yellow);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--light-yellow);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-red);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    color: var(--light-grey);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heartGlow {
    0%, 100% {
        box-shadow: 0 18px 35px rgba(34, 197, 94, 0.35), 0 0 20px rgba(220, 38, 38, 0.4);
    }
    50% {
        box-shadow: 0 18px 35px rgba(34, 197, 94, 0.35), 0 0 40px rgba(220, 38, 38, 0.6), inset 0 0 20px rgba(220, 38, 38, 0.2);
    }
}

/* Donation widget */
body.donate-modal-open {
    overflow: hidden;
}

.donate-float-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.9rem 1.9rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, #fef9c3, #22c55e);
    color: #0f172a;
    box-shadow: 0 18px 35px rgba(34, 197, 94, 0.35);
    cursor: pointer;
    z-index: 1200;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: heartGlow 2s ease-in-out infinite;
}

.donate-float-btn .emoji {
    font-size: 1.4rem;
}

.donate-float-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 22px 42px rgba(34, 197, 94, 0.4);
}

.donate-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(7px);
    z-index: 1500;
}

.donate-modal.is-visible {
    display: flex;
}

.donate-card {
    position: relative;
    width: min(90vw, 520px);
    border-radius: 24px;
    padding: 3rem 2.25rem 2.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #fef9c3 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25);
    animation: donateSlideUp 0.35s ease;
}

.donate-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.1);
    color: #0f172a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.donate-close-btn:hover {
    background: rgba(15, 23, 42, 0.2);
    transform: rotate(5deg);
}

.donate-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.donate-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.15);
    color: #15803d;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.donate-card-header h2 {
    font-size: 1.9rem;
    margin: 0.65rem 0 0.35rem;
    color: #0f172a;
}

.donate-card-header p {
    color: #475569;
    font-size: 1rem;
}

.donate-amount-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.donate-amount-btn {
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 0.85rem 0.4rem;
    background: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    color: #0f172a;
    box-shadow: 0 12px 20px rgba(15, 23, 42, 0.05);
    cursor: pointer;
    transition: all 0.2s ease;
}

.donate-amount-btn:hover {
    border-color: #facc15;
    transform: translateY(-2px);
}

.donate-amount-btn.active {
    background: linear-gradient(135deg, #facc15, #22c55e);
    border-color: transparent;
    color: #0f172a;
    box-shadow: 0 14px 25px rgba(234, 179, 8, 0.45);
}

.donate-input {
    margin-bottom: 1.5rem;
}

.donate-input label {
    font-weight: 600;
    color: #0f172a;
    display: block;
    margin-bottom: 0.35rem;
}

.donate-input-field {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 0.6rem 0.9rem;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

.donate-input-field span {
    font-weight: 700;
    color: #15803d;
}

.donate-input-field input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 1.05rem;
    color: #0f172a;
}

.donate-input small {
    display: block;
    margin-top: 0.25rem;
    color: #64748b;
}

.donate-subtitle {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0f172a;
    margin-bottom: 0.8rem;
}

.donate-methods {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.donate-method-btn {
    border: none;
    border-radius: 18px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.15);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.donate-method-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 34px rgba(15, 23, 42, 0.2);
}

.donate-method-btn .method-title {
    display: block;
    font-size: 1.05rem;
}

.donate-method-btn .method-subtitle {
    display: block;
    font-size: 0.82rem;
    opacity: 0.8;
}

.donate-method-btn i {
    font-size: 1.2rem;
}

.method-mtn {
    background: linear-gradient(135deg, #fef08a, #facc15);
}

.method-airtel {
    background: linear-gradient(135deg, #fee2e2, #f87171);
    color: #7f1d1d;
}

.method-paypal {
    background: linear-gradient(135deg, #eff6ff, #bfdbfe);
}

.method-stripe {
    background: linear-gradient(135deg, #dcfce7, #86efac);
    color: #064e3b;
}

.donate-close-ghost {
    width: 100%;
    margin-top: 1.5rem;
    border: none;
    background: transparent;
    color: #475569;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
}

.donate-close-ghost:hover {
    color: #0f172a;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .chat-widget {
        width: 100%;
        right: 0;
        left: 0;
        bottom: 0;
        border-radius: 15px 15px 0 0;
    }
    
    .cards {
        grid-template-columns: 1fr;
    }
}

/* Leader Theme (red, yellow, dark grey) */
body.theme-leader {
    background-color: #0f1419;
    color: #ffffff;
}

body.theme-leader header {
    background: linear-gradient(135deg, var(--admin-red), var(--primary-yellow));
}

body.theme-leader .chat-header {
    background: linear-gradient(135deg, var(--admin-red), var(--primary-yellow));
}

body.theme-leader .chat-tab.active {
    color: var(--admin-red);
    border-bottom: 3px solid var(--admin-red);
}

body.theme-leader .message.own {
    background: linear-gradient(135deg, var(--admin-red), var(--primary-yellow));
    color: #ffffff;
}

body.theme-leader .btn-send {
    background: linear-gradient(135deg, var(--admin-red), var(--primary-yellow));
}

body.theme-leader .card, body.theme-leader .event-card {
    background: var(--dark-grey);
    color: #ffffff;
}

body.theme-leader .card-icon {
    background: linear-gradient(135deg, var(--admin-red), var(--primary-yellow));
}
