        * {
            margin: 0;
            padding: 0;
            font-family: 'Poppins', sans-serif;
            box-sizing: border-box;
        }

        body {
            background: linear-gradient(135deg, #010758, #490d61);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .container {
            width: 100%;
            max-width: 800px;
            padding: 40px;
            overflow: hidden;
            position: relative;
        }

        .container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            transform: rotate(30deg);
            z-index: -1;
        }

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

        .header h1 {
            font-size: 42px;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .header h1 span {
            color: #ff2963;
            text-shadow: 0 0 10px rgba(255, 41, 99, 0.5);
        }

        .header p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            max-width: 500px;
            margin: 0 auto;
        }

        .input-area {
            margin-bottom: 30px;
        }

        textarea {
            width: 100%;
            height: 200px;
            background: rgba(64, 61, 132, 0.6);
            color: #fff;
            font-size: 13px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            outline: none;
            padding: 20px;
            border-radius: 15px;
            resize: none;
            transition: all 0.3s ease;
        }

        textarea:focus {
            border-color: #ff2963;
            box-shadow: 0 0 15px rgba(255, 41, 99, 0.3);
        }

        textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .controls {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 30px;
        }

        .voice-select {
            position: relative;
        }

        select {
            width: 100%;
            color: #fff;
            background: rgba(64, 61, 132, 0.6);
            height: 50px;
            padding: 0 25px;
            outline: none;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            appearance: none;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        select:focus {
            border-color: #ff2963;
            box-shadow: 0 0 15px rgba(255, 41, 99, 0.3);
        }

        .voice-select i {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.7);
            pointer-events: none;
        }

        .button-group {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn {
            height: 45px;
            padding: 0 20px;
            color: #fff;
            font-size: 15px;
            font-weight: 500;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            flex: 1;
            min-width: 120px;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: linear-gradient(45deg, #ff2963, #ff5e8e);
            box-shadow: 0 4px 12px rgba(255, 41, 99, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(255, 41, 99, 0.4);
        }

        .btn-primary:active {
            transform: translateY(0);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
            transform: translateY(-3px);
        }

        .btn-secondary:active {
            transform: translateY(0);
        }

        .btn-tertiary {
            background: linear-gradient(45deg, #6a11cb, #2575fc);
            box-shadow: 0 4px 12px rgba(37, 117, 252, 0.3);
        }

        .btn-tertiary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(37, 117, 252, 0.4);
        }
        .btn-tertiary:active {
            transform: translateY(0);
        }

        .settings {
            background: rgba(64, 61, 132, 0.3);
            border-radius: 15px;
            padding: 20px;
            margin-top: 20px;
        }

        .settings h3 {
            color: white;
            margin-bottom: 15px;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .slider-container {
            margin-bottom: 15px;
        }

        .slider-container label {
            display: block;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 8px;
            font-size: 14px;
        }

        .slider-wrapper {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .slider-wrapper span {
            color: white;
            min-width: 40px;
            text-align: center;
        }

        input[type="range"] {
            flex: 1;
            -webkit-appearance: none;
            height: 8px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            outline: none;
        }

        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: #ff2963;
            cursor: pointer;
            box-shadow: 0 0 10px rgba(255, 41, 99, 0.5);
        }

        .footer {
            text-align: center;
            margin-top: 30px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        /* Animation */
     /*   @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .pulse {
            animation: pulse 2.5s infinite;
        } */
     
     
        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 30px 20px;
            }
            
            .header h1 {
                font-size: 32px;
            }
            
            .button-group {
                flex-direction: row;
                justify-content: space-between;
            }
            
            .btn {
                flex: 1;
                min-width: 100px;
                font-size: 14px;
                padding: 0 15px;
            }
        }

        @media (max-width: 600px) {
            .button-group {
                flex-wrap: wrap;
            }
            
            .btn {
                flex-basis: calc(50% - 10px);
                min-width: auto;
            }
        }

        @media (max-width: 480px) {
            .header h1 {
                font-size: 28px;
            }
            
            textarea {
                height: 150px;
            }
            
            select, .btn {
                height: 42px;
                font-size: 14px;
            }
            
            .btn {
                flex-basis: 100%;
            }
        }