
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
            background-size: 200% 200%;
            animation: subtleGradient 20s ease infinite;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            color: #e0e0e0;
        }

        @keyframes subtleGradient {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .container {
            background: rgba(40, 40, 40, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            max-width: 1200px;
            width: 100%;
            transition: transform 0.3s ease;
        }

        .container:hover {
            transform: translateY(-5px);
        }

        .header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .logo-area {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
        }

        .logo-placeholder {
            width: 120px;
            height: 90px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            transition: all 0.3s ease;
            animation: subtlePulse 4s ease-in-out infinite;
        }

        @keyframes subtlePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .company-title {
            font-size: 2.8em;
            font-weight: 300;
            color: #f7fafc;
            letter-spacing: 2px;
            transition: color 0.3s ease;
        }

        .company-title:hover {
            color: #4a5568;
        }

        .subtitle {
            color: #a0a0a0;
            font-size: 1.2em;
            font-weight: 300;
            margin-top: 5px;
        }

        .controls {
            background: rgba(0, 0, 0, 0.3);
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .controls:hover {
            background: rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .section-title {
            font-size: 1.3em;
            font-weight: 500;
            color: #e2e8f0;
            margin-bottom: 20px;
            text-align: center;
        }

        .tabs {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .tab {
            padding: 12px 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(0, 0, 0, 0.3);
            color: #cbd5e0;
        }

        .tab:hover {
            transform: translateY(-2px);
            background: rgba(74, 85, 104, 0.3);
        }

        .tab.active {
            background: linear-gradient(45deg, #4a5568, #2d3748);
            color: #e2e8f0;
            border-color: #4a5568;
            transform: scale(1.05);
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .employee-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 15px;
            max-height: 320px;
            overflow-y: auto;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .employee-card {
            background: rgba(0, 0, 0, 0.4);
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .employee-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s ease;
        }

        .employee-card:hover::before {
            left: 100%;
        }

        .employee-card:hover {
            transform: translateY(-5px) scale(1.05);
            border-color: rgba(74, 85, 104, 0.5);
            background: rgba(0, 0, 0, 0.6);
        }

        .employee-card.selected {
            border-color: #4a5568;
            background: linear-gradient(45deg, rgba(74, 85, 104, 0.3), rgba(45, 55, 72, 0.3));
            transform: scale(1.05);
        }

        .employee-photo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 10px;
            border: 3px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .employee-card:hover .employee-photo {
            border-color: #4a5568;
            transform: scale(1.1);
        }

        .employee-name {
            font-size: 12px;
            font-weight: 500;
            color: #e2e8f0;
        }

        .input-group {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        input[type="text"] {
            flex: 1;
            padding: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            font-size: 16px;
            background: rgba(0, 0, 0, 0.4);
            color: #e2e8f0;
            transition: all 0.3s ease;
            min-width: 250px;
        }

        input[type="text"]:focus {
            outline: none;
            border-color: #4a5568;
            background: rgba(0, 0, 0, 0.6);
            transform: scale(1.02);
            box-shadow: 0 0 0 3px rgba(74, 85, 104, 0.1);
        }

        input[type="text"]::placeholder {
            color: #718096;
        }

        .btn {
            padding: 15px 25px;
            border: none;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.6s ease;
            transform: translate(-50%, -50%);
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .flexgrid{
            width: 100%;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .btn-add {
            background: linear-gradient(45deg, #4a5568, #2d3748);
            color: #e2e8f0;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .btn-clear {
            background: rgba(255, 255, 255, 0.1);
            color: #e2e8f0;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-spin {
            background: linear-gradient(45deg, #2d3748, #1a202c);
            color: #e2e8f0;
            width: 100%;
            margin-top: 20px;
            font-size: 18px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: gentlePulse 3s ease-in-out infinite;
        }

        @keyframes gentlePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

        .btn-spin:disabled {
            background: #4a5568;
            cursor: not-allowed;
            transform: none;
            opacity: 0.6;
            animation: none;
        }

        .main-content {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
            flex-wrap: wrap;
            align-items: flex-start;
        }

        .wheel-section {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 300px;
        }

        .wheel-wrapper {
            position: relative;
            margin-bottom: 20px;
        }

        .wheel-pointer {
            position: absolute;
            top: -18px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 18px solid transparent;
            border-right: 18px solid transparent;
            border-top: 35px solid #e2e8f0;
            z-index: 10;
            filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5));
            animation: gentleWiggle 2s ease-in-out infinite;
        }

        @keyframes gentleWiggle {
            0%, 100% { transform: translateX(-50%) rotate(0deg); }
            25% { transform: translateX(-50%) rotate(-2deg); }
            75% { transform: translateX(-50%) rotate(2deg); }
        }

        #wheelCanvas {
            border-radius: 50%;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            transition: transform 0.1s ease;
            border: 4px solid rgba(255, 255, 255, 0.1);
        }

        .participants-section {
            flex: 1;
            min-width: 320px;
        }

        .section-header {
            background: linear-gradient(45deg, rgba(74, 85, 104, 0.3), rgba(45, 55, 72, 0.3));
            color: #e2e8f0;
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 15px;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .participant-item {
            background: rgba(0, 0, 0, 0.3);
            margin: 10px 0;
            padding: 15px;
            border-radius: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .participant-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(74, 85, 104, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .participant-item:hover::before {
            left: 100%;
        }

        .participant-item:hover {
            transform: translateX(8px);
            background: rgba(0, 0, 0, 0.5);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .participant-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .participant-photo {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .participant-item:hover .participant-photo {
            border-color: #4a5568;
            transform: scale(1.1);
        }

        .participant-details {
            display: flex;
            flex-direction: column;
        }

        .participant-name {
            font-weight: 600;
            color: #e2e8f0;
            font-size: 14px;
        }

        .participant-prize {
            font-size: 12px;
            color: #a0a0a0;
            font-style: italic;
        }

        .remove-btn {
            background: rgba(255, 255, 255, 0.1);
            color: #e2e8f0;
            border: none;
            border-radius: 50%;
            width: 28px;
            height: 28px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .remove-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.2) rotate(90deg);
        }

        .prizes-list {
            max-height: 250px;
            overflow-y: auto;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 15px;
            margin-top: 15px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .prize-item {
            background: rgba(0, 0, 0, 0.3);
            padding: 12px 15px;
            border-radius: 8px;
            margin: 8px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .prize-item:hover {
            border-color: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
            background: rgba(0, 0, 0, 0.4);
        }

        .result {
            text-align: center;
            margin-top: 30px;
            padding: 35px;
            background: linear-gradient(45deg, rgba(74, 85, 104, 0.4), rgba(45, 55, 72, 0.4));
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: none;
            animation: resultSlideIn 0.8s ease-out;
        }

        @keyframes resultSlideIn {
            from { 
                opacity: 0; 
                transform: translateY(30px) scale(0.9); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0) scale(1); 
            }
        }

        .result.show {
            display: block;
        }

        .result h2 {
            color: #f7fafc;
            font-size: 2.2em;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .winner-photo {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            display: none;
            animation: photoReveal 1s ease-out;
        }

        @keyframes photoReveal {
            from { transform: scale(0) rotate(-180deg); }
            to { transform: scale(1) rotate(0deg); }
        }

        .winner-photo.show {
            display: block;
        }

        .winner-info {
            font-size: 1.4em;
            color: #e2e8f0;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .winner-prize {
            font-size: 1.6em;
            color: #a1dd15;
            font-weight: 600;
        }

        .empty-state {
            text-align: center;
            color: #718096;
            font-style: italic;
            padding: 30px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 12px;
            margin: 15px 0;
            border: 1px dashed rgba(255, 255, 255, 0.1);
        }

        /* 🎬 TELA CHEIA DA ROLETA */
        .fullscreen-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            animation: overlayFadeIn 0.5s ease-out;
        }

        @keyframes overlayFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .fullscreen-overlay.show {
            display: flex;
        }

        .fullscreen-content {
            text-align: center;
            position: relative;
        }

        .fullscreen-wheel-wrapper {
            position: relative;
            margin-bottom: 30px;
        }

        .fullscreen-pointer {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 30px solid transparent;
            border-right: 30px solid transparent;
            border-top: 60px solid #e2e8f0;
            z-index: 10;
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.8));
            animation: dramaticWiggle 1.5s ease-in-out infinite;
        }

        @keyframes dramaticWiggle {
            0%, 100% { transform: translateX(-50%) rotate(0deg) scale(1); }
            25% { transform: translateX(-50%) rotate(-5deg) scale(1.1); }
            75% { transform: translateX(-50%) rotate(5deg) scale(1.1); }
        }

        #fullscreenCanvas {
            border-radius: 50%;
            box-shadow: 0 0 50px rgba(255, 255, 255, 0.3), 0 0 100px rgba(74, 85, 104, 0.5);
            border: 8px solid rgba(255, 255, 255, 0.2);
            animation: wheelGlow 2s ease-in-out infinite;
        }

        @keyframes wheelGlow {
            0%, 100% { box-shadow: 0 0 50px rgba(255, 255, 255, 0.3), 0 0 100px rgba(74, 85, 104, 0.5); }
            50% { box-shadow: 0 0 80px rgba(255, 255, 255, 0.5), 0 0 150px rgba(74, 85, 104, 0.8); }
        }

        .fullscreen-title {
            color: #e2e8f0;
            font-size: 3em;
            font-weight: 300;
            margin-bottom: 20px;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
            animation: titlePulse 2s ease-in-out infinite;
        }

        @keyframes titlePulse {
            0%, 100% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.05); opacity: 1; }
        }

        .close-fullscreen {
            position: absolute;
            top: 30px;
            right: 30px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            color: #e2e8f0;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-fullscreen:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1) rotate(90deg);
        }

        .fullscreen-result {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 50px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            text-align: center;
            display: none;
            animation: resultExplosion 1s ease-out;
            box-shadow: 0 0 100px rgba(255, 255, 255, 0.3);
            z-index: 1001;
        }

        @keyframes resultExplosion {
            0% { 
                opacity: 0; 
                transform: translate(-50%, -50%) scale(0.3) rotate(-180deg);
            }
            50% {
                transform: translate(-50%, -50%) scale(1.2) rotate(0deg);
            }
            100% { 
                opacity: 1; 
                transform: translate(-50%, -50%) scale(1) rotate(0deg);
            }
        }

        .fullscreen-result.show {
            display: block;
        }

        .fullscreen-result h2 {
            font-size: 3.5em;
            color: #f7fafc;
            margin-bottom: 30px;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
        }

        .fullscreen-winner-photo {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 25px;
            border: 6px solid rgba(255, 255, 255, 0.5);
            animation: photoSpectacle 2s ease-out;
            box-shadow: 0 0 50px rgba(255, 255, 255, 0.5);
        }

        @keyframes photoSpectacle {
            0% { transform: scale(0) rotate(-360deg); opacity: 0; }
            50% { transform: scale(1.3) rotate(-180deg); opacity: 0.8; }
            100% { transform: scale(1) rotate(0deg); opacity: 1; }
        }

        .fullscreen-winner-name {
            font-size: 2.5em;
            color: #e2e8f0;
            font-weight: 600;
            margin-bottom: 15px;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
        }

        .fullscreen-winner-prize {
            font-size: 2em;
            color: #e6de05;
            font-weight: 700;
            text-shadow: 0 0 15px rgba(218, 215, 10, 0.8);
        }

        .sound-controls {
            position: absolute;
            top: 30px;
            left: 30px;
            display: flex;
            gap: 10px;
        }

        .sound-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            color: #e2e8f0;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sound-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }

        .sound-btn.muted {
            opacity: 0.5;
            background: rgba(255, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            .main-content { flex-direction: column; }
            .employee-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
            .company-title { font-size: 2.2em; }
            .input-group { flex-direction: column; }
            
            .fullscreen-title { font-size: 2em; }
            .fullscreen-result h2 { font-size: 2.5em; }
            .fullscreen-winner-name { font-size: 1.8em; }
            .fullscreen-winner-prize { font-size: 1.4em; }
            .close-fullscreen { top: 20px; right: 20px; width: 50px; height: 50px; }
        }
 