/* Блоки официального сайта и зеркала */
.vavada-info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
    padding: 0 20px;
}

.info-block {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.info-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 140, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.info-block:hover::before {
    opacity: 1;
}

.info-block:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

.info-block-icon {
    font-size: 60px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.info-block-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.info-block-description {
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.info-block-features {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.feature-icon {
    color: #4caf50;
    font-weight: bold;
    margin-right: 10px;
    font-size: 18px;
}

.feature-text {
    color: #e0e0e0;
    font-size: 15px;
}

.info-block-button {
    display: block;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #000;
    text-align: center;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.info-block-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.info-block-button:hover::before {
    width: 300px;
    height: 300px;
}

.info-block-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

/* Блок входа */
.login-block {
    margin: 50px 0;
    padding: 0 20px;
}

.login-container {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #1a1a2e 100%);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.login-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.login-title {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.login-subtitle {
    font-size: 18px;
    color: #b0b0b0;
}

.login-content {
    position: relative;
    z-index: 1;
}

.login-form-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.login-benefits h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: #e0e0e0;
    font-size: 16px;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(10px);
}

.benefit-icon {
    margin-right: 12px;
    font-size: 24px;
}

.login-action {
    text-align: center;
}

.login-button-main {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #000;
    padding: 20px 60px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.login-button-main::after {
    content: '→';
    position: absolute;
    right: 30px;
    opacity: 0;
    transition: all 0.3s ease;
}

.login-button-main:hover::after {
    opacity: 1;
    right: 20px;
}

.login-button-main:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.login-register-text {
    color: #b0b0b0;
    font-size: 16px;
    margin-bottom: 20px;
}

.register-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.register-link:hover {
    color: #ffaa00;
    text-decoration: underline;
}

.login-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #4caf50;
    font-size: 14px;
}

.secure-icon {
    font-size: 18px;
}

/* FAQ секция */
.faq-section {
    margin: 60px 0;
    padding: 0 20px;
}

.faq-container {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.faq-title {
    font-size: 38px;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.faq-subtitle {
    text-align: center;
    color: #b0b0b0;
    font-size: 18px;
    margin-bottom: 40px;
}

.faq-items {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    gap: 15px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 20px;
    font-weight: 700;
    color: #ffd700;
    margin: 0;
}

.faq-toggle {
    font-size: 28px;
    font-weight: 300;
    color: #ffd700;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .vavada-info-blocks {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .info-block {
        padding: 30px 20px;
    }
    
    .info-block-title {
        font-size: 24px;
    }
    
    .login-container {
        padding: 30px 20px;
    }
    
    .login-title {
        font-size: 28px;
    }
    
    .login-form-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .login-button-main {
        padding: 18px 40px;
        font-size: 18px;
    }
    
    .faq-container {
        padding: 30px 20px;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-question {
        padding: 20px 15px;
    }
    
    .faq-question h3 {
        font-size: 18px;
    }
    
    .faq-icon {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .info-block-title {
        font-size: 20px;
    }
    
    .info-block-icon {
        font-size: 50px;
    }
    
    .login-title {
        font-size: 24px;
    }
    
    .benefits-list li {
        font-size: 14px;
        padding: 12px;
    }
    
    .faq-title {
        font-size: 24px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
}
