 
        
       @media (max-width: 480px) {
    .logo {
        font-size: 1.2rem; /* Уменьшение логотипа */
    }

    .coins {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }

    .coins span {
        font-size: 0.7rem; /* Уменьшение текста в блоке IQRA COINS */
    }

    .intro h1 {
        font-size: 1.2rem; /* Уменьшение заголовка */
        margin-bottom: 1rem;
    }

    .bonus-list ul {
        margin-left: 0;
        padding-left: 1rem; /* Уменьшение отступов списка */
    }

    .bonus-list li {
        font-size: 0.9rem; /* Уменьшение текста списка */
        line-height: 1.3;
    }

    .button {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem; /* Уменьшение размера кнопки */
    }

    .time {
        font-size: 0.8rem;
        margin: 1rem 0; /* Уменьшение отступов */
    }
}

        
        :root {
            --primary: #6C5CE7;
            --secondary: #FF4757;
            --light: #F8F9FD;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        body {
            background-color: var(--light);
            min-height: 100vh;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
        }

        .header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .logo {
            font-size: 2rem;
            color: var(--primary);
            font-weight: bold;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }

        .coins {
            position: fixed;
            top: 1rem;
            right: 1rem;
            background: var(--primary);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(108, 92, 231, 0.2);
        }

        .coin-icon {
            width: 24px;
            height: 24px;
            background: #FFD700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #B7791F;
            font-weight: bold;
            font-size: 14px;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
        }

        .intro {
            background: white;
            padding: 3rem;
            border-radius: 1.5rem;
            box-shadow: 0 4px 20px rgba(108, 92, 231, 0.1);
            text-align: center;
        }

        .intro h1 {
            color: var(--primary);
            margin-bottom: 2rem;
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .intro h1 span {
            color: var(--secondary);
        }

        .bonus-list {
            text-align: left;
            max-width: 500px;
            margin: 0 auto;
            margin-bottom: 2rem;
        }

        .intro ul {
            list-style-type: none;
            margin: 1.5rem 0;
        }

        .intro li {
            margin: 1rem 0;
            padding-left: 2rem;
            position: relative;
            font-size: 1.1rem;
            color: #444;
        }

        .intro li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        .time {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            color: #666;
            margin: 1.5rem 0;
            font-size: 1.1rem;
        }

        .question-container {
            background: white;
            padding: 2.5rem;
            border-radius: 1.5rem;
            box-shadow: 0 4px 20px rgba(108, 92, 231, 0.1);
            display: none;
        }

        .question {
            margin-bottom: 2rem;
            font-size: 1.4rem;
            color: #333;
            font-weight: 600;
        }

        .answers {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .answer {
            padding: 1.2rem;
            border: 2px solid #eee;
            border-radius: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            font-weight: 500;
            background: white;
        }

        .answer:hover {
            border-color: var(--primary);
            background: rgba(108, 92, 231, 0.05);
        }

        .answer.correct {
            background-color: #4CD137;
            color: white;
            border-color: #4CD137;
        }

        .answer.wrong {
            background-color: var(--secondary);
            color: white;
            border-color: var(--secondary);
        }

        .button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 1.2rem 2.5rem;
            border-radius: 2rem;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(108, 92, 231, 0.2);
        }

        .button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
        }

        .loading {
            display: none;
            text-align: center;
            padding: 3rem;
            background: white;
            border-radius: 1.5rem;
            box-shadow: 0 4px 20px rgba(108, 92, 231, 0.1);
        }

        .loading h2 {
            color: var(--primary);
            margin-bottom: 2rem;
            font-size: 1.8rem;
        }

        .progress-bar {
            width: 100%;
            height: 10px;
            background: #eee;
            border-radius: 5px;
            overflow: hidden;
            margin: 1.5rem 0;
        }

        .progress {
            width: 0%;
            height: 100%;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .progress-text {
            margin-top: 1rem;
            font-size: 1.2rem;
            color: var(--primary);
            font-weight: 500;
        }

        .result {
            display: block;
            text-align: center;
            background: white;
            padding: 3rem;
            border-radius: 1.5rem;
            box-shadow: 0 4px 20px rgba(108, 92, 231, 0.1);
        }

        .result h2 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }

        .result .score {
            font-size: 1.8rem;
            color: #333;
            margin: 1.5rem 0;
            font-weight: 600;
        }

        .motivation {
            color: #666;
            font-size: 1.2rem;
            line-height: 1.6;
            margin: 2rem 0;
            padding: 1.5rem;
            background: rgba(108, 92, 231, 0.05);
            border-radius: 1rem;
        }

        @keyframes coinPop {
            0% { transform: scale(0) rotate(0deg); }
            50% { transform: scale(1.2) rotate(180deg); }
            100% { transform: scale(1) rotate(360deg); }
        }

        @keyframes coinFly {
            0% { 
                transform: translate(0, 0) scale(1);
                opacity: 1;
            }
            100% { 
                transform: translate(-50px, -100px) scale(0);
                opacity: 0;
            }
        }

        .coin-animation {
            animation: coinPop 0.5s ease;
        }

        .flying-coin {
            position: fixed;
            z-index: 1001;
            animation: coinFly 1s ease-out forwards;
        }
        
         /* Добавьте эти стили для улучшения интерактивности */
.button {
    position: relative;
    overflow: hidden;
}

.button::after {
    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;
}

.button:active::after {
    width: 200px;
    height: 200px;
}

.answer:active {
    transform: scale(0.98);
}



/* Добавьте эти стили для анимаций */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro, .question-container, .result {
    animation: fadeIn 0.5s ease-out;
}

.answer {
    transition: all 0.3s ease;
}

.answer:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.05);
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.1);
    text-align: center;
    display: none;
}

.form-group {
    margin-bottom: 1.5rem;
}

.t-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 0.8rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.t-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

/* Адаптивность для формы */
@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .t-input {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}


    
        :root {
            --primary: #6C5CE7;
            --secondary: #FF4757;
            --light: #F8F9FD;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        body {
            background-color: var(--light);
            min-height: 100vh;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
        }

        .header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .logo {
            font-size: 2rem;
            color: var(--primary);
            font-weight: bold;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }

        .coins {
            position: fixed;
            top: 1rem;
            right: 1rem;
            background: var(--primary);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(108, 92, 231, 0.2);
        }

        .coin-icon {
            width: 24px;
            height: 24px;
            background: #FFD700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #B7791F;
            font-weight: bold;
            font-size: 14px;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
        }

        .intro {
            background: white;
            padding: 3rem;
            border-radius: 1.5rem;
            box-shadow: 0 4px 20px rgba(108, 92, 231, 0.1);
            text-align: center;
        }

        .intro h1 {
            color: var(--primary);
            margin-bottom: 2rem;
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .intro h1 span {
            color: var(--secondary);
        }

        .bonus-list {
            text-align: left;
            max-width: 500px;
            margin: 0 auto;
            margin-bottom: 2rem;
        }

        .intro ul {
            list-style-type: none;
            margin: 1.5rem 0;
        }

        .intro li {
            margin: 1rem 0;
            padding-left: 2rem;
            position: relative;
            font-size: 1.1rem;
            color: #444;
        }

        .intro li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        .time {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            color: #666;
            margin: 1.5rem 0;
            font-size: 1.1rem;
        }

        .question-container {
            background: white;
            padding: 2.5rem;
            border-radius: 1.5rem;
            box-shadow: 0 4px 20px rgba(108, 92, 231, 0.1);
            display: none;
        }

        .question {
            margin-bottom: 2rem;
            font-size: 1.4rem;
            color: #333;
            font-weight: 600;
        }

        .answers {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .answer {
            padding: 1.2rem;
            border: 2px solid #eee;
            border-radius: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            font-weight: 500;
            background: white;
        }

        .answer:hover {
            border-color: var(--primary);
            background: rgba(108, 92, 231, 0.05);
        }

        .answer.correct {
            background-color: #4CD137;
            color: white;
            border-color: #4CD137;
        }

        .answer.wrong {
            background-color: var(--secondary);
            color: white;
            border-color: var(--secondary);
        }

        .button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 1.2rem 2.5rem;
            border-radius: 2rem;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(108, 92, 231, 0.2);
        }

        .button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
        }

        .loading {
            display: none;
            text-align: center;
            padding: 3rem;
            background: white;
            border-radius: 1.5rem;
            box-shadow: 0 4px 20px rgba(108, 92, 231, 0.1);
        }

        .loading h2 {
            color: var(--primary);
            margin-bottom: 2rem;
            font-size: 1.8rem;
        }

        .progress-bar {
            width: 100%;
            height: 10px;
            background: #eee;
            border-radius: 5px;
            overflow: hidden;
            margin: 1.5rem 0;
        }

        .progress {
            width: 0%;
            height: 100%;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .progress-text {
            margin-top: 1rem;
            font-size: 1.2rem;
            color: var(--primary);
            font-weight: 500;
        }

        .result {
            display: none;
            text-align: center;
            background: white;
            padding: 3rem;
            border-radius: 1.5rem;
            box-shadow: 0 4px 20px rgba(108, 92, 231, 0.1);
        }

        .result h2 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }

        .result .score {
            font-size: 1.8rem;
            color: #333;
            margin: 1.5rem 0;
            font-weight: 600;
        }

        .motivation {
            color: #666;
            font-size: 1.2rem;
            line-height: 1.6;
            margin: 2rem 0;
            padding: 1.5rem;
            background: rgba(108, 92, 231, 0.05);
            border-radius: 1rem;
        }

        @keyframes coinPop {
            0% { transform: scale(0) rotate(0deg); }
            50% { transform: scale(1.2) rotate(180deg); }
            100% { transform: scale(1) rotate(360deg); }
        }

        @keyframes coinFly {
            0% { 
                transform: translate(0, 0) scale(1);
                opacity: 1;
            }
            100% { 
                transform: translate(-50px, -100px) scale(0);
                opacity: 0;
            }
        }

        .coin-animation {
            animation: coinPop 0.5s ease;
        }

        .flying-coin {
            position: fixed;
            z-index: 1001;
            animation: coinFly 1s ease-out forwards;
        }
        
         /* Добавьте эти стили для улучшения интерактивности */
.button {
    position: relative;
    overflow: hidden;
}

.button::after {
    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;
}

.button:active::after {
    width: 200px;
    height: 200px;
}

.answer:active {
    transform: scale(0.98);
}



/* Добавьте эти стили для анимаций */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro, .question-container, .result {
    animation: fadeIn 0.5s ease-out;
}

.answer {
    transition: all 0.3s ease;
}

.answer:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.05);
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.1);
    text-align: center;
    display: none;
}

.form-group {
    margin-bottom: 1.5rem;
}

.t-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 0.8rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.t-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

/* Адаптивность для формы */
@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .t-input {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem; /* Уменьшение логотипа */
    }

    .coins {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }

    .coins span {
        font-size: 0.7rem; /* Уменьшение текста в блоке IQRA COINS */
    }

    .intro h1 {
        font-size: 1.2rem; /* Уменьшение заголовка */
        margin-bottom: 1rem;
    }

    .bonus-list ul {
        margin-left: 0;
        padding-left: 1rem; /* Уменьшение отступов списка */
    }

    .bonus-list li {
        font-size: 0.9rem; /* Уменьшение текста списка */
        line-height: 1.3;
    }

    .button {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem; /* Уменьшение размера кнопки */
    }

    .time {
        font-size: 0.8rem;
        margin: 1rem 0; /* Уменьшение отступов */
    }
}


    