    <style>
        /* Все стили без изменений, кроме удаления .sector-labels */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .game-container {
            max-width: 1200px;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .game-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .game-title {
            font-size: 48px;
            color: #ff6b6b;
            text-shadow: 3px 3px 0 #ffd93d;
            margin-bottom: 20px;
            animation: titleGlow 2s ease-in-out infinite;
        }

        @keyframes titleGlow {
            0%, 100% { text-shadow: 3px 3px 0 #ffd93d; }
            50% { text-shadow: 6px 6px 0 #ffd93d; }
        }

        .host-section {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-bottom: 40px;
            background: linear-gradient(135deg, #ffd93d 0%, #ff6b6b 100%);
            padding: 20px;
            border-radius: 15px;
            color: white;
        }

        .host-avatar {
            width: 150px;
            height: 150px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            font-size: 60px;
            border: 5px solid #ffd93d;
            animation: hostWave 2s ease-in-out infinite;
        }

        @keyframes hostWave {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(5deg); }
            75% { transform: rotate(-5deg); }
        }

        .host-speech {
            flex: 1;
            background: rgba(255, 255, 255, 0.2);
            padding: 20px;
            border-radius: 15px;
            position: relative;
            font-size: 18px;
        }

        .host-speech::before {
            content: '';
            position: absolute;
            left: -20px;
            top: 50%;
            border: 10px solid transparent;
            border-right-color: rgba(255, 255, 255, 0.2);
            border-left: 0;
            transform: translateY(-50%);
        }

        .host-name {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .game-board {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
        }

        .wheel-section {
            flex: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .wheel-container {
            position: relative;
            width: 300px;
            height: 300px;
            margin-bottom: 20px;
        }

        .wheel {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 10px solid #ffd93d;
            overflow: hidden;
            transition: transform 8s cubic-bezier(0.2, 0.8, 0.3, 1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            background: conic-gradient(#1e3c72, #2a5298, #3a6ea5, #4a7db0, #5a8fbf, #1e3c72, #2a5298, #3a6ea5, #4a7db0, #5a8fbf, #1e3c72, #2a5298);
        }

        .wheel:hover {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .wheel-arrow {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 20px solid transparent;
            border-right: 20px solid transparent;
            border-top: 40px solid #ffd93d;
            z-index: 10;
            filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.3));
        }

        /* Подписи внутри колеса */
        .sector-label {
            position: absolute;
            color: white;
            font-weight: bold;
            text-shadow: 1px 1px 2px black;
            font-size: 16px;            white-space: nowrap;
            pointer-events: none;
        }

        .wheel-controls {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .spin-btn {
            padding: 15px 30px;
            font-size: 18px;
            background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
        }

        .spin-btn:hover:not(:disabled) {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 107, 107, 0.6);
        }

        .spin-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .game-section {
            flex: 3;
        }

        .question-box {
            background: #f0f0f0;
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .question-category {
            color: #ff6b6b;
            font-size: 14px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .question-text {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .word-cells {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 20px 0;
            flex-wrap: wrap;
        }

        .word-cell {
            width: 60px;
            height: 60px;
            border: 2px solid #ccc;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: bold;
            text-transform: uppercase;
            background-color: #f5f5f5;
            color: #333;
            transition: all 0.3s ease;
        }

        .word-cell.open {
            background-color: white;
            border-color: #0066cc;
            color: #0066cc;
            box-shadow: 0 2px 8px rgba(0,102,204,0.2);
        }

        .word-cell.closed {
            background-color: #e0e0e0;
            border-color: #999;
            color: transparent;
        }

        .word-cell.special {
            border: none;
            background: transparent;
            color: #333;
            font-size: 32px;
            width: auto;
            padding: 0 5px;
        }

        .answer-input-area {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .letter-input {
            flex: 1;
            padding: 12px;
            font-size: 16px;
            border: 2px solid #ddd;
            border-radius: 8px;
            outline: none;
            transition: border-color 0.3s;
            text-transform: uppercase;
            max-width: 60px;
            text-align: center;
        }

        .letter-input:focus {
            border-color: #ff6b6b;
        }

        .word-input {
            flex: 3;
            padding: 12px;
            font-size: 16px;
            border: 2px solid #ddd;
            border-radius: 8px;
            outline: none;
            text-transform: uppercase;
        }

        .action-btn {
            padding: 12px 20px;
            background: #4ecdc4;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .action-btn:hover {
            background: #45b7b0;
        }

        .action-btn.secondary {
            background: #ffd93d;
            color: #333;
        }

        .action-btn.secondary:hover {
            background: #f5cc3a;
        }

        .guessed-letters {
            margin-top: 20px;
            padding: 15px;
            background: white;
            border-radius: 8px;
        }

        .guessed-letters span {
            display: inline-block;
            padding: 5px 10px;
            margin: 0 5px 5px 0;
            background: #f0f0f0;
            border-radius: 5px;
            font-weight: bold;
        }

        .players-section {
            margin-top: 30px;
        }

        .players-table {
            display: flex;
            gap: 15px;
        }

        .player-card {
            flex: 1;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .player-card.current {
            transform: scale(1.05);
            box-shadow: 0 0 0 3px #ffd93d;
        }

        .player-name {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .player-score {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            padding: 40px;
            border-radius: 20px;
            max-width: 500px;
            text-align: center;
            animation: modalPop 0.3s ease-out;
        }

        @keyframes modalPop {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .modal-icon {
            font-size: 80px;
            margin-bottom: 20px;
        }

        .modal-title {
            font-size: 32px;
            color: #ff6b6b;
            margin-bottom: 15px;
        }

        .modal-text {
            font-size: 18px;
            margin-bottom: 25px;
            color: #666;
        }

        .modal-btn {
            padding: 15px 40px;
            background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .modal-btn:hover {
            transform: translateY(-3px);
        }

        .notification {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: white;
            padding: 15px 25px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 15px;
            transform: translateX(400px);
            transition: transform 0.3s;
            z-index: 900;
        }

        .notification.show {
            transform: translateX(0);
        }

        .notification-icon {
            font-size: 24px;
        }

        .notification.success .notification-icon {
            color: #4ecdc4;
        }

        .notification.error .notification-icon {
            color: #ff6b6b;
        }

        .notification-message {
            color: #333;
        }

        @media (max-width: 768px) {
            .game-board {
                flex-direction: column;
            }
            .host-section {
                flex-direction: column;
                text-align: center;
            }
            .host-speech::before {
                display: none;
            }
            .players-table {
                flex-direction: column;
            }
        }
    </style>