        .activities-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            
        }

        .activities-main-section {
            padding: 100px 0;
            position: relative;
            line-height: 1.6;
            overflow-x: hidden;
            background: linear-gradient(to bottom, rgba(43, 47, 59), rgb(34, 40, 49));
        }

        .section-title p {
            font-size: 1.2rem;
            color: #94a3b8;
            max-width: 600px;
            margin: 0 auto;
        }

        .activities-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .activity-section {
            opacity: 0;
            transform: translateY(50px);
        }

        .activity-section.animate {
            animation: fadeInUp 0.8s ease forwards;
        }

        .subsection-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 40px;
            color: #06b6d4;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .subsection-title::before {
            content: '';
            width: 4px;
            height: 40px;
            background: linear-gradient(to bottom, #06b6d4, #0891b2);
            border-radius: 2px;
        }

        .activity-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .activity-item {
            background: rgba(30, 41, 59, 0.8);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid rgba(6, 182, 212, 0.2);
            backdrop-filter: blur(10px);
            position: relative;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateX(-30px);
        }

        .activity-item.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .activity-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 0 1px cyan, 0 0 3px cyan, 0 0 5pc cyan, 0 0 10px cyan, 0 0 20px cyan;
            border-color: rgba(6, 182, 212, 0.4);
        }

        .activity-header {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 15px;
        }

        .activity-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #06b6d4, #0891b2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
            box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
        }

        .activity-content {
            flex: 1;
        }

        .activity-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .activity-event {
            color: #06b6d4;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 1rem;
        }

        .activity-year {
            display: inline-block;
            background: rgba(6, 182, 212, 0.1);
            color: #06b6d4;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 600;
            border: 1px solid rgba(6, 182, 212, 0.3);
        }

        .achievement-badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background: linear-gradient(45deg, #f59e0b, #d97706);
            color: white;
            padding: 8px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
            transform: rotate(15deg);
        }

        .achievement-badge.runner-up::before {
            content: '🥉 ';
        }

        .achievement-badge.participation::before {
            content: '🎯 ';
        }

        .organizational-item {
            background: rgba(15, 23, 42, 0.8);
            border: 1px solid rgba(6, 182, 212, 0.3);
        }

        .organizational-item .activity-icon {
            background: linear-gradient(45deg, #0891b2, #0e7490);
        }

        .duration {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-top: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .duration::before {
            content: '📅';
            font-size: 0.9rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 60px;
            margin:15px;
            padding: 40px;
            background: rgba(15, 23, 42, 0.5);
            border-radius: 20px;
            border: 1px solid rgba(6, 182, 212, 0.1);
        }
        .stats-grid:hover {
            box-shadow: 0 0 1px cyan, 0 0 3px cyan, 0 0 5pc cyan, 0 0 10px cyan, 0 0 20px cyan;
        }

        .stat-item {
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
        }

        .stat-item.animate {
            animation: fadeInUp 0.8s ease forwards;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(45deg, #06b6d4, #0891b2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }

        .stat-label {
            color: #94a3b8;
            font-size: 1rem;
            margin-top: 10px;
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #06b6d4;
            border-radius: 50%;
            opacity: 0.3;
            animation: float 10s ease-in-out infinite;
        }

        .floating-element:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
        .floating-element:nth-child(2) { top: 30%; left: 80%; animation-delay: 2s; }
        .floating-element:nth-child(3) { top: 60%; left: 20%; animation-delay: 4s; }
        .floating-element:nth-child(4) { top: 80%; left: 70%; animation-delay: 6s; }
        .floating-element:nth-child(5) { top: 20%; left: 50%; animation-delay: 8s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-25px) rotate(180deg);
            }
        }

        @media (max-width: 768px) {
            .activities-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .subsection-title {
                font-size: 1.5rem;
            }

            .activity-item {
                padding: 20px;
            }

            .activity-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                padding: 30px 20px;
            }

            .stat-number {
                font-size: 2rem;
            }
        }
