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

        body {
            font-family: 'Arial', sans-serif;
            background: #000;
            min-height: 100vh;
            overflow: hidden;
        }

        #particleCanvas {
            position: absolute;
            top: 0;
            left: 0;
            background: transparent;
            z-index: 1;
        }

        .title {
            position: fixed;
            top: 80px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 3rem;
            font-weight: bold;
            text-shadow: 0 0 20px rgba(255,255,255,0.5);
            z-index: 1000;
            opacity: 0;
            animation: fadeInTitle 2s ease-out forwards;
            text-align: center;
        }

        @keyframes fadeInTitle {
            to { opacity: 1; }
        }

        .skill-sphere {
            position: absolute;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-weight: bold;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 15px 40px rgba(0,0,0,0.4);
            border: 2px solid rgba(255, 255, 255, 0.9);
            user-select: none;
            z-index: 100;
            backdrop-filter: blur(10px);
            font-size: 12px;
            line-height: 1.2;
        }

        .skill-sphere:hover {
            transform: scale(1.15);
            box-shadow: 0 0 50px rgba(255, 255, 255, 0.9), 0 20px 50px rgba(0,0,0,0.5);
            z-index: 200;
            background: rgba(255, 255, 255, 1);
        }

        .skill-sphere.clicked {
            transform: scale(1.25);
            box-shadow: 0 0 60px rgba(255, 255, 255, 1), 0 25px 60px rgba(0,0,0,0.6);
            border: 3px solid rgba(255, 255, 255, 1);
            z-index: 300;
            background: rgba(255, 255, 255, 1);
        }

        .info-panel {
            position: fixed;
            bottom: -400px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 700px;
            background: rgba(20, 20, 20, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 20px 20px 0 0;
            padding: 30px;
            box-shadow: 0 -10px 30px rgba(255,255,255,0.1);
            transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .info-panel.active {
            bottom: 0;
        }

        .info-panel h2 {
            color: white;
            margin-bottom: 15px;
            font-size: 2rem;
            text-shadow: 0 0 10px rgba(255,255,255,0.3);
        }

        .info-panel p {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .skill-level {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .skill-level span {
            margin-right: 15px;
            font-weight: bold;
            color: white;
        }

        .progress-bar {
            flex: 1;
            height: 10px;
            background: rgba(255,255,255,0.1);
            border-radius: 5px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
            border-radius: 5px;
            transition: width 0.8s ease-out;
            box-shadow: 0 0 10px rgba(255,255,255,0.3);
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 30px;
            cursor: pointer;
            color: #999;
            transition: color 0.3s;
        }

        .close-btn:hover {
            color: white;
        }

        .awards-count {
            position: fixed;
            top: 120px;
            left: 30px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            z-index: 1000;
        }

        @media (max-width: 768px) {
            .title {
            font-size: 2rem;

        }
}
