
        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@300;400;500;600&display=swap');
        
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #0f0c29;
            background-image: linear-gradient(315deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
            color: #f0f0f0;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
        }
        
        .bdsm-card {
            background: rgba(26, 26, 46, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(142, 68, 173, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        
        .bdsm-btn {
            background: linear-gradient(45deg, #4a235a, #8e44ad);
            transition: all 0.3s ease;
        }
        
        .bdsm-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(142, 68, 173, 0.4);
        }
        
        .bdsm-btn:active {
            transform: translateY(1px);
        }
        
        .progress-bar {
            height: 12px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #8e44ad, #c0392b);
            border-radius: 10px;
            transition: width 0.5s ease;
        }
        
        .question-card {
            transform: scale(1);
            transition: all 0.3s ease;
        }
        
        .question-card.next {
            transform: translateX(100%);
            opacity: 0;
        }
        
        .question-card.current {
            transform: translateX(0);
            opacity: 1;
        }
        
        .question-card.prev {
            transform: translateX(-100%);
            opacity: 0;
        }
        
        .answer-option {
            transition: all 0.2s ease;
        }
        
        .answer-option:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .answer-option.selected {
            border-color: #d4af37;
            background: rgba(212, 175, 55, 0.1);
        }
        
        .logo-text {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            background: linear-gradient(45deg, #d4af37, #8e44ad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .result-category {
            border-left: 4px solid #8e44ad;
            padding-left: 15px;
            margin-bottom: 20px;
        }
        
        .result-category h4 {
            color: #d4af37;
            margin-bottom: 8px;
        }
        
        .category-bar {
            height: 20px;
            border-radius: 10px;
            margin-bottom: 15px;
            position: relative;
            overflow: hidden;
        }
        
        .category-fill {
            height: 100%;
            border-radius: 10px;
            transition: width 1s ease;
        }
        
        .category-label {
            position: absolute;
            left: 10px;
            top: 2px;
            font-size: 0.8rem;
            color: white;
            z-index: 2;
        }
        
        .recommendation-card {
            transition: all 0.3s ease;
        }
        
        .recommendation-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }
        
        .test-category {
            display: inline-block;
            background: rgba(142, 68, 173, 0.3);
            padding: 4px 12px;
            border-radius: 20px;
            margin-right: 8px;
            margin-bottom: 8px;
            font-size: 0.85rem;
        }
        
        .accordion-header {
            cursor: pointer;
            padding: 15px;
            background: rgba(26, 26, 46, 0.5);
            border-radius: 8px;
            margin-bottom: 10px;
        }
        
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 15px;
        }
        
        .accordion-content.open {
            max-height: 500px;
            padding: 15px;
        }
        
        .accordion-header i {
            transition: transform 0.3s ease;
        }
        
        .accordion-header.active i {
            transform: rotate(180deg);
        }
        
        .article-card {
            transition: all 0.3s ease;
        }
        
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }
        
        .tag {
            display: inline-block;
            background: rgba(142, 68, 173, 0.3);
            padding: 4px 12px;
            border-radius: 20px;
            margin-right: 8px;
            margin-bottom: 8px;
            font-size: 0.85rem;
        }
        
        .tag:hover {
            background: rgba(212, 175, 55, 0.3);
        }
        
        .social-share {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 20px;
        }
        
        .social-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            transition: all 0.3s ease;
        }
        
        .social-btn:hover {
            transform: translateY(-5px);
        }
        
        .facebook { background: #3b5998; }
        .twitter { background: #1da1f2; }
        .reddit { background: #ff4500; }
        .linkedin { background: #0077b5; }
        .whatsapp { background: #25d366; }
        .pinterest { background: #bd081c; }
        
        .share-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .share-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .share-content {
            background: #1a1a2e;
            border-radius: 15px;
            padding: 30px;
            width: 90%;
            max-width: 500px;
            position: relative;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        
        .share-modal.active .share-content {
            transform: translateY(0);
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #aaa;
        }
        
        .copy-link {
            display: flex;
            margin-top: 20px;
        }
        
        .copy-link input {
            flex: 1;
            padding: 12px;
            border-radius: 8px 0 0 8px;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }
        
        .copy-link button {
            padding: 12px 20px;
            background: #8e44ad;
            border: none;
            border-radius: 0 8px 8px 0;
            color: white;
            cursor: pointer;
            font-weight: bold;
        }
        
        .language-selector {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 100;
        }
        
        .language-btn {
            background: rgba(26, 26, 46, 0.8);
            border: 1px solid rgba(142, 68, 173, 0.3);
            color: #f0f0f0;
            padding: 8px 15px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .language-btn:hover {
            background: rgba(142, 68, 173, 0.3);
        }
        
        .flag-icon {
            width: 24px;
            height: 16px;
            margin-right: 8px;
            background-size: cover;
        }
        
        .language-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: rgba(26, 26, 46, 0.95);
            border: 1px solid rgba(142, 68, 173, 0.3);
            border-radius: 8px;
            width: 200px;
            margin-top: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }
        
        .language-dropdown.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .language-option {
            padding: 12px 15px;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .language-option:hover {
            background: rgba(142, 68, 173, 0.2);
        }
        
        .language-option .flag-icon {
            margin-right: 12px;
        }
        
        .navigation-buttons {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }
        
        .prev-btn {
            background: rgba(142, 68, 173, 0.3);
            border: none;
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .prev-btn:hover {
            background: rgba(142, 68, 173, 0.5);
        }
        
        .prev-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }