
   /* ============================================
   GLOBAL RESET & EDGE-TO-EDGE FIX
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f5f7fa;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.main-content {
    flex: 1 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    background: #ffffff;
}

.container, 
.container-fluid, 
.container-lg, 
.container-md, 
.container-sm, 
.container-xl,
.container-xxl {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
}

/* EDGE-TO-EDGE FIX - REMOVED MAX-WIDTH CONSTRAINT */
.inner-container {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* ============================================
   TOP BAR 1 - FULL WIDTH (EDGE TO EDGE)
   ============================================ */
.top-bar-1 {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 10px 0;
    width: 100%;
    margin: 0;
}

.top-bar-1 .top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-info a {
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 13px;
    white-space: nowrap;
}

.contact-info a:hover {
    color: #ffd93d;
}

.contact-info i {
    margin-right: 8px;
    font-size: 13px;
}

.contact-info .separator {
    color: rgba(255,255,255,0.3);
}

.right-section {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons a {
    color: #cd0e8a;
    font-size: 14px;
    transition: transform 0.3s;
    display: inline-block;
}

.social-icons a:hover {
    color: #ff6b6b;
    transform: translateY(-2px);
}

.donate-link {
    color: #ff6b6b !important;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 13px;
    white-space: nowrap;
}

.donate-link:hover {
    color: #ff4757 !important;
}

/* ============================================
   TOP BAR 2 - DESKTOP NAVIGATION (EDGE TO EDGE)
   ============================================ */
.top-bar-2 {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    width: 100%;
    margin: 0;
}

.top-bar-2 .inner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    gap: 20px;
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-text {
    font-size: 18px;
    font-weight: 700;
    color: #667eea;
    letter-spacing: 1px;
    white-space: nowrap;
}

.animated-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.4s ease;
    border: 2px solid #667eea;
    flex-shrink: 0;
}

.animated-logo:hover {
    transform: rotate(360deg) scale(1.1);
    border-color: #ff6b6b;
    box-shadow: 0 0 15px rgba(255,107,107,0.5);
}

/* Desktop Navigation - HORIZONTAL */
.desktop-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.desktop-nav .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav .nav-item {
    position: relative;
    list-style: none;
    flex-shrink: 0;
}

.desktop-nav .nav-link {
    color: #333 !important;
    font-weight: 600;
    margin: 0;
    padding: 8px 12px;
    font-size: 12px;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.desktop-nav .nav-link:hover {
    color: #ffc107 !important;
}

.desktop-nav .nav-link.active {
    color: #ffc107 !important;
}

/* Desktop Dropdown - Hover */
.desktop-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    min-width: 200px;
    background: white;
    display: none;
    z-index: 1000;
    padding: 8px 0;
}

.desktop-nav .dropdown:hover .dropdown-menu {
    display: block;
}

.desktop-nav .dropdown-item {
    padding: 8px 15px;
    font-size: 12px;
    transition: all 0.3s;
    display: block;
    text-decoration: none;
    color: #333;
}

.desktop-nav .dropdown-item:hover {
    background: #ffc107;
    color: #1a1a2e;
    transform: translateX(8px);
    padding-left: 23px;
}

.desktop-nav .btn-join-maf {
    background: transparent;
    color: #ff6b6b !important;
    font-weight: 700;
    font-size: 12px;
    padding: 8px 12px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    white-space: nowrap;
}

.desktop-nav .btn-join-maf:hover {
    color: #ffc107 !important;
    transform: translateY(-2px);
}

.desktop-nav .btn-join-maf i {
    margin-right: 6px;
}

/* Mobile Toggle Button - Hidden on Desktop */
.navbar-toggler {
    display: none;
    border: none;
    background: transparent;
    padding: 10px;
    flex-shrink: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23667eea' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive adjustments for desktop */
@media (max-width: 1300px) {
    .desktop-nav .nav-link {
        padding: 8px 8px;
        font-size: 11px;
    }
    
    .brand-text {
        font-size: 16px;
    }
    
    .desktop-nav .btn-join-maf {
        font-size: 11px;
        padding: 8px 8px;
    }
}

@media (max-width: 1150px) {
    .desktop-nav .nav-link {
        padding: 8px 6px;
        font-size: 10px;
    }
    
    .brand-text {
        font-size: 14px;
    }
    
    .animated-logo {
        width: 40px;
        height: 40px;
    }
    
    .desktop-nav .btn-join-maf {
        font-size: 10px;
        padding: 8px 6px;
    }
}

/* ============================================
   HERO SECTION (EDGE TO EDGE)
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, hsl(231, 87%, 3%) 0%, hsl(255, 91%, 41%) 100%);
    position: relative;
    padding: 12px 0;
    width: 100%;
    margin: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    color: white;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-text {
    font-size: 13px;
    font-weight: 500;
}

.hero-text span {
    font-weight: 700;
}

/* Hero Buttons Styles - NO CIRCLE LINE */
.hero-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.hero-btn {
    background: transparent;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Donate Button - Red Border (NO CIRCLE LINE = transparent background) */
.hero-btn-donate {
    color: #dc3545;
    border: 1px solid #dc3545;
    background: transparent;
}

.hero-btn-donate i {
    color: #dc3545;
}

.hero-btn-donate:hover {
    background: #dc3545;
    color: white;
    transform: translateY(-2px);
}

.hero-btn-donate:hover i {
    color: white;
}

/* Join Button - White Border with Heart Icon */
.hero-btn-join {
    color: white;
    border: 1px solid white;
    background: transparent;
}

.hero-btn-join i {
    color: white;
}

.hero-btn-join:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

.hero-btn-join:hover i {
    color: #333;
}

/* ============================================
   MOBILE NAVIGATION (Visible only on mobile)
   ============================================ */
@media (max-width: 992px) {
    .top-bar-2 .inner-container {
        flex-wrap: wrap;
    }
    
    .desktop-nav {
        display: none !important;
    }
    
    .navbar-toggler {
        display: block !important;
    }
    
    /* Mobile menu overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.7);
        z-index: 1040;
        display: none;
    }
    
    .mobile-menu-overlay.show {
        display: block;
    }
    
    /* Mobile menu panel */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: white;
        box-shadow: 2px 0 10px rgba(0,0,0,0.2);
        transition: left 0.3s ease-in-out;
        z-index: 1050;
        padding: 0;
        overflow-y: auto;
    }
    
    .navbar-collapse.show {
        left: 0;
    }
    
    /* Mobile menu header */
    .mobile-menu-header {
        background: linear-gradient(135deg, hwb(318 40% 8%) 0%, #764ba2 100%);
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: sticky;
        top: 0;
        z-index: 1060;
    }
    
    .mobile-menu-header h3 {
        color: white;
        margin: 0;
        font-size: 16px;
    }
    
    .mobile-menu-close {
        background: #dc3545;
        color: white;
        border: none;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 18px;
        transition: all 0.3s;
    }
    
    .mobile-menu-close:hover {
        background: #c82333;
        transform: scale(1.1);
    }
    
    /* Mobile navigation items */
    .mobile-nav-items {
        padding: 10px 0;
    }
    
    .mobile-nav-items .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
        margin: 0;
        padding: 0;
    }
    
    .mobile-nav-items .nav-item {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .mobile-nav-items .nav-link {
        padding: 14px 20px;
        width: 100%;
        text-align: left;
        font-size: 14px;
        font-weight: 500;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #333 !important;
        text-decoration: none;
    }
    
    /* Mobile dropdown */
    .mobile-nav-items .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        box-shadow: none;
        padding: 0;
        margin: 0;
        background: #f8f9fa;
        border-radius: 0;
        display: none;
    }
    
    .mobile-nav-items .dropdown.show .dropdown-menu {
        display: block;
    }
    
    .mobile-nav-items .dropdown-item {
        padding: 12px 20px 12px 35px;
        font-size: 13px;
        border-bottom: 1px solid #e9ecef;
        display: block;
        text-decoration: none;
        color: #555;
    }
    
    .mobile-nav-items .dropdown-item:hover {
        background: #ffc107;
        color: #1a1a2e;
    }
    
    /* Mobile join button */
    .mobile-nav-items .btn-join-maf {
        display: block;
        width: 100%;
        text-align: left;
        padding: 14px 20px;
        margin: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white !important;
        border-radius: 0;
        text-decoration: none;
    }
}

/* ============================================
   FOOTER - HORIZONTAL LINE FIX (EDGE TO EDGE)
   ============================================ */
.footer {
    background: linear-gradient(135deg, hsl(240, 80%, 26%) 0%, hsl(240, 73%, 38%) 100%);
    color: #c4c4d4;
    padding: 50px 0 20px;
    width: 100%;
    margin-top: 0;
    position: relative;
}

.footer-actions-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-action-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #667eea, #764ba2, #ff6b6b, transparent);
}

.footer-action-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s;
    white-space: nowrap;
}

.footer-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102,126,234,0.4);
}

.footer-action-btn a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-action-btn.newsletter-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
    border-radius: 50%;
    border: 2px solid #ff6b6b;
}

.social-footer {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-footer a {
    width: 32px;
    height: 32px;
    background: #04010114;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: hsl(310, 86%, 43%);
    text-decoration: none;
}

.social-footer a:hover {
    background: #ff6b6b;
    transform: translateY(-3px);
}

.footer-links-column {
    list-style: none;
    padding: 0;
}

.footer-links-column li {
    margin-bottom: 8px;
}

.footer-links-column li a {
    color: #a0a0c0;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s;
}

.footer-links-column li a:hover {
    color: #ffc107;
    transform: translateX(5px);
    display: inline-block;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    margin-top: 25px;
    text-align: center;
    font-size: 11px;
}

/* ============================================
   SCROLL BUTTONS
   ============================================ */
.scroll-btn {
    position: fixed;
    right: 15px;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #dc3545 0%, #ff4757 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;
    border: none;
}

.scroll-btn:hover {
    transform: scale(1.1);
    background: #ffc107;
    color: #1a1a2e;
}

.scroll-up {
    bottom: 70px;
}

.scroll-down {
    bottom: 20px;
}

/* ============================================
   WELCOME NOTIFICATION
   ============================================ */
.welcome-notification {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 320px;
    z-index: 9999;
    display: none;
    animation: slideInRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%) rotate(5deg);
        opacity: 0;
    }
    to {
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
    to {
        transform: translateX(100%) rotate(-5deg);
        opacity: 0;
    }
}

.notification-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: none;
    position: relative;
    overflow: hidden;
}

/* Image wrapper */
.notification-image-wrapper {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.notification-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.notification-card:hover .notification-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102,126,234,0.4), rgba(118,75,162,0.4));
}

/* Artistic border dots */
.artistic-border {
    position: absolute;
    top: 110px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.artistic-border .dot {
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.artistic-border .dot:nth-child(1) {
    animation-delay: 0s;
    background: #667eea;
}

.artistic-border .dot:nth-child(2) {
    animation-delay: 0.3s;
    background: #ff6b6b;
}

.artistic-border .dot:nth-child(3) {
    animation-delay: 0.6s;
    background: #2c7a4d;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* Notification icon */
.notification-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -25px auto 10px auto;
    position: relative;
    z-index: 3;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.notification-icon i {
    font-size: 24px;
    color: white;
}

/* Notification text */
.notification-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 5px;
    text-align: center;
    padding: 0 15px;
}

.notification-card h4 .wave {
    display: inline-block;
    animation: wave 1s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    75% { transform: rotate(-15deg); }
}

.notification-card p {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 15px;
    text-align: center;
    padding: 0 15px;
}

/* Notification buttons */
.notification-buttons {
    display: flex;
    gap: 10px;
    margin-top: 5px;
    padding: 0 15px 15px 15px;
}

.notification-btn-small {
    padding: 8px 12px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
    transition: all 0.3s;
}

.btn-sponsor-small {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-sponsor-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102,126,234,0.4);
    color: white;
}

.btn-donate-small {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
    color: white;
}

.btn-donate-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
    color: white;
}

/* Artistic heart decoration */
.artistic-heart {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 20px;
    color: #ff6b6b;
    opacity: 0.3;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

/* Close button */
.notification-close-small {
    position: absolute;
    top: 10px;
    right: 12px;
    background: rgba(0,0,0,0.5);
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: white;
    transition: all 0.3s;
    z-index: 4;
}

.notification-close-small:hover {
    background: #ef4444;
    transform: scale(1.1);
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */
@media (max-width: 768px) {
    .top-bar-1 .top-content {
        flex-direction: column;
        gap: 8px;
    }
    
    /* Row 1: Phone and email - horizontal line */
    .contact-info {
        display: flex;
        flex-direction: row !important;
        justify-content: center;
        align-items: center;
        gap: 16px;
        flex-wrap: nowrap;
        width: 100%;
    }
    
    /* Hide the separator line */
    .contact-info .separator {
        display: none;
    }
    
    /* Row 2: Social icons and donate - horizontal line */
    .right-section {
        display: flex;
        flex-direction: row !important;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-wrap: nowrap;
        width: 100%;
    }
    
    .footer-actions-wrapper {
        flex-wrap: wrap;
    }
    
    .footer-action-line {
        display: none;
    }
    
    .hero-text {
        font-size: 11px;
        text-align: center;
        width: 100%;
        margin-bottom: 8px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    /* KEEP BUTTONS HORIZONTAL ON MOBILE - NOT STACKED */
    .hero-buttons {
        justify-content: center;
        flex-direction: row !important;
        width: auto;
    }
    
    .hero-btn {
        width: auto;
        min-width: 130px;
    }
    
    .inner-container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 480px) {
    .contact-info a {
        font-size: 10px;
    }
    
    .footer-action-btn {
        padding: 6px 18px;
    }
    
    .footer-action-btn a {
        font-size: 11px;
    }
    
    .welcome-notification {
        bottom: 70px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: 280px;
    }
    
    .notification-image-wrapper {
        height: 100px;
    }
    
    .notification-icon {
        width: 45px;
        height: 45px;
        margin-top: -22px;
    }
    
    .notification-icon i {
        font-size: 20px;
    }
    
    /* Keep buttons horizontal on very small screens */
    .hero-buttons {
        flex-direction: row !important;
        gap: 10px;
    }
    
    .hero-btn {
        padding: 6px 14px;
        font-size: 11px;
        min-width: 110px;
    }
}

/* ============================================
   MEDIA QUERY FOR LARGE SCREENS - STAYS EDGE TO EDGE
   ============================================ */
@media (min-width: 1440px) {
    .inner-container,
    .top-bar-1 .top-content,
    .hero-content {
        max-width: 100% !important;
        padding: 0 32px;
    }
}

/* Card Styles */
.card {
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}
/* ============================================
   FLIER-STYLE WELCOME NOTIFICATION WITH BALLOONS
   ============================================ */
.welcome-notification {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 380px;
    max-width: calc(100vw - 40px);
    z-index: 9999;
    display: none;
    animation: slideInRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Flier-style card - like a flyer/poster */
.notification-card {
    background: linear-gradient(145deg, #ffffff 0%, #fff8f0 100%);
    border-radius: 0 !important;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: none;
    position: relative;
    overflow: visible !important;
}

/* Balloon elements - floating around the notification */
.balloon {
    position: absolute;
    width: 30px;
    height: 40px;
    border-radius: 50%;
    z-index: -1;
    animation: floatBalloon 4s ease-in-out infinite;
}

.balloon::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 15px;
    background: rgba(0,0,0,0.3);
}

.balloon::after {
    content: '✧';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    color: rgba(0,0,0,0.4);
}

.balloon-1 {
    top: -20px;
    left: -25px;
    width: 35px;
    height: 45px;
    background: radial-gradient(circle at 30% 30%, #ff6b6b, #dc3545);
    animation-delay: 0s;
}

.balloon-2 {
    top: 50%;
    left: -30px;
    width: 25px;
    height: 32px;
    background: radial-gradient(circle at 30% 30%, #4ecdc4, #2c7a4d);
    animation-delay: 0.5s;
}

.balloon-3 {
    top: -15px;
    right: -25px;
    width: 30px;
    height: 38px;
    background: radial-gradient(circle at 30% 30%, #ffe66d, #ffc107);
    animation-delay: 1s;
}

.balloon-4 {
    bottom: 20px;
    right: -20px;
    width: 28px;
    height: 35px;
    background: radial-gradient(circle at 30% 30%, #a855f7, #7c3aed);
    animation-delay: 1.5s;
}

.balloon-5 {
    bottom: -15px;
    left: 15%;
    width: 22px;
    height: 28px;
    background: radial-gradient(circle at 30% 30%, #f43f5e, #e11d48);
    animation-delay: 0.8s;
}

.balloon-6 {
    top: 30%;
    right: -28px;
    width: 20px;
    height: 26px;
    background: radial-gradient(circle at 30% 30%, #06b6d4, #0891b2);
    animation-delay: 2s;
}

@keyframes floatBalloon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(3deg);
    }
    75% {
        transform: translateY(3px) rotate(-2deg);
    }
}

/* Flier inner content - like a flyer/poster */
.notification-inner {
    padding: 20px;
    position: relative;
    background: white;
}

/* Decorative paper texture effect */
.notification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(0,0,0,0.01) 0px,
        rgba(0,0,0,0.01) 2px,
        transparent 2px,
        transparent 8px
    );
    pointer-events: none;
    z-index: 0;
}

/* Image wrapper - flier style */
.notification-image-wrapper {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.notification-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.05);
}

/* No overlay - remove dark overlay */
.image-overlay {
    display: none;
}

/* Decorative corner flourishes */
.notification-card .corner-flourish {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.15;
    z-index: 1;
}

.corner-flourish-tl {
    top: 0;
    left: 0;
    border-top: 2px solid #2c7a4d;
    border-left: 2px solid #2c7a4d;
    width: 30px;
    height: 30px;
}

.corner-flourish-tr {
    top: 0;
    right: 0;
    border-top: 2px solid #2c7a4d;
    border-right: 2px solid #2c7a4d;
    width: 30px;
    height: 30px;
}

.corner-flourish-bl {
    bottom: 0;
    left: 0;
    border-bottom: 2px solid #2c7a4d;
    border-left: 2px solid #2c7a4d;
    width: 30px;
    height: 30px;
}

.corner-flourish-br {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid #2c7a4d;
    border-right: 2px solid #2c7a4d;
    width: 30px;
    height: 30px;
}

/* Notification icon */
.notification-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #2c7a4d, #1e5a38);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -28px auto 12px auto;
    position: relative;
    z-index: 5;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.notification-icon i {
    font-size: 26px;
    color: white;
}

/* Notification text */
.notification-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: #2c7a4d;
    margin-bottom: 8px;
    text-align: center;
    padding: 0 15px;
}

.notification-card h4 .wave {
    display: inline-block;
    animation: wave 1s ease-in-out infinite;
}

.notification-card p {
    font-size: 13px;
    color: #555;
    margin-bottom: 18px;
    text-align: center;
    padding: 0 15px;
    line-height: 1.5;
}

/* Notification buttons - flier style */
.notification-buttons {
    display: flex;
    gap: 12px;
    margin-top: 5px;
    padding: 0 15px 20px 15px;
}

.notification-btn-small {
    padding: 10px 15px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
    transition: all 0.3s;
}

.btn-sponsor-small {
    background: linear-gradient(135deg, #2c7a4d, #1e5a38);
    color: white;
    border: none;
}

.btn-sponsor-small:hover {
    background: linear-gradient(135deg, #1e5a38, #144a2d);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(44,122,77,0.3);
}

.btn-donate-small {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
}

.btn-donate-small:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(220,53,69,0.3);
}

/* No artistic border dots - removed */
.artistic-border {
    display: none;
}

/* No extra artistic heart */
.artistic-heart {
    display: none;
}

/* Close button */
.notification-close-small {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.6);
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: white;
    transition: all 0.3s;
    z-index: 10;
}

.notification-close-small:hover {
    background: #dc3545;
    transform: scale(1.1);
}

/* Animations */
@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    75% { transform: rotate(-15deg); }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%) rotate(2deg);
        opacity: 0;
    }
    to {
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 500px) {
    .welcome-notification {
        bottom: 70px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: none;
        margin: 0 auto;
    }
    
    .notification-image-wrapper {
        height: 130px;
    }
    
    .notification-icon {
        width: 48px;
        height: 48px;
        margin-top: -24px;
    }
    
    .notification-icon i {
        font-size: 22px;
    }
    
    .notification-card h4 {
        font-size: 16px;
    }
    
    .notification-card p {
        font-size: 12px;
    }
    
    .balloon {
        display: none;
    }
}

