/* :root {
            --primary-color: #1E8A5E;
            --primary-light: #2EAF7D;
            --primary-dark: #156944;
            --secondary-color: #1976D2;
            --accent-color: #D4AC0D;
            --success-color: #28a745;
            --warning-color: #ffc107;
            --danger-color: #dc3545;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --text-dark: #212529;
            --text-muted: #6c757d;
            --border-color: #dee2e6;
            --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
            --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
            --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
        } */

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            position: relative;
            overflow: hidden;
            min-height: 500px;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(-50px) translateY(-50px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        /* Countdown Card */
        .countdown-card {
            background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
            border: none;
            border-radius: 2rem;
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

        .countdown-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
        }

        .countdown-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
        }

        .countdown-number {
            font-size: 4rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .countdown-label {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Info Table */
        .info-table-card {
            background: var(--white);
            border-radius: 1.5rem;
            box-shadow: var(--shadow);
            overflow: hidden;
            border: none;
        }

        .info-table {
            margin: 0;
        }

        .info-table td {
            padding: 1.25rem 1.5rem;
            border: none;
            border-bottom: 1px solid var(--border-color);
            vertical-align: middle;
        }

        .info-table td:first-child {
            background: var(--light-bg);
            font-weight: 600;
            color: var(--text-dark);
            width: 40%;
        }

        .info-table td:last-child {
            font-weight: 500;
            color: var(--primary-dark);
        }

        .info-table tr:last-child td {
            border-bottom: none;
        }

        .event-title-row {
        }

        .event-title-row td {
                background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%)!important;
            color: var(--white) !important;
        
            font-size: 1.25rem;
            font-weight: 700;
            text-align: center;
            padding: 1.5rem;
        }

        /* Info Cards */
        .info-card {
            border: none;
            border-radius: 1rem;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            overflow: hidden;
           
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .info-card .card-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
            border: none;
            padding: 1.5rem;
        }

        .info-card .card-header h3 {
            color: var(--white);
            margin: 0;
            font-weight: 600;
            font-size: 1.125rem;
        }

        .special-date-item {
            border: none;
            padding: 1rem 1.5rem;
            transition: all 0.3s ease;
            border-radius: 0.5rem;
            margin-bottom: 0.5rem;
            background: var(--white);
        }

        .special-date-item:hover {
            background: rgba(30, 138, 94, 0.05);
            transform: translateX(5px);
        }

        .special-date-item a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
        }

        .special-date-item a:hover {
            color: var(--primary-color);
        }

        .date-badge {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            font-weight: 600;
            font-size: 0.875rem;
            box-shadow: var(--shadow-sm);
        }

        .month-link {
            color: var(--text-dark);
            text-decoration: none;
            padding: 0.75rem;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
            display: block;
            font-weight: 500;
        }

        .month-link:hover {
            background: rgba(30, 138, 94, 0.1);
            color: var(--primary-color);
            transform: translateX(5px);
        }

        /* Quick Actions */
        .quick-action-btn {
            border-radius: 0.75rem;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .quick-action-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        /* Pulse Animation for Countdown */
        .pulse-animation {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .countdown-number {
                font-size: 3rem;
            }

            .countdown-label {
                font-size: 1rem;
            }

            .info-table td {
                padding: 1rem;
                font-size: 0.9rem;
            }

            .info-card .card-header {
                padding: 1rem;
            }

            .special-date-item {
                padding: 0.75rem 1rem;
            }
        }

        /* Print Styles */
        @media print {
            .no-print {
                display: none !important;
            }

            .countdown-card,
            .info-card {
                box-shadow: none;
                border: 1px solid #000;
            }
        }