/* Enhanced Orange and Blue Theme for BLEACH: Krowned Kueens */

/* Additional Orange and Blue Styling */
.orange-blue-theme {
    /* Enhanced gradient backgrounds */
    --enhanced-orange-gradient: linear-gradient(45deg, #FF6B01 0%, #FF8C00 25%, #FFA500 50%, #FF6B01 75%, #E05A00 100%);
    --enhanced-blue-gradient: linear-gradient(45deg, #0066FF 0%, #4169E1 25%, #87CEEB 50%, #0066FF 75%, #001122 100%);
    --cosmic-gradient: linear-gradient(135deg, #FF6B01 0%, #0066FF 20%, #FF8C00 40%, #4169E1 60%, #FF6B01 80%, #001122 100%);
    
    /* Animated gradients */
    --animated-orange: linear-gradient(-45deg, #FF6B01, #FF8C00, #FFA500, #E05A00);
    --animated-blue: linear-gradient(-45deg, #0066FF, #4169E1, #87CEEB, #001122);
    
    /* Glow effects */
    --intense-orange-glow: 0 0 30px rgba(255, 107, 1, 0.8), 0 0 60px rgba(255, 107, 1, 0.6), 0 0 90px rgba(255, 107, 1, 0.4);
    --intense-blue-glow: 0 0 30px rgba(0, 102, 255, 0.8), 0 0 60px rgba(0, 102, 255, 0.6), 0 0 90px rgba(0, 102, 255, 0.4);
    --mixed-glow: 0 0 20px rgba(255, 107, 1, 0.6), 0 0 40px rgba(0, 102, 255, 0.6), 0 0 60px rgba(255, 140, 0, 0.4);
}

/* Enhanced Button Styles */
.btn-enhanced-orange {
    background: var(--enhanced-orange-gradient);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    color: white;
    border: none;
    box-shadow: var(--intense-orange-glow);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.btn-enhanced-orange:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--intense-orange-glow), 0 10px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

.btn-enhanced-blue {
    background: var(--enhanced-blue-gradient);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite reverse;
    color: white;
    border: none;
    box-shadow: var(--intense-blue-glow);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.btn-enhanced-blue:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--intense-blue-glow), 0 10px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

.btn-cosmic {
    background: var(--cosmic-gradient);
    background-size: 600% 600%;
    animation: cosmicShift 4s ease infinite;
    color: white;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: var(--mixed-glow);
    position: relative;
    overflow: hidden;
}

.btn-cosmic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-cosmic:hover::before {
    left: 100%;
}

.btn-cosmic:hover {
    transform: translateY(-3px);
    box-shadow: var(--mixed-glow), 0 15px 35px rgba(0, 0, 0, 0.4);
    color: white;
}

/* Enhanced Card Styles */
.card-enhanced {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    border: 2px solid transparent;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cosmic-gradient);
    background-size: 400% 400%;
    animation: gradientShift 6s ease infinite;
    z-index: -1;
    border-radius: 20px;
}

.card-enhanced::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 18px;
    z-index: -1;
}

.card-enhanced:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--mixed-glow), 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Enhanced Text Effects */
.text-gradient-orange {
    background: var(--enhanced-orange-gradient);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.text-gradient-blue {
    background: var(--enhanced-blue-gradient);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite reverse;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.text-cosmic {
    background: var(--cosmic-gradient);
    background-size: 600% 600%;
    animation: cosmicShift 4s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(255, 107, 1, 0.5);
}

.text-glow-orange {
    color: #FF6B01;
    text-shadow: 0 0 10px rgba(255, 107, 1, 0.8),
                 0 0 20px rgba(255, 107, 1, 0.6),
                 0 0 30px rgba(255, 107, 1, 0.4);
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

.text-glow-blue {
    color: #0066FF;
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.8),
                 0 0 20px rgba(0, 102, 255, 0.6),
                 0 0 30px rgba(0, 102, 255, 0.4);
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

/* Enhanced Background Effects */
.bg-cosmic {
    background: var(--cosmic-gradient);
    background-size: 400% 400%;
    animation: cosmicShift 8s ease infinite;
    position: relative;
}

.bg-cosmic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23FF6B01" opacity="0.6"><animate attributeName="opacity" values="0.6;1;0.6" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1.5" fill="%230066FF" opacity="0.4"><animate attributeName="opacity" values="0.4;0.9;0.4" dur="4s" repeatCount="indefinite"/></circle><circle cx="60" cy="70" r="2.5" fill="%23FF8C00" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="2.5s" repeatCount="indefinite"/></circle><circle cx="30" cy="80" r="1" fill="%234169E1" opacity="0.7"><animate attributeName="opacity" values="0.7;1;0.7" dur="3.5s" repeatCount="indefinite"/></circle></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

/* Enhanced Navigation */
.navbar-enhanced {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid transparent;
    border-image: var(--cosmic-gradient) 1;
    position: relative;
}

.navbar-enhanced::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--cosmic-gradient);
    background-size: 400% 400%;
    animation: gradientShift 4s ease infinite;
}

.nav-link-enhanced {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nav-link-enhanced::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--enhanced-orange-gradient);
    transition: left 0.3s ease;
}

.nav-link-enhanced:hover::before,
.nav-link-enhanced.active::before {
    left: 0;
}

.nav-link-enhanced:hover {
    color: #FF6B01 !important;
    text-shadow: 0 0 10px rgba(255, 107, 1, 0.6);
}

/* Enhanced Hero Section */
.hero-enhanced {
    background: radial-gradient(circle at 30% 70%, rgba(255, 107, 1, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(0, 102, 255, 0.3) 0%, transparent 50%),
                linear-gradient(135deg, #000000 0%, #001122 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.hero-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="orangeGlow" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23FF6B01;stop-opacity:0.8"/><stop offset="100%" style="stop-color:%23FF6B01;stop-opacity:0"/></radialGradient><radialGradient id="blueGlow" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%230066FF;stop-opacity:0.8"/><stop offset="100%" style="stop-color:%230066FF;stop-opacity:0"/></radialGradient></defs><circle cx="20" cy="30" r="15" fill="url(%23orangeGlow)" opacity="0.4"><animateTransform attributeName="transform" type="translate" values="0,0; 10,5; 0,0" dur="8s" repeatCount="indefinite"/></circle><circle cx="80" cy="70" r="20" fill="url(%23blueGlow)" opacity="0.3"><animateTransform attributeName="transform" type="translate" values="0,0; -15,-10; 0,0" dur="10s" repeatCount="indefinite"/></circle></svg>');
    opacity: 0.6;
    z-index: 1;
}

/* Enhanced Floating Elements */
.floating-enhanced {
    animation: floatEnhanced 6s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 107, 1, 0.6));
}

.floating-enhanced:nth-child(2n) {
    animation-delay: 2s;
    filter: drop-shadow(0 0 15px rgba(0, 102, 255, 0.6));
}

.floating-enhanced:nth-child(3n) {
    animation-delay: 4s;
    filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.6));
}

/* Enhanced Form Elements */
.form-enhanced input,
.form-enhanced textarea,
.form-enhanced select {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 107, 1, 0.3);
    border-radius: 10px;
    color: white;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-enhanced input:focus,
.form-enhanced textarea:focus,
.form-enhanced select:focus {
    border-color: #FF6B01;
    box-shadow: 0 0 20px rgba(255, 107, 1, 0.4);
    outline: none;
}

.form-enhanced input::placeholder,
.form-enhanced textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Enhanced Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes cosmicShift {
    0% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

@keyframes pulseGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 107, 1, 0.8),
                     0 0 20px rgba(255, 107, 1, 0.6),
                     0 0 30px rgba(255, 107, 1, 0.4);
    }
    100% {
        text-shadow: 0 0 20px rgba(255, 107, 1, 1),
                     0 0 30px rgba(255, 107, 1, 0.8),
                     0 0 40px rgba(255, 107, 1, 0.6);
    }
}

@keyframes floatEnhanced {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
    75% {
        transform: translateY(-25px) rotate(2deg);
    }
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.8);
}

::-webkit-scrollbar-thumb {
    background: var(--enhanced-orange-gradient);
    border-radius: 6px;
    border: 2px solid rgba(0, 0, 0, 0.8);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--enhanced-blue-gradient);
}

/* Enhanced Loading States */
.loading-enhanced {
    position: relative;
    overflow: hidden;
}

.loading-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 1, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .btn-enhanced-orange,
    .btn-enhanced-blue,
    .btn-cosmic {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .card-enhanced {
        border-radius: 15px;
        margin-bottom: 20px;
    }
    
    .text-cosmic,
    .text-gradient-orange,
    .text-gradient-blue {
        font-size: 1.5rem;
    }
    
    .hero-enhanced::before {
        opacity: 0.3;
    }
}

/* Enhanced Accessibility */
@media (prefers-reduced-motion: reduce) {
    .floating-enhanced,
    .btn-enhanced-orange,
    .btn-enhanced-blue,
    .btn-cosmic {
        animation: none;
    }
    
    .card-enhanced:hover {
        transform: none;
    }
}

/* Enhanced Print Styles */
@media print {
    .btn-enhanced-orange,
    .btn-enhanced-blue,
    .btn-cosmic {
        background: #FF6B01 !important;
        color: white !important;
        box-shadow: none !important;
    }
    
    .text-cosmic,
    .text-gradient-orange,
    .text-gradient-blue {
        color: #FF6B01 !important;
        background: none !important;
        -webkit-text-fill-color: #FF6B01 !important;
    }
}

