/* Special case for pages that need block display */
        #main-page.active,
        #daily-quotes-page.active,
        #masters-guidance-page.active,
        #meeting-discussion-page.active,
        #gallery-page.active,
        #classes-page.active,
        #upcoming-classes-page.active,
        #music-player-page.active {
            display: block !important;
        }

/* ========================================
           MAIN PAGE BANNER STYLES
        ======================================== */
        #main-page {
            background: white;
            min-height: 100vh;
            padding: 0;
        }

.main-header {
            text-align: center;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: white;
            padding: 30px 20px;
            margin-bottom: 30px;
        }

.main-logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

.main-logo {
            max-width: 90px;
            height: auto;
            background: white;
            padding: 10px;
            border-radius: 15px;
        }

.main-header h1 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 5px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

.user-welcome {
            font-size: 16px;
            opacity: 0.95;
            margin-bottom: 10px;
        }

.logout-btn {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 10px;
        }

.logout-btn:hover {
            background: white;
            color: #1e3a8a;
        }

.banner-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            padding: 20px;
        }

.banner-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
        }

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

.banner-image {
            width: 100%;
            height: 100%;
            min-height: 250px;
            object-fit: cover;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 20px;
        }

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

.banner-image i {
            font-size: 80px;
            color: white;
            opacity: 0.9;
        }

/* Hide banner content (text area below image) */
        .banner-content {
            display: none;
        }

.banner-title {
            display: none;
        }

.banner-subtitle {
            display: none;
        }

.banner-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent-color);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

/* ========================================
           RESPONSIVE DESIGN FOR MAIN PAGE
        ======================================== */
        @media (max-width: 768px) {
            .banner-container {
                grid-template-columns: 1fr;
                padding: 10px;
            }
            
            .main-header h1 {
                font-size: 24px;
            }
            
            .banner-image {
                min-height: 200px;
            }
        }
