   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #111010 0%, #131212 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .container {
            background: linear-gradient(145deg, #151e29 0%, #2c2c2c 100%);
            border-radius: 20px;
            padding: 40px;
            max-width: 400px;
            width: 100%;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .star {
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 24px;
            height: 24px;
            background: linear-gradient(45deg, #ff6b35, #ff520e);
            clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
        }

        .icon {
            margin: 20px 0;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

        .card-icon {
            width: 40px;
            height: 30px;
            background: linear-gradient(45deg, #ff6b35, #ff8e3c);
            border-radius: 4px;
            position: relative;
        }

        .card-icon::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 8px;
            right: 8px;
            height: 3px;
            background: white;
            border-radius: 1px;
        }

        .card-icon::after {
            content: '';
            position: absolute;
            top: 15px;
            left: 8px;
            right: 8px;
            height: 2px;
            background: white;
            border-radius: 1px;
        }

        .phone-icon {
            width: 30px;
            height: 45px;
            background: #718096;
            border-radius: 6px;
            position: relative;
        }

        .phone-icon::before {
            content: '';
            position: absolute;
            top: 6px;
            left: 4px;
            right: 4px;
            bottom: 8px;
            background: #a0aec0;
            border-radius: 2px;
        }

        .phone-icon::after {
            content: '';
            position: absolute;
            bottom: 3px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 2px;
            background: #a0aec0;
            border-radius: 1px;
        }

        .orbit-dot {
            width: 12px;
            height: 12px;
            background: linear-gradient(45deg, #ff6b35, #ff8e3c);
            border-radius: 50%;
            position: relative;
            margin-left: 20px;
        }

        .orbit-line {
            position: absolute;
            top: 50%;
            left: -35px;
            width: 30px;
            height: 1px;
            border: 1px dashed #718096;
            border-radius: 50%;
            transform: translateY(-50%);
        }

        h1 {
            color: white;
            font-size: 28px;
            font-weight: 600;
            margin: 30px 0 20px 0;
        }

        p {
            color: #a0aec0;
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 30px;
        }

        .rating-container {
            display: flex;
            justify-content: space-between;
            margin: 30px 0;
            gap: 10px;
        }

        .rating-btn {
            width: 50px;
            height: 50px;
            border: 2px solid #4a5568;
            background: transparent;
            border-radius: 50%;
            color: #a0aec0;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .rating-btn:hover {
            border-color: #ff6b35;
            color: #ff6b35;
            transform: scale(1.1);
        }

        .rating-btn.selected {
            background: linear-gradient(45deg, #ff6b35, #ff8e3c);
            border-color: #ff6b35;
            color: white;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(45deg, #ff6b35, #ff8e3c);
            color: rgb(0, 0, 0);
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .thank-you-screen {
            display: none;
        }

        .thank-you-screen.active {
            display: block;
        }

        .rating-screen.hidden {
            display: none;
        }

        .selected-rating {
            color: #ff6b35;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .thank-you-message {
            color: #a0aec0;
            font-size: 16px;
            line-height: 1.6;
        }