
        /* Community Page Specific Styles */
        .community-hero {
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.7));
            overflow: hidden;
        }

        .community-hero .hero-content {
            z-index: 2;
            color: white;
            max-width: 800px;
            padding: 0 2rem;
        }

        .community-hero .floating-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .community-stats {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 5rem 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .stat-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .stat-card i {
            font-size: 3rem;
            color: #667eea;
            margin-bottom: 1rem;
        }

        .events-section {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .event-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .event-image {
            height: 200px;
        }

        .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .event-info {
            padding: 1.5rem;
        }

        .event-info h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .forums-section {
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
        }

        .forums-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .forum-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            color: white;
            transition: all 0.3s ease;
        }

        .forum-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        .member-spotlight {
            background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
        }

        .spotlight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .spotlight-card {
            background: white;
            border-radius: 20px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .spotlight-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .spotlight-card img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            border: 3px solid #feca57;
        }

        .leaderboard-section {
            background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);
        }

        .leaderboard-table {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow-x: auto;
        }

        .leaderboard-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .leaderboard-table th, .leaderboard-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        .leaderboard-table th {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
        }

        .leaderboard-table tr:hover {
            background: #f8f9fa;
        }

        .connect-section {
            background: linear-gradient(45deg, #fa709a 0%, #fee140 100%);
        }

        .connect-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .connect-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            color: white;
            transition: all 0.3s ease;
        }

        .connect-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        .join-community {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            text-align: center;
        }

        .join-community-content {
            max-width: 600px;
            margin: 0 auto;
            color: white;
        }

        .join-community .btn {
            margin-top: 2rem;
            font-size: 1.2rem;
        }

        @media (max-width: 768px) {
            .forums-grid, .connect-grid {
                grid-template-columns: 1fr;
            }

            .events-grid, .spotlight-grid {
                grid-template-columns: 1fr;
            }

            .leaderboard-table {
                font-size: 0.9rem;
            }
        }
 