        :root {
            --primary: #7b1818;
            --secondary: #f5f1e6;
            --primary-light: rgba(123, 24, 24, 0.85);
            --primary-lighter: rgba(123, 24, 24, 0.1);
            --primary-dark: #5a1212;
            --secondary-dark: #e5e0d5;
            --dark: #333;
            --light: #fff;
            --transition: all 0.3s ease;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --accent-gradient: linear-gradient(135deg, #7b1818, #5a1212);
            --spacing-section: 4rem 5%;
        }

        .test-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--secondary);
            color: var(--dark);
            line-height: 1.6;
        }

        .test-header {
            text-align: center;
            padding: 3rem 0;
            background: var(--accent-gradient);
            color: var(--light);
            margin-bottom: 3rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .test-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 30px 30px;
            animation: test-float 20s infinite linear;
        }

        @keyframes test-float {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(-30px, -30px) rotate(360deg); }
        }

        .test-header h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            position: relative;
						color: var(--light);
            z-index: 2;
        }

        .test-header p {
            font-size: 1.2rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .test-progress-container {
            background: var(--light);
            border-radius: 50px;
            padding: 5px;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }

        .test-progress-bar {
            background: var(--accent-gradient);
            height: 12px;
            border-radius: 50px;
            width: 0%;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .test-progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: test-shimmer 2s infinite;
        }

        @keyframes test-shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .test-question-card {
            background: var(--light);
            border-radius: 20px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--secondary-dark);
            transform: translateY(20px);
            opacity: 0;
            animation: test-slideIn 0.5s forwards;
            position: relative;
            overflow: hidden;
        }

        .test-question-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            background: var(--accent-gradient);
            transition: var(--transition);
        }

        .test-question-card:hover::before {
            left: 0;
        }

        @keyframes test-slideIn {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .test-question-number {
            color: var(--primary);
            font-weight: bold;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .test-question-text {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            font-weight: 500;
            color: var(--dark);
        }

        .test-options {
            display: grid;
            gap: 0.8rem;
        }

        .test-option {
            display: flex;
            align-items: center;
            padding: 1rem 1.5rem;
            background: var(--secondary);
            border-radius: 15px;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .test-option::before {
            content: '';
            position: absolute;
            top: 50%;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(123,24,24,0.1), transparent);
            transform: translateY(-50%);
            transition: var(--transition);
        }

        .test-option:hover {
            background: var(--primary-lighter);
            border-color: var(--primary-light);
            transform: translateX(8px);
        }

        .test-option:hover::before {
            left: 0;
        }

        .test-option input[type="radio"] {
            margin-right: 1rem;
            width: 20px;
            height: 20px;
            accent-color: var(--primary);
        }

        .test-option label {
            font-size: 1.1rem;
            cursor: pointer;
            flex: 1;
        }

        .test-option.test-selected {
            background: var(--primary-lighter);
            border-color: var(--primary);
            transform: translateX(8px);
        }

        .test-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 3rem;
        }

        .test-btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .test-btn-primary {
            background: var(--accent-gradient);
            color: var(--light);
            box-shadow: var(--shadow);
        }

        .test-btn-secondary {
            background: var(--secondary-dark);
            color: var(--dark);
        }

        .test-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .test-btn:active {
            transform: translateY(-1px);
        }

        .test-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .test-btn:active::before {
            width: 300px;
            height: 300px;
        }

        .test-results {
            text-align: center;
            padding: 3rem;
            background: var(--light);
            border-radius: 20px;
            box-shadow: var(--shadow);
            margin-top: 2rem;
        }

        .test-score {
            font-size: 3rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .test-level {
            font-size: 2rem;
            color: var(--dark);
            margin-bottom: 2rem;
        }

        .test-hidden {
            display: none;
        }

        .test-question-counter {
            text-align: center;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            color: var(--primary);
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .test-container {
                padding: 1rem;
            }
            
            .test-header h1 {
                font-size: 2rem;
            }
            
            .test-question-card {
                padding: 1.5rem;
            }
            
            .test-navigation {
                flex-direction: column;
                gap: 1rem;
            }
            
            .test-btn {
                width: 100%;
            }
        }
