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

        :root {
            --primary-color: #DC143C;
            --primary-hover: #a40000;
            --text-light: #ffffff;
            --text-muted: #a0a0a0;
            --bg-glass: rgba(255, 255, 255, 0.1);
            --bg-glass-hover: rgba(255, 255, 255, 0.15);
            --border-glass: rgba(255, 255, 255, 0.2);
            --shadow-color: rgba(220, 20, 60, 0.3);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
            color: var(--text-light);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow-x: hidden;
        }

        /* Animated background */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 80%, rgba(220, 20, 60, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(220, 20, 60, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(220, 20, 60, 0.15) 0%, transparent 50%);
            z-index: -1;
            animation: floatingGradient 15s ease-in-out infinite alternate;
        }

        @keyframes floatingGradient {
            0% { transform: rotate(0deg) scale(1); }
            100% { transform: rotate(5deg) scale(1.1); }
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #1a1a1a;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-hover);
        }

        /* Header */
        header {
            background: var(--bg-glass);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-glass);
            position: sticky;
            top: 0;
            z-index: 50;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--text-light);
            flex-shrink: 0;
            margin-right: 2.5rem;
        }

        .logo {
            width: 40px;
            height: 40px;
            margin-right: 1rem;
            border-radius: 12px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(45deg, var(--text-light), var(--text-muted));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Navigation */
        nav {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex: 1;
            justify-content: center;
        }

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

        .nav-link {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary-color);
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-shrink: 0;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-light);
            border: 1px solid var(--primary-color);
        }

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

        .btn-primary {
            background: linear-gradient(45deg, var(--primary-color), var(--primary-hover));
            color: var(--text-light);
            border: none;
            box-shadow: 0 4px 15px var(--shadow-color);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px var(--shadow-color);
        }

        /* Mobile menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            padding: 0.5rem;
            z-index: 102;
            position: relative;
        }

        /* Mobile menu overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            z-index: 100;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            padding: 0.5rem;
            font-size: 2rem;
            z-index: 101;
        }

        .mobile-nav-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        .mobile-nav-link {
            color: var(--text-light);
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .mobile-nav-link:hover {
            color: var(--primary-color);
        }

        .mobile-cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
            width: 100%;
            max-width: 280px;
        }

        .mobile-cta-buttons .btn {
            width: 100%;
            text-align: center;
        }

        /* Main Content */
        main {
            flex: 1;
        }

        /* Utility Classes */
        .hidden {
            display: none !important;
        }

        .text-center {
            text-align: center;
        }

        .text-muted {
            color: var(--text-muted);
        }

        /* About Section Styles */
        .about-text {
            margin-bottom: 2rem;
        }

        .about-text p {
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .about-text p:last-child {
            margin-bottom: 0;
        }

        /* Footer Styles */
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .footer-logo-img {
            width: 32px;
            height: 32px;
            border-radius: 8px;
        }

        .footer-brand-name {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-light);
        }

        /* Calendar Empty State */
        .no-events-message {
            text-align: center;
            opacity: 0.7;
        }

        /* Sections */
        section {
            padding: 5rem 1.5rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Hero Section */
        .hero {
            display: block;
            min-height: 50vh;
            padding: 1rem 0;
            margin-bottom: 4rem;
            text-align: center;
        }

        .hero .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .hero-content {
            max-width: 800px;
            animation: slideUp 0.8s ease-out;
        }

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

        .badge {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            background: rgba(220, 20, 60, 0.2);
            border: 1px solid rgba(220, 20, 60, 0.3);
            border-radius: 50px;
            color: #ff6b6b;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 2rem;
        }

        .badge-pulse {
            width: 8px;
            height: 8px;
            background: #ff4444;
            border-radius: 50%;
            margin-right: 0.5rem;
            animation: pulse 2s infinite;
        }

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

        h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, var(--text-light), var(--text-muted));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .subtitle {
            font-size: 1.5rem;
            color: var(--text-muted);
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-bottom: 4rem;
            flex-wrap: wrap;
        }

        .btn-large {
            padding: 1rem 2rem;
            font-size: 1.125rem;
            border-radius: 12px;
        }

        /* Stats */
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .stat-card {
            background: var(--bg-glass);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-glass);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-muted);
            font-weight: 500;
        }

        /* Glass Card */
        .glass-card {
            background: var(--bg-glass);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-glass);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 8px 32px var(--shadow-color);
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--text-light), var(--text-muted));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

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

        .event-card {
            background: var(--bg-glass);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-glass);
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .event-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px var(--shadow-color);
        }

        .event-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .event-content {
            padding: 2rem;
        }

        .event-type {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background: var(--primary-color);
            color: var(--text-light);
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .event-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        .event-details {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 1rem;
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        .event-detail {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .event-description {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

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

        .event-participants {
            flex: 1;
        }

        .participants-bar {
            width: 100%;
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
            margin-top: 0.5rem;
        }

        .participants-fill {
            height: 100%;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        /* Calendar Styles */
        .calendar-container {
            background: var(--bg-glass);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-glass);
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .calendar-wrapper {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin-bottom: 2rem;
            position: relative;
        }

        .google-calendar {
            display: block;
            width: 100%;
            border: none;
        }

        .calendar-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #DC143C, #b01030, #ff6b6b);
            z-index: 1;
        }

        /* Calendar Legend */
        .calendar-legend {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid var(--border-glass);
        }

        .calendar-legend h4 {
            color: var(--text-light);
            margin-bottom: 1rem;
            font-size: 1.1rem;
            font-weight: 600;
        }

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

        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .legend-color {
            width: 16px;
            height: 16px;
            border-radius: 4px;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .public-events {
            background: #8B0000;
        }

        .member-events {
            background: #FF6B6B;
        }

        .workshops {
            background: #4ECDC4;
        }

        /* Calendar Actions */
        .calendar-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .calendar-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .calendar-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
        }

        /* Responsive Calendar */
        @media (max-width: 768px) {
            .calendar-container {
                padding: 1rem;
            }

            .calendar-wrapper {
                margin-bottom: 1.5rem;
            }

            .google-calendar {
                height: 400px !important;
            }

            .legend-items {
                flex-direction: column;
                gap: 1rem;
            }

            .calendar-actions {
                flex-direction: column;
                align-items: center;
            }

            .calendar-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .google-calendar {
                height: 350px !important;
            }
        }

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

        .feature-card {
            background: var(--bg-glass);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-glass);
            border-radius: 16px;
            padding: 2.5rem;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px var(--shadow-color);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        .feature-description {
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* About Section */
        .values {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            text-align: center;
        }

        .value {
            padding: 1.5rem;
        }

        .value-name {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .value-description {
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        /* Contact Section */
        .contact-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .contact-card {
            background: var(--bg-glass);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-glass);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
        }

        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .contact-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-light);
        }

        .contact-info {
            color: var(--text-muted);
        }

        /* Footer */
        footer {
            background: var(--bg-glass);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border-top: 1px solid var(--border-glass);
            padding: 3rem 1.5rem 2rem;
        }

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

        .footer-section h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-glass);
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        .version-info {
            margin-top: 0.5rem;
            font-size: 0.75rem;
            opacity: 0.75;
        }

        /* Responsive - Tablets */
        @media (max-width: 992px) {
            .cta-buttons {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .nav-links {
                display: none;
            }
        }

        /* Responsive - Mobile */
        @media (max-width: 768px) {
            /* Header */
            .header-container {
                padding: 0.75rem 1rem;
            }

            .logo {
                width: 32px;
                height: 32px;
            }

            .logo-text {
                font-size: 1.2rem;
            }

            /* Hero Section */
            h1 {
                font-size: 1.8rem;
                margin-bottom: 1rem;
                line-height: 1.2;
            }

            .subtitle {
                font-size: 1rem;
                margin-bottom: 2rem;
                padding: 0 0.5rem;
            }

            .badge {
                font-size: 0.75rem;
                padding: 0.4rem 0.8rem;
                margin-bottom: 1.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
                margin-bottom: 2rem;
            }

            .btn-large {
                width: 100%;
                max-width: 280px;
                padding: 0.875rem 1.5rem;
                font-size: 1rem;
                min-height: 44px; /* Touch-friendly */
            }

            /* Stats Grid */
            .stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
                margin-top: 2rem;
            }

            .stat-card {
                padding: 1.25rem;
            }

            .stat-number {
                font-size: 1.5rem;
            }

            .stat-label {
                font-size: 0.75rem;
            }

            /* Sections */
            section {
                padding: 3rem 1rem;
            }

            .section-title {
                font-size: 1.75rem;
                margin-bottom: 0.75rem;
            }

            .section-subtitle {
                font-size: 1rem;
                padding: 0 0.5rem;
            }

            .section-header {
                margin-bottom: 2.5rem;
            }

            /* Glass Card */
            .glass-card {
                padding: 1.5rem;
                border-radius: 16px;
            }

            /* Events Grid */
            .events-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .event-image {
                height: 180px;
            }

            .event-content {
                padding: 1.5rem;
            }

            .event-title {
                font-size: 1.25rem;
            }

            /* Calendar */
            .calendar-container {
                padding: 1rem;
                border-radius: 12px;
            }

            .google-calendar-iframe {
                height: 400px !important;
            }

            .calendar-actions {
                flex-direction: column;
                gap: 0.75rem;
            }

            .calendar-actions .btn {
                width: 100%;
                max-width: 280px;
            }

            /* Features Grid */
            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .feature-card {
                padding: 2rem 1.5rem;
            }

            .feature-icon {
                font-size: 2.5rem;
            }

            .feature-title {
                font-size: 1.25rem;
            }

            .feature-description {
                font-size: 0.9rem;
            }

            /* Values */
            .values {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .value-name {
                font-size: 1.5rem;
            }

            .value-description {
                font-size: 0.8rem;
            }

            /* Contact */
            .contact-options {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .contact-card {
                padding: 1.5rem;
            }

            .contact-icon {
                font-size: 2rem;
            }

            .contact-title {
                font-size: 1.1rem;
            }

            .contact-info {
                font-size: 0.9rem;
            }

            /* Footer */
            footer {
                padding: 2rem 1rem 1.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-section h3 {
                font-size: 1.1rem;
            }

            .footer-links a {
                font-size: 0.9rem;
            }

            .footer-bottom {
                padding-top: 1.5rem;
            }

            .footer-bottom p {
                font-size: 0.8rem;
            }

            .version-info {
                font-size: 0.7rem;
                flex-direction: column;
                gap: 0.25rem;
            }
        }

        /* Extra Small Mobile */
        @media (max-width: 380px) {
            h1 {
                font-size: 1.5rem;
            }

            .subtitle {
                font-size: 0.9rem;
            }

            .stats {
                grid-template-columns: 1fr;
            }

            .stat-card {
                padding: 1rem;
            }

            .btn-large {
                font-size: 0.9rem;
                padding: 0.75rem 1.25rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .google-calendar-iframe {
                height: 350px !important;
            }
        }

        /* Landscape Mobile */
        @media (max-width: 768px) and (orientation: landscape) {
            .hero {
                min-height: 50vh;
                padding: 2rem 0;
            }

            h1 {
                font-size: 1.5rem;
            }

            .stats {
                grid-template-columns: repeat(4, 1fr);
                gap: 1rem;
            }

            .stat-card {
                padding: 1rem;
            }

            .stat-number {
                font-size: 1.25rem;
            }
        }

        /* Touch-friendly tap targets */
        @media (hover: none) and (pointer: coarse) {
            .btn,
            .nav-link,
            .mobile-nav-link {
                min-height: 44px;
                min-width: 44px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
        }

        /* Calendar Styles */
        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 30px 0 20px;
            padding: 20px;
            background: rgba(45, 45, 45, 0.8);
            border-radius: 15px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .calendar-header h2 {
            font-size: 2em;
            color: #DC143C;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .calendar-nav {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .calendar-nav-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 10px;
            cursor: pointer;
            font-size: 1.1em;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .calendar-nav-btn:hover {
            background: #DC143C;
            transform: translateY(-2px);
        }

        .calendar-nav-btn.today-btn {
            background: #4CAF50;
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 2px;
            background: rgba(45, 45, 45, 0.8);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 30px;
        }

        .calendar-day-header {
            text-align: center;
            padding: 15px;
            font-weight: bold;
            color: #DC143C;
            font-size: 1.1em;
            background: rgba(220, 20, 60, 0.2);
            border-radius: 10px;
        }

        .calendar-day {
            min-height: 100px;
            padding: 8px;
            background: rgba(61, 61, 61, 0.8);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .calendar-day:hover {
            background: rgba(77, 77, 77, 0.9);
            transform: scale(1.02);
            z-index: 1;
        }

        .calendar-day.today {
            background: rgba(76, 175, 80, 0.3);
            border: 2px solid #4CAF50;
        }

        .calendar-day.other-month {
            opacity: 0.3;
        }

        .day-number {
            font-size: 1.2em;
            font-weight: bold;
            margin-bottom: 5px;
            color: #DC143C;
        }

        .calendar-day.today .day-number {
            color: #4CAF50;
        }

        .event-indicator {
            font-size: 0.7em;
            padding: 3px 6px;
            margin: 2px 0;
            border-radius: 5px;
            background: var(--primary-color);
            color: white;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .event-indicator:hover {
            background: #DC143C;
            transform: translateX(3px);
        }

        .event-indicator.multiple {
            background: #ff9800;
            color: #1a1a1a;
        }

        .event-list-sidebar {
            background: rgba(45, 45, 45, 0.8);
            border-radius: 15px;
            padding: 25px;
            margin-top: 20px;
        }

        .event-list-sidebar h3 {
            color: #DC143C;
            margin-bottom: 20px;
            font-size: 1.5em;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .event-card {
            background: rgba(61, 61, 61, 0.8);
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 15px;
            border-left: 4px solid var(--primary-color);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .event-card:hover {
            border-left-color: #DC143C;
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(220, 20, 60, 0.2);
        }

        .event-card h4 {
            color: #DC143C;
            margin-bottom: 8px;
            font-size: 1.1em;
        }

        .event-card .event-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 8px 0;
            font-size: 0.85em;
            opacity: 0.9;
        }

        .event-card .event-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Event Description (v2.13.0.9) */
        .event-card .event-description {
            margin-top: 0.75rem;
            padding-top: 0.75rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.85em;
            line-height: 1.5;
            color: #ffffff;
            white-space: pre-line;
            max-width: 100%;
            word-wrap: break-word;
        }

        /* Event Availability (v2.13.0.9) */
        .event-card .event-availability {
            margin-top: 0.75rem;
            padding-top: 0.75rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .event-card .event-availability span {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 0.8em;
            padding: 4px 10px;
            border-radius: 8px;
            font-weight: 500;
        }

        .event-card .places-available {
            background: rgba(76, 175, 80, 0.2);
            color: #4CAF50;
            border: 1px solid rgba(76, 175, 80, 0.3);
        }

        .event-card .places-full {
            background: rgba(244, 67, 54, 0.2);
            color: #f44336;
            border: 1px solid rgba(244, 67, 54, 0.3);
        }

        .event-card .places-unlimited {
            background: rgba(33, 150, 243, 0.2);
            color: #2196F3;
            border: 1px solid rgba(33, 150, 243, 0.3);
        }

        .calendar-loading {
            display: none;
            justify-content: center;
            align-items: center;
            padding: 40px;
        }

        .calendar-loading.active {
            display: flex;
        }

        .calendar-spinner {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(61, 61, 61, 0.8);
            border-top-color: #DC143C;
            border-radius: 50%;
            animation: calendarSpin 1s linear infinite;
        }

        @keyframes calendarSpin {
            to { transform: rotate(360deg); }
        }

        /* Modal styles now handled by modal-manager.js */
        /* Old modal CSS removed to prevent conflicts */

        /* Day Events Modal Styles */
        .day-events-modal {
            display: flex;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.8);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .day-events-content {
            background: var(--card-bg, #1a1a2e);
            border-radius: 16px;
            max-width: 700px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            cursor: default;
        }

        .day-events-header {
            padding: 20px 24px;
            border-bottom: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .day-events-header h3 {
            margin: 0;
            color: var(--text-color, #fff);
        }

        .day-events-close-btn {
            background: none;
            border: none;
            color: var(--text-secondary, #999);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 4px 8px;
        }

        .day-events-body {
            padding: 20px 24px;
        }

        .day-event-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 12px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .day-event-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .day-event-content {
            display: flex;
            justify-content: space-between;
            align-items: start;
            gap: 12px;
        }

        .day-event-info {
            flex: 1;
        }

        .day-event-title {
            margin: 0 0 8px 0;
            color: var(--text-color, #fff);
            font-size: 1.1rem;
        }

        .day-event-icon {
            color: #DC143C;
            margin-right: 8px;
            font-size: 0.9rem;
        }

        .day-event-location {
            margin: 0;
            color: var(--text-secondary, #999);
            font-size: 0.9rem;
        }

        .day-event-chevron {
            color: #DC143C;
            align-self: center;
        }

        .modal-content {
            background: rgba(40, 40, 40, 0.98);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(220, 20, 60, 0.3);
            border-radius: 24px;
            max-width: 650px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            cursor: default;
        }

        .modal-content::-webkit-scrollbar {
            width: 8px;
        }

        .modal-content::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
        }

        .modal-content::-webkit-scrollbar-thumb {
            background: rgba(220, 20, 60, 0.5);
            border-radius: 4px;
        }

        .modal-content::-webkit-scrollbar-thumb:hover {
            background: rgba(220, 20, 60, 0.7);
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .modal-header {
            background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
            padding: 24px 28px;
            border-radius: 24px 24px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 10;
            box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
        }

        .modal-header h2 {
            font-size: 1.6em;
            color: white;
            margin: 0;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .modal-close {
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: white;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5em;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: rotate(90deg) scale(1.1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .modal-body {
            padding: 28px;
        }

        .modal-event-date {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #DC143C;
            font-size: 1.15em;
            margin-bottom: 20px;
            padding: 16px;
            background: rgba(220, 20, 60, 0.1);
            border-radius: 12px;
            border: 1px solid rgba(220, 20, 60, 0.2);
            font-weight: 600;
        }

        .modal-event-date i {
            font-size: 1.2em;
        }

        .modal-event-description {
            background: rgba(60, 60, 60, 0.6);
            padding: 20px;
            border-radius: 14px;
            margin-bottom: 20px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.1);
            white-space: pre-line; /* Preserve line breaks */
        }

        .modal-event-meta {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            margin-bottom: 24px;
        }

        .meta-item {
            background: linear-gradient(135deg, rgba(220, 20, 60, 0.15) 0%, rgba(139, 0, 0, 0.1) 100%);
            padding: 18px;
            border-radius: 14px;
            text-align: center;
            border: 1px solid rgba(220, 20, 60, 0.25);
            transition: all 0.3s ease;
        }

        .meta-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(220, 20, 60, 0.2);
            border-color: rgba(220, 20, 60, 0.4);
        }

        .meta-item .label {
            opacity: 0.75;
            font-size: 0.8em;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .meta-item .value {
            font-size: 1.3em;
            font-weight: 700;
            color: #DC143C;
        }

        .modal-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .modal-actions .btn {
            flex: 1;
            min-width: 160px;
            padding: 14px 24px;
            font-size: 1em;
            font-weight: 600;
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .modal-actions .btn-primary {
            background: linear-gradient(135deg, #DC143C 0%, #a40000 100%);
            border: none;
            color: white;
            box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
        }

        .modal-actions .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(220, 20, 60, 0.5);
        }

        .modal-actions .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: white;
        }

        .modal-actions .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .modal-actions .btn-success {
            background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
            border: none;
            color: white;
            box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
        }

        .modal-actions .btn-success:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
        }

        .login-prompt {
            background: linear-gradient(135deg, rgba(255, 152, 0, 0.15) 0%, rgba(255, 87, 108, 0.15) 100%);
            border: 2px solid rgba(255, 152, 0, 0.4);
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            margin-bottom: 20px;
        }

        .login-prompt h3 {
            color: #ff9800;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-size: 1.3em;
        }

        .login-prompt p {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
        }

        /* Calendar responsive */
        @media (max-width: 768px) {
            .calendar-grid {
                grid-template-columns: repeat(7, 1fr);
                font-size: 0.75em;
            }

            .calendar-day {
                min-height: 60px;
                padding: 3px;
            }

            .event-indicator {
                font-size: 0.6em;
                padding: 2px 3px;
            }

            .calendar-header {
                flex-direction: column;
                text-align: center;
            }

            .modal-content {
                margin: 10px;
                max-height: 95vh;
            }

            .modal-event-meta {
                grid-template-columns: 1fr;
            }
        }