/**
 * ==============================================
 * QA SECTION CSS ÉPICO - DEPARTAMENTO DE QUALIDADE
 * ==============================================
 * 
 * Responsabilidade: Experiência cinematográfica com Velberan e efeitos 3D
 * Paleta: Dourado/Roxo/Vermelho para diferenciação
 * Efeitos: Animações de teste, partículas, transformações 3D, spotlight Velberan
 * 
 * @package Nuntius Theme
 * @version 2.0.0 EPIC
 * @author Nuntius Team
 */

/* ===== SEÇÃO PRINCIPAL ÉPICA ===== */
.qa-epic-section {
    position: relative;
    padding: 80px 0;
    background: 
        radial-gradient(ellipse at top, #1a0a1c 0%, #1a0f21 25%, #1a1427 50%, #0f0a1c 100%),
        linear-gradient(135deg, #1a0a2e 0%, #16213e  50%, #0f0a1c 100%);
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    min-height: auto;
}

/* ===== CANVAS 3D E LAYERS DE PROFUNDIDADE ===== */
.qa-3d-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.5;
}

.qa-depth-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.qa-depth-layer.layer-1 {
    background: radial-gradient(circle at 30% 70%, rgba(255, 179, 0, 0.12) 0%, transparent 50%);
    animation: depthFloat1 9s ease-in-out infinite;
}

.qa-depth-layer.layer-2 {
    background: radial-gradient(circle at 70% 30%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    animation: depthFloat2 11s ease-in-out infinite reverse;
}

.qa-depth-layer.layer-3 {
    background: radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
    animation: depthFloat3 13s ease-in-out infinite;
}

/* ===== ANIMAÇÃO DE TESTES MATRIX ===== */
.qa-testing-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.testing-line {
    position: absolute;
    top: -100px;
    font-size: 0.7rem;
    color: #ffb300;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 179, 0, 0.8);
    white-space: nowrap;
    animation: testingRainFall 6s linear infinite;
}

.testing-line:nth-child(1) { left: 15%; animation-delay: 0s; }
.testing-line:nth-child(2) { left: 35%; animation-delay: 1.2s; }
.testing-line:nth-child(3) { left: 55%; animation-delay: 2.4s; }
.testing-line:nth-child(4) { left: 75%; animation-delay: 0.8s; }
.testing-line:nth-child(5) { left: 90%; animation-delay: 1.8s; }

/* ===== CONTAINER PRINCIPAL ===== */
.qa-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
    width: 100%;
}

/* ===== HEADER CINEMATOGRÁFICO ===== */
.qa-header-cinematic {
    text-align: center;
    margin-bottom: 3rem;
}

/* Badge Técnico */
.qa-tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: linear-gradient(90deg, rgba(255, 179, 0, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    border: 1px solid rgba(255, 179, 0, 0.3);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffb300;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: badgePulse 2s ease-in-out infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffb300;
    animation: dotPulse 1.5s ease-in-out infinite;
}

/* Título Épico */
.qa-title-epic {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin: 0 0 2rem;
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.title-qa {
    background: linear-gradient(135deg, #ffb300 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 179, 0, 0.5);
    animation: titleGlow 3s ease-in-out infinite;
}

.title-separator {
    color: #8a2be2;
    font-size: clamp(2rem, 4vw, 3.5rem);
    animation: separatorRotate 4s linear infinite;
}

.title-assurance {
    background: linear-gradient(135deg, #8a2be2 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(138, 43, 226, 0.5);
    animation: titleGlow 3s ease-in-out infinite reverse;
}

/* ===== VELBERAN HERO CONTAINER ===== */
.velberan-hero-container {
    position: relative;
    margin: 3rem 0;
    padding: 3rem;
    background: radial-gradient(ellipse at center, rgba(255, 179, 0, 0.08) 0%, transparent 70%);
    border-radius: 20px;
}

.velberan-spotlight {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 179, 0, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    animation: spotlightPulse 4s ease-in-out infinite;
}

.velberan-profile-epic {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Avatar Container com Efeitos */
.velberan-avatar-container {
    position: relative;
    width: 180px;
    height: 180px;
}

.velberan-avatar-container .avatar-glow-ring {
    position: absolute;
    inset: -10px;
    border: 3px solid;
    border-radius: 50%;
    animation: ringRotate 8s linear infinite;
}

.velberan-avatar-container .avatar-glow-ring.ring-1 {
    border-color: #ffb300 transparent #ffb300 transparent;
    animation-duration: 8s;
}

.velberan-avatar-container .avatar-glow-ring.ring-2 {
    border-color: transparent #8a2be2 transparent #8a2be2;
    animation-duration: 6s;
    animation-direction: reverse;
}

.velberan-avatar-container .avatar-glow-ring.ring-3 {
    border-color: #dc2626 transparent #dc2626 transparent;
    animation-duration: 10s;
    inset: -20px;
}

.velberan-avatar-container .avatar-power-aura {
    position: absolute;
    inset: -15px;
    background: radial-gradient(circle, rgba(255, 179, 0, 0.4), transparent);
    border-radius: 50%;
    filter: blur(20px);
    animation: auraPulse 3s ease-in-out infinite;
}

.velberan-avatar-epic {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid #ffb300;
    box-shadow: 0 0 40px rgba(255, 179, 0, 0.6), 0 0 80px rgba(138, 43, 226, 0.4);
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

/* Velberan Avatar Icon Style */
.velberan-avatar-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: linear-gradient(135deg, 
        rgba(255, 179, 0, 0.95) 0%, 
        rgba(138, 43, 226, 0.95) 50%,
        rgba(220, 38, 38, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.velberan-avatar-icon .avatar-icon-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, 
        rgba(255, 179, 0, 0.2) 0%, 
        transparent 70%);
    animation: iconBgPulseVelberan 3s ease-in-out infinite;
}

.velberan-avatar-icon .avatar-icon-main {
    font-size: 4rem;
    filter: drop-shadow(0 0 20px rgba(255, 179, 0, 0.8));
    animation: iconFloatVelberan 3s ease-in-out infinite;
    z-index: 2;
}

.velberan-avatar-icon .avatar-icon-text {
    font-size: 1.2rem;
    font-weight: 900;
    color: #ffb300;
    letter-spacing: 4px;
    text-shadow: 0 0 15px rgba(255, 179, 0, 0.8);
    z-index: 2;
}

@keyframes iconBgPulseVelberan {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes iconFloatVelberan {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.velberan-avatar-epic:hover {
    transform: scale(1.05);
}

.velberan-crown {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 3rem;
    filter: drop-shadow(0 0 10px #ffb300);
    animation: crownFloat 3s ease-in-out infinite;
    z-index: 3;
}

/* Credenciais Velberan */
.velberan-credentials {
    text-align: left;
    max-width: 500px;
}

.velberan-name {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffb300 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.5rem;
    letter-spacing: 2px;
}

.velberan-title {
    font-size: 1.1rem;
    color: #8a2be2;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.velberan-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffb300 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.7rem;
    color: #999;
    font-weight: 600;
    letter-spacing: 1px;
}

.stat-separator {
    color: #8a2be2;
    font-size: 1.5rem;
    font-weight: 900;
}

.velberan-quote {
    font-size: 1.3rem;
    color: #fff;
    font-style: italic;
    margin: 1.5rem 0;
    line-height: 1.6;
    font-weight: 500;
}

.highlight-gold {
    color: #ffb300;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 179, 0, 0.8);
}

.velberan-channel-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(90deg, #ffb300 0%, #ff8c00 100%);
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 179, 0, 0.4);
    letter-spacing: 1px;
}

.velberan-channel-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 179, 0, 0.6);
    background: linear-gradient(90deg, #ff8c00 0%, #ffb300 100%);
}

.link-icon {
    font-size: 1.3rem;
}

/* ===== SUBTITLE CONTAINER ===== */
.qa-subtitle-container {
    margin-top: 2rem;
}

.qa-subtitle-epic {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: #fff;
    line-height: 1.6;
    font-weight: 600;
    text-align: center;
}

.highlight-red {
    color: #dc2626;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.8);
}

.highlight-neon {
    color: #06b6d4;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.8);
}

/* ===== ARSENAL DE TESTES UNIVERSE ===== */
.qa-arsenal-universe {
    margin: 4rem 0;
}

.universe-title-container {
    text-align: center;
    margin-bottom: 3rem;
}

.universe-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin: 0;
    line-height: 1.2;
}

.universe-text {
    display: block;
    color: #999;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: 0.5rem;
}

.universe-highlight {
    display: block;
    background: linear-gradient(135deg, #ffb300 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 179, 0, 0.5);
}

/* ===== GRID 3D DE TESTES ===== */
.qa-arsenal-3d-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    perspective: 1000px;
}

/* Cards 3D de Teste */
.qa-test-3d-card {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.qa-test-3d-card:hover {
    transform: rotateY(5deg) rotateX(5deg) translateZ(20px);
}

.card-3d-container {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 179, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.qa-test-3d-card:hover .card-3d-container {
    background: rgba(255, 179, 0, 0.1);
    border-color: #ffb300;
    box-shadow: 0 0 30px rgba(255, 179, 0, 0.4);
}

/* Border Técnico Animado */
.card-tech-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: linear-gradient(45deg, transparent 48%, #ffb300 50%, transparent 52%);
    background-size: 20px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.qa-test-3d-card:hover .card-tech-border {
    opacity: 0.1;
    animation: borderScan 2s linear infinite;
}

/* Container do Ícone */
.card-icon-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
    height: auto;
    min-height: auto;
}

.test-icon-3d {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 179, 0, 0.6));
    transition: transform 0.3s ease;
}

.qa-test-3d-card:hover .test-icon-3d {
    transform: scale(1.2) rotateY(360deg);
    filter: drop-shadow(0 0 20px rgba(255, 179, 0, 1));
}

/* Orbit Rings */
.icon-orbit-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    border: 2px solid rgba(255, 179, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-ring.ring-1 {
    width: 80px;
    height: 80px;
    animation: orbitRotate1 3s linear infinite;
}

.orbit-ring.ring-2 {
    width: 100px;
    height: 100px;
    animation: orbitRotate2 4s linear infinite reverse;
}

/* Título do Teste */
.test-title-3d {
    font-size: 1.2rem;
    color: #ffb300;
    margin: 1rem 0 0.5rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Specs do Teste */
.test-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-grow: 1;
}

.spec-item {
    font-size: 0.9rem;
    color: #bbb;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 179, 0, 0.05);
    border-left: 2px solid #ffb300;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.spec-item:hover {
    background: rgba(255, 179, 0, 0.15);
    transform: translateX(5px);
}

/* Power Bar */
.test-power-bar {
    height: 8px;
    background: rgba(255, 179, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
}

.power-fill {
    height: 100%;
    border-radius: 10px;
    animation: powerPulse 2s ease-in-out infinite;
}

.functional-power {
    width: 95%;
    background: linear-gradient(90deg, #ffb300 0%, #ff8c00 100%);
}

.gameplay-power {
    width: 100%;
    background: linear-gradient(90deg, #8a2be2 0%, #dc2626 100%);
}

.performance-power {
    width: 98%;
    background: linear-gradient(90deg, #dc2626 0%, #ff8c00 100%);
}

.compatibility-power {
    width: 97%;
    background: linear-gradient(90deg, #06b6d4 0%, #8a2be2 100%);
}

/* ===== SEÇÃO DE GARANTIA ===== */
.qa-guarantee-section {
    margin: 4rem 0;
    padding: 3rem;
    background: radial-gradient(ellipse at center, rgba(255, 179, 0, 0.05) 0%, transparent 70%);
    border-radius: 20px;
}

.guarantee-stats-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.guarantee-stat {
    text-align: center;
}

.guarantee-stat .stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffb300 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: counterGlow 2s ease-in-out infinite;
}

.stat-plus, .stat-percent {
    font-size: 3rem;
    color: #8a2be2;
    font-weight: 900;
    display: inline-block;
    margin-left: 0.2rem;
}

.guarantee-stat .stat-label {
    font-size: 0.9rem;
    color: #999;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.guarantee-separator {
    color: #ffb300;
    font-size: 2rem;
    font-weight: 900;
}

/* ===== PROCESSO ÉPICO ===== */
.qa-process-section {
    margin: 4rem 0;
}

.process-container {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: linear-gradient(90deg, rgba(255, 179, 0, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 1px solid rgba(255, 179, 0, 0.3);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffb300;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.badge-lightning {
    font-size: 1.2rem;
    animation: lightningFlash 2s ease-in-out infinite;
}

.process-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.process-main {
    color: #dc2626;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.8);
}

.process-separator {
    color: #8a2be2;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.process-result {
    background: linear-gradient(135deg, #ffb300 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-description {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.8;
    margin-top: 1.5rem;
}

/* ===== CTA ÉPICO ===== */
.qa-cta-epic {
    margin: 4rem 0 2rem;
    text-align: center;
}

.cta-power-container {
    position: relative;
    display: inline-block;
}

.qa-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 45px;
    background: linear-gradient(90deg, #ffb300 0%, #dc2626 100%);
    color: #000;
    font-size: 1.3rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(255, 179, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.qa-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 60px rgba(255, 179, 0, 0.7);
    background: linear-gradient(90deg, #dc2626 0%, #ffb300 100%);
}

.cta-icon {
    font-size: 2rem;
    animation: ctaIconBounce 1s ease-in-out infinite;
}

.cta-text {
    position: relative;
    z-index: 2;
}

/* Power Waves */
.cta-power-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.power-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 179, 0, 0.5);
    border-radius: 50px;
    animation: waveExpand 2s ease-out infinite;
}

.power-wave.wave-2 {
    animation-delay: 0.5s;
}

.power-wave.wave-3 {
    animation-delay: 1s;
}

/* ===== SISTEMA DE PARTÍCULAS ===== */
.qa-fx-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.quality-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffb300;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 179, 0, 0.8);
    animation: particleFloat 8s ease-in-out infinite;
}

.quality-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.quality-particle:nth-child(2) {
    top: 40%;
    left: 30%;
    animation-delay: 1.5s;
}

.quality-particle:nth-child(3) {
    top: 60%;
    left: 70%;
    animation-delay: 3s;
}

.quality-particle:nth-child(4) {
    top: 80%;
    left: 50%;
    animation-delay: 2s;
}

.quality-particle:nth-child(5) {
    top: 30%;
    left: 90%;
    animation-delay: 4s;
}

/* ===== ANIMAÇÕES ===== */
@keyframes depthFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.1); }
}

@keyframes depthFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 20px) scale(1.1); }
}

@keyframes depthFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 30px) scale(1.05); }
}

@keyframes testingRainFall {
    0% { top: -100px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 179, 0, 0.3); }
    50% { box-shadow: 0 0 20px rgba(255, 179, 0, 0.6); }
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 5px #ffb300; }
    50% { box-shadow: 0 0 15px #ffb300; }
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 179, 0, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 179, 0, 0.8)); }
}

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

@keyframes spotlightPulse {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.5; transform: translateX(-50%) scale(1.1); }
}

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

@keyframes ringPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes auraPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes crownFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes orbitRotate1 {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbitRotate2 {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

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

@keyframes powerPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes counterGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 179, 0, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 179, 0, 1)); }
}

@keyframes lightningFlash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes ctaIconBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes waveExpand {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-30px) translateX(20px);
        opacity: 0.5;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 768px) {
    .qa-epic-section {
        padding: 60px 0;
    }
    
    .qa-container {
        padding: 0 20px;
    }
    
    .qa-title-epic {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .velberan-profile-epic {
        flex-direction: column;
        gap: 2rem;
    }
    
    .velberan-credentials {
        text-align: center;
    }
    
    .velberan-stats {
        justify-content: center;
    }
    
    .qa-arsenal-3d-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .guarantee-stats-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-title {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .qa-cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .qa-title-epic {
        font-size: 2rem;
    }
    
    .velberan-avatar-container {
        width: 120px;
        height: 120px;
    }
    
    .velberan-avatar-epic {
        width: 120px;
        height: 120px;
    }
    
    .velberan-name {
        font-size: 1.8rem;
    }
    
    .qa-cta-button {
        flex-direction: column;
        gap: 10px;
    }
}
