:root {
    /* Color Palette Extracted from Brand Image */
    --gold: #EDAD11;
    --gold-hover: #D0930C;
    --orange: #E26D19;
    --red: #DA251C;
    --green-dark: #0B4A23;
    --green: #74AC31;
    --black-soft: #143D22;
    --black-dark: #082914;
    --white-off: #FAF9F6;
    --beige: #D7CCC8;
    --gray-light: #EAEAEA;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows & Effects */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.18);
    --border-radius: 12px;
    --border-radius-lg: 24px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--white-off);
    color: var(--black-soft);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--black-dark);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Typography Utilities */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-red { color: var(--red); }
.text-green { color: var(--green); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green), #5c8b25);
    color: #fff;
    box-shadow: 0 4px 15px rgba(116, 172, 49, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(116, 172, 49, 0.4);
    background: linear-gradient(135deg, #5c8b25, var(--green));
}

.btn-outline {
    border-color: var(--black-soft);
    color: var(--black-soft);
    background: transparent;
}

.btn-outline:hover {
    background: var(--black-soft);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--black-dark);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.main-header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-soft);
}

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

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
}

.main-header.scrolled .logo-text, .main-header.scrolled .nav-links a {
    color: var(--black-dark);
}

.logo-text strong {
    color: var(--gold);
    font-weight: 800;
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
    color: #fff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--green);
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    /* Keep original text color */
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-actions .btn-outline {
    border-color: #fff;
    color: #fff;
}

.main-header.scrolled .nav-actions .btn-outline {
    border-color: var(--black-dark);
    color: var(--black-dark);
}

.main-header.scrolled .nav-actions .btn-outline:hover {
    background: var(--black-dark);
    color: #fff;
}

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

.main-header.scrolled .mobile-menu-btn {
    color: var(--black-dark);
}

/* Hero Section */
.hero-fullscreen {
    height: 55vh;
    min-height: 450px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(31, 31, 31, 0.4), rgba(31, 31, 31, 0.8));
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

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

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-actions .btn-outline {
    border-color: #fff;
    color: #fff;
}

.hero-actions .btn-outline:hover {
    background: #fff;
    color: var(--black-dark);
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.5rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white-off);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    text-align: center;
    border-top: 4px solid var(--gold);
}

.about-experience h3 {
    font-size: 3rem;
    color: var(--red);
    margin: 0;
    line-height: 1;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(244, 180, 0, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Stats Section */
.stats-section {
    background: var(--black-soft);
    color: #fff;
    padding: 80px 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-item p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Event Cards */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.event-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-img img {
    transform: scale(1.1);
}

.event-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white-off);
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.event-date span {
    display: block;
    color: var(--red);
    font-size: 1.5rem;
    line-height: 1;
}

.event-date small {
    font-size: 0.8rem;
    color: var(--black-soft);
}

.event-content {
    padding: 25px;
}

.event-category {
    color: var(--green);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}

.event-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.event-meta {
    display: flex;
    gap: 15px;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.event-meta i {
    color: var(--gold);
}

/* Donation CTA Section */
.donation-cta {
    background: linear-gradient(rgba(192, 57, 43, 0.9), rgba(192, 57, 43, 0.9)), url('https://images.unsplash.com/photo-1511632765486-a01980e01a18?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    border-radius: var(--border-radius-lg);
    margin: 50px 20px;
}

.donation-cta h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px;
}

.donation-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Footer */
.main-footer {
    background: var(--black-dark);
    color: #fff;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h3, .footer-col h4 {
    color: #fff;
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.footer-col h4 {
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-col.about p {
    color: #aaa;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-col.links ul li {
    margin-bottom: 12px;
}

.footer-col.links ul li a {
    color: #aaa;
}

.footer-col.links ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-col.contact p {
    color: #aaa;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col.contact i {
    color: var(--gold);
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    outline: none;
}

.newsletter-form button {
    padding: 12px 20px;
    border: none;
    background: var(--gold);
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--red);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    color: #aaa;
    font-size: 0.9rem;
}

.footer-legal a {
    color: #aaa;
    margin-left: 20px;
}

.footer-legal a:hover {
    color: #fff;
}

/* Page Header (Inner Pages) */
.page-header {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(31, 31, 31, 0.7), rgba(31, 31, 31, 0.7)), url('https://images.unsplash.com/photo-1542300058-849d3b08aa0f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    margin-bottom: 60px;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.breadcrumb {
    color: var(--gold);
    font-weight: 500;
}

.breadcrumb span {
    color: #fff;
    margin: 0 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .about-grid { gap: 30px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .events-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    
    /* Override inline grids for tablet */
    [style*="grid-template-columns: repeat(4, 1fr)"] { grid-template-columns: repeat(2, 1fr) !important; }
    [style*="grid-template-columns: repeat(3, 1fr)"] { grid-template-columns: repeat(2, 1fr) !important; }
    [style*="grid-template-columns: 2fr 1fr"] { grid-template-columns: 1fr !important; }
    [style*="grid-template-columns: 1fr 2fr"] { grid-template-columns: 1fr !important; }
    [style*="grid-template-columns: 280px 1fr"] { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none !important; }
    .mobile-menu-btn { display: block; }
    .hero-title { font-size: 2.5rem; }
    .hero-desc { font-size: 1rem; }
    .hero-fullscreen { height: auto; min-height: 60vh; padding: 120px 0 60px; }
    .hero-actions { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
    
    .section-padding { padding: 60px 0; }
    .section-title h2 { font-size: 2rem; }
    .page-header { height: auto; min-height: 250px; padding: 80px 0 40px; }
    .page-title { font-size: 2.5rem; }
    
    .about-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 40px; }
    .events-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .social-links { justify-content: center; }
    
    .donation-cta { margin: 20px; padding: 50px 20px; }
    .donation-cta h2 { font-size: 2rem; }
    .form-grid { grid-template-columns: 1fr !important; }
    
    /* Override ALL inline grids to 1 column on mobile */
    [style*="display: grid"] { grid-template-columns: 1fr !important; }
    
    /* Responsive digital member card */
    .dashboard-content .tab-pane > div[style*="display: flex"] { flex-direction: column; text-align: center; }
    .dashboard-content .tab-pane > div[style*="display: flex"] > div { margin-bottom: 20px; }
    
    /* Reduce excessive inline paddings on mobile */
    [style*="padding: 40px"], [style*="padding: 50px"], [style*="padding: 30px"] { padding: 20px !important; }
    
    /* Breadcrumbs wrap */
    .breadcrumb { display: flex; flex-wrap: wrap; justify-content: center; line-height: 2; }
    /* Responsive Tables */
    table { display: block; overflow-x: auto; white-space: nowrap; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .modal-content { padding: 25px; }
    .stat-item h3 { font-size: 2.5rem; }
}

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

.modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: var(--shadow-hover);
    animation: modalFadeIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

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

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.modal-content input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
}

.modal-content label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.9rem;
}


.event-card { transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease; }
.event-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); }
.event-card .event-img img { transition: transform 0.6s ease; }
.event-card:hover .event-img img { transform: scale(1.1) rotate(1deg); }
.btn { transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); }

/* --- CULTURAL DESIGN ENHANCEMENTS --- */
.bg-cultural {
    background-color: #F8F5F0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23edad11' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.bg-pattern-dark {
    background-color: var(--black-dark);
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20h2V0h2v20h2V0h2v20h2V0h2v20h2V0h2v20h2v2H20v-1.5zM0 20h2v20H0V20zm4 0h2v20H4V20zm4 0h2v20H8V20zm4 0h2v20h-2V20zm4 0h2v20h-2V20zm4 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2z' fill='%23edad11' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cultural-divider {
    width: 100px;
    height: 4px;
    background: repeating-linear-gradient(
        45deg,
        var(--gold),
        var(--gold) 10px,
        var(--red) 10px,
        var(--red) 20px,
        var(--green) 20px,
        var(--green) 30px
    );
    margin: 20px auto 30px auto;
    border-radius: 2px;
}

.bg-light {
    background-color: #F8F5F0;
}

.section-padding {
    padding: 100px 0;
    position: relative;
}

.section-padding::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 L10 0 L20 10' fill='none' stroke='%23edad11' stroke-width='2' stroke-opacity='0.3'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    opacity: 0.5;
}

.stats-section, .donation-cta {
    position: relative;
}

.stats-section::after, .donation-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23edad11' fill-opacity='0.15' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.8;
}

.event-card {
    border-bottom: 4px solid var(--gold);
}

/* Floating Cultural Icons */
.floating-icon {
    position: absolute;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.float-slow {
    animation: floatIcon 8s ease-in-out infinite;
}

.float-fast {
    animation: floatIcon 5s ease-in-out infinite alternate-reverse;
}

.spin-slow {
    animation: spinIcon 20s linear infinite;
}

@keyframes floatIcon {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

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

.icon-djembe {
    width: 80px; height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23edad11'%3E%3Cpath d='M6 2h12v4c0 2-2 4-2 4l-2 10h-4l-2-10s-2-2-2-4V2zm2 2v2c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2V4H8z'/%3E%3C/svg%3E") no-repeat center/contain;
}

.icon-mask {
    width: 100px; height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23da251c'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-2-9c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm6 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm-4 4h-2v-2h2v2z'/%3E%3C/svg%3E") no-repeat center/contain;
}

.icon-sun {
    width: 120px; height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23edad11'%3E%3Cpath d='M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm2-13h-4v3h4V2zm0 17h-4v3h4v-3zM7 12H4v-2h3v2zm13-2h-3v2h3v-2z'/%3E%3C/svg%3E") no-repeat center/contain;
}

.icon-shield {
    width: 90px; height: 90px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23082914'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 2.18l7 3.12v4.7c0 4.67-3.13 8.89-7 10.02-3.87-1.13-7-5.35-7-10.02V6.3l7-3.12z'/%3E%3C/svg%3E") no-repeat center/contain;
}
