@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

/* Основные стили */
        body { 
            font-family: 'Montserrat', Arial, sans-serif; 
            color: #fff; 
            padding: 20px;
            margin: 0;background: #201c20
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;padding: 40px 0 0 0;min-height: 800px
        }
        
        h1, h2, h3, p { 
            color: #fff; 
            margin-bottom: 20px;
        }
        
        h3 { 
            margin-top: 0; 
            color: #fff !important;
        }
        
        /* Стили колеса */
.wheel-container {
    width: 700px; /* Было 600px */
    height: 700px; /* Было 600px */
    margin: 0 auto 40px;
    position: relative;
}
        
        #wheel {
            width: 100%;
            height: 100%;
            display: block;
        }

/* Добавьте это в конец файла */
#wheel {
    cursor: pointer;
}

.value-display {
    position: absolute;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    pointer-events: none;
    z-index: 20;
    transform: translate(-50%, -50%);
}
        
        .category-label {
            position: absolute;
            width: 110px;
            display: flex;
            flex-direction: column;
            align-items: center;
            pointer-events: none;
            z-index: 10;
        }
        
        .category-icon {
            width: 36px;
            height: 36px;
            margin-bottom: 5px;
        }
        
        .category-name {
            font-size: 14px;
            text-align: center;
            padding: 2px 0;
            width: 100%;
            word-wrap: break-word;
            color: #fff;
        }
        
        /* Стили рекомендаций */
        .recommendations {
            width: 100%;
            margin: 80px auto 0;
            font-family: 'Montserrat', sans-serif;
        }
        
        .recommendation-text {
            color: #fff;
        }
        
        .recommendation-text ul {
            padding: 0 0 0 15px;
            margin: 0;
        }
        
        .recommendation-text ul li {
            margin: 0 0 10px 0;
        }
        
        .category {
            margin-bottom: 20px;
            padding: 18px;
            border-radius: 10px;
            background-image: linear-gradient(0.25turn, rgba(255,0,184,0.3) 0%, rgba(166,57,255,0.3) 100%);
        }
        
        #results-container {
            margin-bottom: 30px;
        }
        
        .result-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        
        .result-category {
            font-weight: bold;
            color: #fff;
        }
        
        .result-value {
            font-weight: bold;
            color: #fff;
        }
        
        #recommendations-spacer {
            width: 100%;
            background: transparent;
            min-height: 0;
            transition: min-height 0.3s ease;
        }
        
        #recommendations-content {
            transition: all 0.3s ease;
            opacity: 1;
        }
        
/* Адаптивность */
@media (max-width: 1024px) {
    .wheel-container {
        width: 600px; /* Было 500px */
        height: 600px; /* Было 500px */
    }
    .container {min-height: 400px}
}

@media (max-width: 768px) {
    .wheel-container {
        width: 500px; /* Было 400px */
        height: 500px; /* Было 400px */
    }
    .category-name { 
        display: none;
    }
}

@media (max-width: 600px) { /* Новый breakpoint вместо 480px */
    .wheel-container {
        width: 400px; /* Было 300px */
        height: 400px; /* Было 300px */
    }
    .recommendations { 
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .wheel-container {
        width: 350px;
        height: 350px;
    }
}
    