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

body {
    font-family: 'Open Sans', sans-serif;
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.qz-w {
    width: 95%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.qz-pb {
    background: #1a8754;
    border-radius: 15px;
    height: 20px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.qz-pf {
    height: 100%;
    background: linear-gradient(45deg, #3b996c 25%, transparent 25%, transparent 50%, #28a745 50%, #28a745 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    animation: move 1s linear infinite;
    transition: width 0.5s ease;
    border-radius: 15px;
    position: relative;
}

.qz-pt {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

@keyframes move {
    0% { background-position: 0 0; }
    100% { background-position: 20px 0; }
}

.qz-c {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 300px;
}

.qz-t {
    font-size: 22px;
    font-weight: bold;
    color: #232629;
    margin-bottom: 35px;
    line-height: 1.4;
}

.qz-q {
    background: linear-gradient(135deg, #4c63d2, #5a67d8);
    color: white;
    font-size: 26px;
    font-weight: 700;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 35px;
    line-height: 1.3;
    box-shadow: 0 4px 15px rgba(76, 99, 210, 0.3);
}

.qz-o {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.qz-b {
    background: #d2d4d5;
    border: 3px solid #8b8e91;
    padding: 20px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qz-b:hover {
    background: #007bff;
    color: white;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.qz-l {
    display: none;
    text-align: center;
    padding: 40px;
}

.qz-ls {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.qz-lt {
    font-size: 20px;
    color: #6c757d;
    font-weight: 600;
}

.qz-f {
    display: none;
}

.qz-ft {
    font-size: 32px;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 25px;
}

.qz-fm {
    font-size: 21px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.5;
}

.qz-fb {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 200px;
    margin: 10px;
}

.qz-fb:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40,167,69,0.4);
    color: white;
    text-decoration: none;
}

.qz-fb.no {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.qz-fb.no:hover {
    box-shadow: 0 8px 25px rgba(220,53,69,0.4);
}

.qz-s {
    display: none;
}

.qz-s:first-child {
    display: block;
}

.mt-3 {
    margin-top: 1rem;
}

.qz-disc {
    font-size: 12px;
    color: #97a5b1;
    margin-top: 20px;
    line-height: 1.4;
    text-align: left;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.qz-disc p {
    margin-bottom: 15px;
}

.qz-disc a {
    color: #3366ff;
    text-decoration: none;
}

.qz-disc a:hover {
    text-decoration: underline;
}

.elementor-widget-container {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #97a5b1;
}

.video-placeholder {
    width: 100%;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    color: #6c757d;
    font-size: 16px;
}

.video-placeholder img {
    width: 100%;
    max-width: 800px;
}

@media (max-width: 768px) {
    .qz-w {
        padding: 15px;
    }
    
    .qz-c {
        padding: 25px;
        margin-bottom: 100px;
    }
    
    .qz-t {
        font-size: 20px;
    }
    
    .qz-q {
        font-size: 22px;
        padding: 20px;
    }
    
    .qz-b {
        font-size: 18px;
        padding: 18px;
        min-height: 75px;
    }
    
    .qz-ft {
        font-size: 26px;
    }
    
    .qz-fm {
        font-size: 18px;
    }
    
    .qz-fb {
        font-size: 18px;
        padding: 18px 30px;
        min-width: 180px;
        display: block;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .qz-t {
        font-size: 18px;
    }
    
    .qz-q {
        font-size: 20px;
        padding: 18px;
    }
    
    .qz-b {
        font-size: 16px;
        min-height: 80px;
    }
    
    .qz-pb {
        height: 18px;
    }
    
    .qz-pt {
        font-size: 12px;
    }

    .qz-c {
        margin-bottom: 50px;
    }
}