        .psr-container {
            box-sizing: border-box;
            max-width: 1300px; /* Увеличен на 20% */
            width: 100%;
          padding: 30px; 
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
            border-radius: 30px;
            box-shadow: 0 5px 6px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
          /*  border: 1px solid rgba(113, 29, 225, 0.1);*/
            margin: 0 auto;
            font-family: 'Shantell Sans', cursive;
        }
        
        /* Фоновые элементы */
        .psr-container::before,
        .psr-container::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            z-index: 0;
            animation: floatElement 12s ease-in-out infinite;
        }
        
        .psr-container::before {
            top: -80px;
            right: -80px;
            width: 250px;
            height: 250px;
            background: linear-gradient(0.291turn, rgba(163, 109, 235, 0.15) 0%, rgba(113, 29, 225, 0.15) 100%);
        }
        
        .psr-container::after {
            bottom: -100px;
            left: -80px;
            width: 300px;
            height: 300px;
            background: linear-gradient(0.291turn, rgba(17, 100, 173, 0.15) 0%, rgba(29, 134, 226, 0.15) 100%);
        }
        
        @keyframes floatElement {
            0% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(15px, -20px) rotate(5deg); }
            50% { transform: translate(0, -30px) rotate(0deg); }
            75% { transform: translate(-15px, -20px) rotate(-5deg); }
            100% { transform: translate(0, 0) rotate(0deg); }
        }
        
        /* Заголовок */
        .psr-title {
            font-size: 26px;
            font-weight: 700;
            color: #1d1d5e;
            margin: 0 0 10px;
            padding: 0 15px;
            text-align: center;
            line-height: 1.5;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            position: relative;
            z-index: 2;
            text-transform: uppercase;
        }
        
        /* Описание */
        .psr-description {
            font-size: 16px;
            color: #444;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 10px;
            line-height: 1.5;
            background: rgba(255, 255, 255, 0.7);
            padding: 8px;
            border-radius: 30px;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
            position: relative;
            z-index: 2;
        }
        
        /* Изменено: .highlight → .psr-highlight */
        .psr-description span.psr-highlight {
            font-weight: 700;
            color: #711de1;
            display: inline-block;
            animation: colorPulse 3s infinite ease-in-out;
        }
        
        /* Карточки с функциями */
        .psr-features {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }
        
        .psr-feature {
            background: white;
            border-radius: 30px;
            padding: 20px 10px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.5s ease;
            text-decoration: none;
            color: inherit;
            display: block;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }
        
        .psr-feature:nth-child(1) { animation-delay: 0.1s; }
        .psr-feature:nth-child(2) { animation-delay: 0.2s; }
        .psr-feature:nth-child(3) { animation-delay: 0.3s; }
        .psr-feature:nth-child(4) { animation-delay: 0.4s; }
        
        @keyframes fadeInUp {
            to { opacity: 1; transform: translateY(0); }
        }
        
        .psr-feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 4px 10px rgba(113, 29, 225, 0.15);
        }
        
        .psr-feature i {
            font-size: 1.4rem;
            color: #711de1;
            margin-bottom: 10px;
            transition: all 0.5s ease;
        }
        
        .psr-feature:hover i {
            transform: scale(1.1);
            color: #1d86e2;
        }
        
        .psr-feature h3 {
            color: #1d1d5e;
            margin-bottom: 10px;
            font-size: 1rem;
            font-weight: 500;
        }
        
        .psr-feature p {
            color: #666;
            font-size: 1rem;
            margin: 0;
            font-weight: 400;
        }
        
        /* Контейнер для кнопок */
        .psr-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 10px;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }
        
        /* Единый стиль для всех кнопок */
        .psr-btn {
            padding: 14px 20px;
            border: none;
            border-radius: 30px;
            font-family: 'Shantell Sans', cursive;
            font-weight: 500;
            font-size: 16px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            z-index: 1;
            min-width: 200px;
            transition: all 0.3s ease;
        }
        
        .psr-btn-text {
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            font-weight: 500;
            position: relative;
            z-index: 2;
            transition: transform 0.3s ease;
        }
        
        /* Фон для кнопок */
        .psr-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: inherit;
            z-index: -1;
            transition: opacity 0.5s ease;
            opacity: 1;
        }
        
        /* Новый фон при наведении */
        .psr-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        /* Анимация световой полосы */
        .psr-btn .light-stripe {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: all 0.6s ease;
            z-index: 0;
        }
        
        /* Стили для конкретных кнопок */
        .psr-btn-stay {
            background: linear-gradient(0.291turn, rgba(163, 109, 235, 1) 0%, rgba(113, 29, 225, 1) 100%);
        }
        
        .psr-btn-stay::after {
            background: linear-gradient(0.291turn, rgba(114, 36, 218, 1) 0%, rgba(18, 101, 174, 1) 100%);
        }
        
        .psr-btn-know {
            background: linear-gradient(0.291turn, rgba(17, 100, 173, 1) 0%, rgba(29, 134, 226, 1) 100%);
            animation: btnFloat 3s ease-in-out infinite, glow 2s ease-in-out infinite;
        }
        
        .psr-btn-know::after {
            background: linear-gradient(0.291turn, rgba(114, 36, 218, 1) 0%, rgba(18, 101, 174, 1) 100%);
        }
        
        /* Анимации при наведении для всех кнопок */
        .psr-btn:hover::after {
            opacity: 1;
        }
        
        .psr-btn:hover .light-stripe {
            left: 100%;
        }
        
        .psr-btn:hover .psr-btn-text {
            transform: translateY(-2px);
        }
        
        .psr-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(113, 29, 225, 0.4);
        }
        
        /* Секция пароля */
        .psr-password-section {
            background: linear-gradient(135deg, #1e3c72, #2a5298, #3a6fd0);
            background-size: 300% 300%;
            border-radius: 30px;
            padding: 20px;
            text-align: center;
            margin: 0 auto;
            max-width: 715px; /* Увеличен на 10% */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: gradientAnimation 10s ease infinite;
            display: none;
            opacity: 0;
            height: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
            z-index: 2;
        }
        
        .psr-password-section.show {
            display: block;
            opacity: 1;
            height: auto;
            transform: translateY(0);
            margin-bottom: 30px;
        }
        
        @keyframes gradientAnimation {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .psr-password-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 80%);
            z-index: 1;
        }
        
        .psr-password-title {
            color: #fff;
            margin-bottom: 22px;
              font-size: 20px;
            position: relative;
            z-index: 2;
            font-weight: 400; /* Изменена насыщенность */
            text-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }
        
        .psr-input-group {
            display: flex;
            max-width: 100%;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.5s ease;
            max-width: 500px;
        }
        
        .psr-input-group:focus-within {
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
            transform: scale(1.02);
        }
        
        .psr-password-input {
            flex: 1;
            padding: 16px 65px 16px 25px;
            border: none;
            font-family: 'Shantell Sans', cursive;
            font-size: 1.05rem;
            outline: none;
            transition: all 0.5s ease;
            background: rgba(255, 255, 255, 0.15);
            color: white;
            width: 100%;
        }
        
        .psr-password-input:disabled {
            background: rgba(0, 0, 0, 0.1);
            opacity: 0.7;
            cursor: not-allowed;
        }
        
        .psr-password-input:focus {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .psr-password-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .psr-btn-submit {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: 60px;
            background: rgba(29, 134, 226, 0.7);
            border: none;
            color: white;
            cursor: pointer;
            transition: all 0.5s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3;
        }
        
        .psr-btn-submit:hover:not(:disabled) {
            background: rgba(41, 152, 255, 0.9);
        }
        
        .psr-btn-submit:disabled {
            background: rgba(100, 100, 100, 0.7);
            cursor: not-allowed;
        }
        
        .psr-btn-submit i {
            font-size: 1.3rem;
            transition: all 0.4s ease;
        }
        
        .psr-btn-submit.success {
            background: rgba(46, 204, 113, 0.9) !important;
        }
        
        /* Анимация галочки */
        @keyframes checkmark {
            0% { transform: scale(0); opacity: 0; }
            50% { transform: scale(1.2); opacity: 1; }
            100% { transform: scale(1); opacity: 1; }
        }
        
        /* Сообщение об успехе */
        .psr-success-message {
            background: linear-gradient(135deg, #1e3c72, #2a5298, #3a6fd0);
            background-size: 300% 300%;
            border-radius: 30px;
            padding: 30px;
            text-align: center;
            margin: 0 auto;
            max-width: 715px; /* Увеличен на 10% */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: gradientAnimation 10s ease infinite;
            display: none;
            opacity: 0;
            height: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
            z-index: 2;
        }
        
        .psr-success-message.show {
            display: block;
            opacity: 1;
            height: auto;
            transform: translateY(0);
            margin-top: 20px;
            margin-bottom: 10px;
            animation: pulseSuccess 2s ease-in-out;
        }
        
        @keyframes pulseSuccess {
            0% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-5px) scale(1.02); }
            100% { transform: translateY(0) scale(1); }
        }
        
        .psr-success-message::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 80%);
            z-index: 1;
        }
        
        .psr-success-title {
            color: #fff;
            margin-bottom: 25px;
            font-size: 20px;
            position: relative;
            z-index: 2;
            font-weight: 400; /* Изменена насыщенность */
            text-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }
        
        /* Кнопка "Присоединиться" */
        .psr-btn-join {
            padding: 18px 35px;
            background: linear-gradient(0.291turn, rgba(163, 109, 235, 1) 0%, rgba(113, 29, 225, 1) 100%);
            border: none;
            border-radius: 30px;
            font-family: 'Shantell Sans', cursive;
            font-weight: 500;
            font-size: 1.05rem; /* Уменьшен на 2px */
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 2;
            overflow: hidden;
        }
        
        .psr-btn-join::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(0.291turn, rgba(114, 36, 218, 1) 0%, rgba(18, 101, 174, 1) 100%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .psr-btn-join:hover::after {
            opacity: 1;
        }
        
        .psr-btn-join-text {
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            font-weight: 500;
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }
        
        .psr-btn-join:hover .psr-btn-join-text {
            transform: translateY(-2px);
        }
        
        .psr-btn-join .light-stripe {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: all 0.6s ease;
            z-index: 0;
        }
        
        .psr-btn-join:hover .light-stripe {
            left: 100%;
        }
        
        /* Анимации */
        @keyframes btnFloat {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
            100% { transform: translateY(0px); }
        }
        
        @keyframes glow {
            0% { box-shadow: 0 0 5px rgba(29, 134, 226, 0.5); }
            50% { box-shadow: 0 0 20px rgba(29, 134, 226, 0.8); }
            100% { box-shadow: 0 0 5px rgba(29, 134, 226, 0.5); }
        }
        
        /* Адаптивный дизайн */
        
     
        @media (max-width: 980px) {
            .psr-container {
                border-radius: 0; /* Убрано закругление */
            }
            
            .psr-btn,
            .psr-btn-join {
                font-size: 0.95rem; /* Уменьшено на 4px */
            }
        }
        
        @media (max-width: 900px) {
            .psr-container {
                padding: 35px;
            }
            
            .psr-title {
                font-size: 2.1rem;
            }
            
            .psr-description {
                font-size: 1.15rem;
                padding: 22px;
            }
            
            .psr-features {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .psr-container {
                padding: 30px;
            }
            
            .psr-title {
                font-size: 1.9rem;
                margin-bottom: 20px;
            }
            
            .psr-description {
                font-size: 1.1rem;
                padding: 20px;
                margin-bottom: 30px;
            }
            
            .psr-features {
                gap: 20px;
                margin-bottom: 35px;
            }
            
            .psr-feature {
                padding: 20px;
            }
            
            .psr-buttons {
                gap: 20px;
                margin-bottom: 30px;
            }
            
            .psr-btn {
                padding: 16px 30px;
                min-width: 220px;
            }
            
            .psr-password-section,
            .psr-success-message {
                padding: 25px;
            }
        }
        
        @media (max-width: 600px) {
            .psr-container {
                padding: 25px 20px;
            }
            
            .psr-title {
                font-size: 1.7rem;
            }
            
            .psr-description {
                font-size: 1rem;
                padding: 18px;
            }
            
            .psr-features {
                grid-template-columns: 1fr;
            }
            
            .psr-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .psr-btn {
                width: 100%;
                max-width: 300px;
            }
            
            .psr-password-section,
            .psr-success-message {
                padding: 20px;
            }
            
            .psr-password-title,
            .psr-success-title {
                font-size: 1.3rem;
            }
            
            .psr-password-input {
                padding: 14px 60px 14px 20px;
                font-size: 1rem;
            }
            
            .psr-btn-submit {
                width: 55px;
            }
        }
        
        @media (max-width: 480px) {
            .psr-title {
                font-size: 1.5rem;
            }
            
            .psr-description {
                font-size: 0.95rem;
            }
            
            .psr-btn {
                padding: 14px 25px;
            }
        }