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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
            color: #e8e8e8;
            overflow: hidden;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 2rem;
        }

        .wheel-container {
            position: relative;
            width: 600px;
            height: 600px;
            perspective: 1200px;
        }

        .wheel {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .project-card {
            position: absolute;
            width: 600px;
            height: 450px;
            left: 50%;
            top: 50%;
            margin-left: -250px;
            margin-top: -200px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 3rem;
            transform-style: preserve-3d;
            backface-visibility: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
        }

        .project-card.active {
            opacity: 1;
            transform: translateY(0) scale(1);
            z-index: 3;
            pointer-events: auto;
        }

        .project-card.prev {
            opacity: 0.4;
            transform: translateY(-220px) scale(0.75);
            z-index: 1;
            cursor: pointer;
        }

        .project-card.prev:hover {
            opacity: 0.6;
        }

        .project-card.next {
            opacity: 0.4;
            transform: translateY(220px) scale(0.75);
            z-index: 1;
            cursor: pointer;
        }

        .project-card.next:hover {
            opacity: 0.6;
        }

        .project-card.hidden {
            opacity: 0;
            transform: translateY(0) scale(0.5);
            z-index: 0;
        }

        .project-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .project-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: bold;
            color: white;
        }

        .project-title {
            font-size: 2rem;
            font-weight: 600;
            color: #fff;
            margin: 0;
        }

        .project-description {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #b8b8b8;
            margin-bottom: 2rem;
            min-height: 80px;
        }

        .project-meta {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
            color: #9a9a9a;
        }

        .meta-icon {
            width: 20px;
            height: 20px;
        }

        .project-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 1.75rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .project-link:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        .controls {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            z-index: 100;
        }

        .arrow {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #fff;
            font-size: 24px;
        }

        .arrow:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.25);
            transform: scale(1.1);
        }

        .arrow:active {
            transform: scale(0.95);
        }

        .progress-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.75rem;
        }

        .progress-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .progress-dot.active {
            background: rgba(255, 255, 255, 0.8);
            transform: scale(1.3);
        }

        @media (max-width: 768px) {
            .wheel-container {
                width: 90vw;
                height: 90vw;
            }

            .project-card {
                width: 85vw;
                height: auto;
                min-height: 350px;
                padding: 2rem;
                margin-left: calc(-42.5vw);
            }

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

            .controls {
                right: 2%;
            }

            .arrow {
                width: 50px;
                height: 50px;
            }
        }
