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

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #ffeef8 0%, #f3e5f5 50%, #e8f5e8 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            width: 100%;
            text-align: center;
            border: 2px solid rgba(255, 182, 193, 0.3);
            position: relative;
            overflow: hidden;
        }

        .container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 182, 193, 0.1), transparent);
            transform: rotate(45deg);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .content {
            position: relative;
            z-index: 1;
        }

        h1 {
            color: #d81b60;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .subtitle {
            color: #9c27b0;
            font-size: 1.2rem;
            margin-bottom: 30px;
            font-weight: 400;
        }

        .screen {
            display: none;
            animation: fadeIn 0.8s ease-in-out;
        }

        .screen.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #ffb6c1;
            border-radius: 15px;
            font-size: 1.1rem;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 20px;
            outline: none;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.8);
        }

        input:focus {
            border-color: #d81b60;
            box-shadow: 0 0 15px rgba(216, 27, 96, 0.3);
            transform: translateY(-2px);
        }

        .btn {
            background: linear-gradient(135deg, #d81b60, #9c27b0);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            margin: 10px;
            position: relative;
            overflow: hidden;
        }

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

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

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(216, 27, 96, 0.4);
        }

        .question {
            background: rgba(255, 182, 193, 0.1);
            padding: 25px;
            border-radius: 20px;
            margin-bottom: 25px;
            border: 2px solid rgba(255, 182, 193, 0.3);
        }

        .question h3 {
            color: #d81b60;
            font-size: 1.3rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .options {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .option {
            background: white;
            border: 2px solid #ffb6c1;
            border-radius: 15px;
            padding: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            position: relative;
            overflow: hidden;
        }

        .option::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(216, 27, 96, 0.1), transparent);
            transition: left 0.3s;
        }

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

        .option:hover {
            border-color: #d81b60;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(216, 27, 96, 0.2);
        }

        .option.selected {
            background: linear-gradient(135deg, #d81b60, #9c27b0);
            color: white;
            border-color: #d81b60;
            transform: scale(1.02);
        }

        .progress-bar {
            background: rgba(255, 182, 193, 0.3);
            height: 8px;
            border-radius: 20px;
            margin: 20px 0;
            overflow: hidden;
        }

        .progress {
            background: linear-gradient(90deg, #d81b60, #9c27b0);
            height: 100%;
            border-radius: 20px;
            transition: width 0.5s ease;
            position: relative;
        }

        .progress::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
            animation: progressShine 2s infinite;
        }

        @keyframes progressShine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .result-card {
            background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(156, 39, 176, 0.1));
            border-radius: 20px;
            padding: 30px;
            margin: 20px 0;
            border: 2px solid rgba(255, 182, 193, 0.4);
        }

        .score-display {
            font-size: 3rem;
            font-weight: 700;
            color: #d81b60;
            margin: 20px 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .thermometer {
            width: 100px;
            height: 300px;
            background: #f0f0f0;
            border-radius: 50px;
            margin: 20px auto;
            position: relative;
            overflow: hidden;
            border: 3px solid #ffb6c1;
        }

        .thermometer-fill {
            position: absolute;
            bottom: 0;
            width: 100%;
            background: linear-gradient(180deg, #d81b60, #9c27b0);
            border-radius: 50px;
            transition: height 2s ease;
            animation: thermometerPulse 2s infinite alternate;
        }

        @keyframes thermometerPulse {
            0% { box-shadow: 0 0 10px rgba(216, 27, 96, 0.5); }
            100% { box-shadow: 0 0 25px rgba(216, 27, 96, 0.8); }
        }

        .level-badge {
            display: inline-block;
            background: linear-gradient(135deg, #d81b60, #9c27b0);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            margin: 15px 0;
            font-size: 1.1rem;
        }

        .share-card {
            background: white;
            border-radius: 15px;
            padding: 20px;
            margin: 20px 0;
            border: 2px solid #ffb6c1;
            position: relative;
        }

        .ranking {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            padding: 20px;
            margin: 20px 0;
            border: 2px solid #ffb6c1;
        }

        .ranking-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
            margin: 10px 0;
            background: rgba(255, 182, 193, 0.1);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .ranking-item:hover {
            transform: translateX(10px);
            background: rgba(255, 182, 193, 0.2);
        }

        .medal {
            font-size: 1.5rem;
            margin-right: 10px;
        }

        .user-position {
            background: linear-gradient(135deg, #d81b60, #9c27b0);
            color: white;
            font-weight: bold;
        }

        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(216, 27, 96, 0.3);
            border-radius: 50%;
            border-top-color: #d81b60;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .emoji {
            font-size: 1.5rem;
            margin: 0 5px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 20px;
                margin: 10px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .thermometer {
                width: 80px;
                height: 200px;
            }
        }