:root {
    --primary-color: #ff3b6b;
    --secondary-color: #ffffff;
    --accent-color: #ff3b6b;
    --text-color: #ffffff;
    --light-bg: #1a1a1a;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    background-color: #000000;
    color: var(--text-color);
}

.bdsm-test-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.bdsm-test-question {
    background: #1a1a1a;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: none;
    animation: fadeIn 0.5s ease;
}

.bdsm-test-question.active {
    display: block;
}

.bdsm-test-question h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.bdsm-test-options {
    display: grid;
    gap: 15px;
}

.bdsm-test-option {
    background: #2a2a2a;
    padding: 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    color: var(--text-color);
}

.bdsm-test-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 59, 107, 0.2);
}

.bdsm-test-option.selected {
    border-color: var(--primary-color);
    background: rgba(255, 59, 107, 0.1);
}

.bdsm-test-progress {
    width: 100%;
    height: 8px;
    background: #2a2a2a;
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}

.bdsm-test-progress-bar {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.3s ease;
}

.bdsm-test-result {
    display: block;
    text-align: center;
    padding: 30px;
    background: #1a1a1a;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.bdsm-test-result h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.bdsm-test-result h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.bdsm-test-result p {
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: left;
    white-space: pre-line;
    color: var(--text-color);
}

.bdsm-test-recommendations {
    margin-top: 30px;
    padding: 25px;
    background: #2a2a2a;
    border-radius: var(--border-radius);
    text-align: left;
    border-left: 4px solid var(--primary-color);
}

.bdsm-test-recommendations h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bdsm-test-recommendations ul {
    list-style: none;
    padding: 0;
}

.bdsm-test-recommendations li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 1.1rem;
}

.bdsm-test-recommendations li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.2em;
    font-weight: bold;
}

.bdsm-test-recommendations li:hover {
    transform: translateX(5px);
    transition: var(--transition);
}

.bdsm-test-points {
    background: #2a2a2a;
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    text-align: left;
}

.bdsm-test-points p {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.bdsm-test-points ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bdsm-test-points li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: var(--text-color);
}

.bdsm-test-points li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.bdsm-test-find-match {
    margin-top: 30px;
    text-align: center;
}

.bdsm-test-find-match a {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 59, 107, 0.3);
}

.bdsm-test-find-match a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 59, 107, 0.4);
    background: #ff2b5b;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bdsm-test-container {
        padding: 10px;
    }
    
    .bdsm-test-question {
        padding: 15px;
    }
    
    .bdsm-test-option {
        padding: 12px;
    }
    
    .bdsm-test-result {
        padding: 20px;
    }
    
    .bdsm-test-result h2 {
        font-size: 1.5rem;
    }
    
    .bdsm-test-result h3 {
        font-size: 1.3rem;
    }
    
    .bdsm-test-result p {
        font-size: 0.95rem;
    }
    
    .bdsm-test-recommendations li {
        font-size: 0.95rem;
    }
    
    .bdsm-test-points {
        padding: 15px;
    }
    
    .bdsm-test-points li {
        font-size: 0.95rem;
    }
} 