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

        body {
            background: #000;
            color: #fff;
            font-family: 'Helvetica Neue', Arial, sans-serif;
            overflow-x: hidden;
            cursor: none;
        }

        .custom-cursor {
            position: fixed;
            width: 24px;
            height: 24px;
            border: 3px solid #fff;
            border-radius: 50%;
            pointer-events: none;
            z-index: 10000;
            transform: translate(-50%, -50%);
            background: rgba(255, 0, 102, 0.2);
            box-shadow:
                0 0 20px rgba(255, 0, 102, 0.6),
                inset 0 0 20px rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(2px);
            will-change: transform;
        }

        .custom-cursor::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 6px;
            height: 6px;
            background: #ff0066;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 10px #ff0066;
        }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            position: relative;
        }

        .hero-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,0,102,0.3) 0%, transparent 70%);
            filter: blur(100px);
            pointer-events: none;
        }

        .hero h1 {
            font-size: clamp(60px, 12vw, 200px);
            font-weight: 900;
            margin: 0;
            letter-spacing: -0.06em;
            line-height: 0.8;
            text-align: center;
            text-transform: uppercase;
            text-shadow: 0 0 30px rgba(255,0,102,0.5);
        }

        .hero .outline {
            color: transparent;
            -webkit-text-stroke: 3px #ff0066;
            text-shadow: 0 0 50px rgba(255,0,102,0.8), 0 0 100px rgba(255,0,102,0.4);
            filter: drop-shadow(0 0 20px rgba(255,0,102,0.6));
        }

        .section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }

        .content {
            max-width: 900px;
            width: 100%;
        }

        .large-content {
            max-width: 1000px;
            width: 100%;
        }

        .section h2, .section h3 {
            font-weight: 900;
            line-height: 0.9;
            letter-spacing: -0.03em;
            margin-bottom: 60px;
            text-transform: lowercase;
        }

        .section h2 {
            font-size: clamp(40px, 8vw, 120px);
        }

        .section h3 {
            font-size: clamp(50px, 10vw, 140px);
        }

        .section p {
            line-height: 1.5;
            font-weight: 300;
            margin-bottom: 30px;
        }

        .large-text {
            font-size: clamp(18px, 2.2vw, 28px);
            opacity: 0.8;
        }

        .medium-text {
            font-size: clamp(16px, 2vw, 24px);
            opacity: 0.6;
        }

        .players h3 {
            font-size: clamp(60px, 12vw, 180px);
            margin-bottom: 40px;
        }

        .definition {
            position: relative;
        }

        .definition-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            height: 80%;
            background: linear-gradient(45deg, rgba(255,0,102,0.1), rgba(136,0,255,0.1));
            border-radius: 50%;
            filter: blur(150px);
        }

        .definition .content {
            text-align: center;
            position: relative;
        }

        .chapters {
            max-width: 1200px;
            width: 100%;
        }

        .chapters h3 {
            font-size: clamp(30px, 6vw, 80px);
            margin-bottom: 80px;
        }

        .chapter-grid {
            display: grid;
            gap: 30px;
        }

        .chapter-item {
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding: 30px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .chapter-item:hover {
            padding-left: 20px;
            border-color: var(--chapter-color, #ff0066);
        }

        .chapter-number {
            font-size: clamp(12px, 1.5vw, 16px);
            opacity: 0.5;
            margin-bottom: 10px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .chapter-title {
            font-size: clamp(24px, 4vw, 56px);
            font-weight: 900;
            letter-spacing: -0.02em;
            margin-bottom: 10px;
        }

        .chapter-subtitle {
            font-size: clamp(14px, 1.8vw, 20px);
            opacity: 0.6;
            font-weight: 300;
        }

        .footer {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            background: linear-gradient(180deg, #000 0%, #1a0020 100%);
            position: relative;
        }

        .footer-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255,0,102,0.2) 0%, transparent 70%);
            filter: blur(150px);
        }

        .footer h3 {
            font-size: clamp(40px, 8vw, 120px);
            font-weight: 900;
            margin: 0;
            margin-bottom: 60px;
            letter-spacing: -0.03em;
            text-align: center;
            line-height: 0.9;
            position: relative;
        }

        .cta-button {
            background: rgba(0, 0, 0, 0.7);
            color: #ff0066;
            border: 2px solid #ff0066;
            padding: 25px 70px;
            font-size: 18px;
            font-weight: 700;
            font-family: 'Courier New', monospace;
            letter-spacing: 2px;
            cursor: pointer;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
            clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
            backdrop-filter: blur(10px);
        }

        .cta-button:hover {
            background: #ff0066;
            color: #fff;
            transform: scale(1.05) translateY(-5px);
            box-shadow: 0 20px 60px rgba(255,0,102,0.4);
        }

        .progress-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: rgba(255,255,255,0.1);
            z-index: 1000;
        }

        .progress-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #ff0066, #00ccff, #8800ff);
            transition: width 0.1s ease-out;
        }

        /* Hide custom cursor on touch devices */
        @media (hover: none) {
            body {
                cursor: auto;
            }

            .custom-cursor {
                display: none !important;
            }
        }

        /* Mobile-specific hero title adjustments */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: clamp(40px, 10vw, 120px);
                line-height: 0.9;
            }

            .chapter-title {
                font-size: clamp(20px, 6vw, 42px);
            }

            .chapter-subtitle {
                font-size: clamp(14px, 4vw, 18px);
                line-height: 1.4;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: clamp(32px, 12vw, 80px);
                padding: 0 10px;
            }

            .chapter-title {
                font-size: clamp(18px, 7vw, 32px);
            }

            .content {
                padding: 0 20px;
            }

            .large-content {
                padding: 0 20px;
            }
        }