.elementor-3609 .elementor-element.elementor-element-a80321e{--display:flex;}body.elementor-page-3609 h1.entry-title{margin-top:1px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-5bf4158 *//* ─── DESKTOP / TABLET: keep the 16∶9 ratio hack ─── */
.iframe-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 300px;
  overflow: hidden;
}

/* ─── MOBILE ONLY: kill the ratio hack, force a min-height ─── */
@media (max-width: 767px) {
  .canva-embed {
    min-height: 280px !important;
  }
}

/* make sure the iframe itself always fills it */
.iframe-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}/* End custom CSS */
/* Start custom CSS */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
        
        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #2a2b7c 0%, #4748a0 100%);
            min-height: 100vh;
        }
        
        .quiz-container {
            max-width: 800px;
            background-color: white;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .option-btn {
            transition: all 0.3s ease;
            border: 2px solid #e5e7eb;
        }
        
        .option-btn:hover {
            border-color: #2a2b7c;
            background-color: #F5F7FF;
            transform: translateY(-2px);
        }
        
        .option-btn.selected {
            border-color: #2a2b7c;
            background-color: #F5F7FF;
        }
        
        .progress-bar {
            height: 10px;
            background-color: #e5e7eb;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .progress {
            height: 100%;
            background: linear-gradient(90deg, #2a2b7c, #4748a0);
            border-radius: 5px;
            transition: width 0.5s ease;
        }
        
        .result-card {
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .character-icon {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            background-color: #F5F7FF;
            overflow: hidden;
            transition: all 0.5s ease;
        }
        
        .character-icon:hover {
            transform: scale(1.05);
        }
        
        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .slide-in {
            animation: slideIn 0.5s ease-out;
        }
        
        @keyframes slideIn {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .btn-primary {
            background: linear-gradient(90deg, #2a2b7c, #4748a0);
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(42, 43, 124, 0.4);
        }
        
        .btn-secondary {
            background: #FF5CAA;
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 92, 170, 0.4);
        }
        
        .dosh-gradient-text {
            background: linear-gradient(90deg, #2a2b7c, #4748a0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
        }
        
        .logo-container {
            max-width: 200px;
            margin: 0 auto;
        }
        
        .share-btn {
            transition: all 0.3s ease;
        }
        
        .share-btn:hover {
            transform: translateY(-2px);
        }
        
        .share-modal {
            background-color: rgba(0, 0, 0, 0.5);
        }
        
        .tooltip {
            position: relative;
            display: inline-block;
        }
        
        .tooltip .tooltiptext {
            visibility: hidden;
            width: 140px;
            background-color: #555;
            color: #fff;
            text-align: center;
            border-radius: 6px;
            padding: 5px;
            position: absolute;
            z-index: 1;
            bottom: 150%;
            left: 50%;
            margin-left: -70px;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .tooltip .tooltiptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #555 transparent transparent transparent;
        }
        
        .tooltip:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
        }
        
        .badge {
            position: relative;
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 0.75rem;
            line-height: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            background: linear-gradient(45deg, #FF5CAA, #FFCC4D);
            color: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .badge-new {
            background: linear-gradient(45deg, #FF5CAA, #FFCC4D);
        }
        
        .badge-popular {
            background: linear-gradient(45deg, #00C2CB, #4748a0);
        }
        
        .confetti {
            position: absolute;
            width: 10px;
            height: 10px;
            background-color: #f00;
            border-radius: 0;
        }
        
        .share-card {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            background: linear-gradient(135deg, #ffffff 0%, #f5f7ff 100%);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .share-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .share-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }
        
        @keyframes shine {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }
        
        .stat-card {
            border-radius: 12px;
            background-color: white;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }
        
        .progress-circle {
            position: relative;
            width: 80px;
            height: 80px;
        }
        
        .progress-circle svg {
            transform: rotate(-90deg);
        }
        
        .progress-circle circle {
            fill: none;
            stroke-width: 8;
            stroke-linecap: round;
        }
        
        .progress-circle .bg {
            stroke: #e5e7eb;
        }
        
        .progress-circle .progress-value {
            stroke: #2a2b7c;
            transition: stroke-dashoffset 0.5s ease;
        }
        
        .progress-circle .text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1rem;
            font-weight: 600;
        }
        
        .personality-trait {
            transition: all 0.3s ease;
        }
        
        .personality-trait:hover {
            transform: translateX(5px);
        }
        
        .name-input {
            transition: all 0.3s ease;
            border: 2px solid #e5e7eb;
            border-radius: 0.5rem;
            padding: 0.75rem 1rem;
            width: 100%;
            font-size: 1rem;
        }
        
        .name-input:focus {
            outline: none;
            border-color: #2a2b7c;
            box-shadow: 0 0 0 3px rgba(42, 43, 124, 0.1);
        }
        
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        .spin-slow {
            animation: spin 20s linear infinite;
        }
        
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .comparison-bar {
            height: 24px;
            border-radius: 12px;
            background-color: #e5e7eb;
            overflow: hidden;
        }
        
        .comparison-value {
            height: 100%;
            background: linear-gradient(90deg, #2a2b7c, #4748a0);
            border-radius: 12px;
            transition: width 1s ease;
        }
        
        .share-btn-success {
            background-color: #10B981;
        }/* End custom CSS */