
/* Custom CSS for STC - Supporte Ton Club */
/* Dark Glowmorphism Theme - Green (#10b981), Red (#ef4444), Blue (#3b82f6) */

/* Base dark theme */
body {
    background-color: #0a0a0a;
    color: #e5e7eb;
}

/* Animation utilities */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

@keyframes glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.4); }
    33% { box-shadow: 0 0 30px rgba(239, 68, 68, 0.4); }
    66% { box-shadow: 0 0 30px rgba(59, 130, 246, 0.4); }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animate-glow {
    animation: glow 3s ease-in-out infinite;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 4s ease-in-out infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

/* Smooth scrollbar hide */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Custom gradient text utility */
.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-rgb {
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 50%, #ef4444 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glowmorphism Effects */
.glass {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-strong {
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Glow effects */
.glow-green {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3), 
                0 0 60px rgba(16, 185, 129, 0.1),
                inset 0 0 20px rgba(16, 185, 129, 0.05);
}

.glow-red {
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.3), 
                0 0 60px rgba(239, 68, 68, 0.1),
                inset 0 0 20px rgba(239, 68, 68, 0.05);
}

.glow-blue {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3), 
                0 0 60px rgba(59, 130, 246, 0.1),
                inset 0 0 20px rgba(59, 130, 246, 0.05);
}

.glow-rgb {
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.2), 
                0 0 80px rgba(59, 130, 246, 0.15),
                0 0 120px rgba(239, 68, 68, 0.1);
}

/* Hover glow effects */
.hover-glow {
    transition: all 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

/* Custom shadow for mobile mockup */
.shadow-mobile {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 
                0 0 0 1px rgba(255, 255, 255, 0.1),
                0 0 60px rgba(16, 185, 129, 0.2);
}

/* Hover lift effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(59, 130, 246, 0.2);
}

/* RGB Button glow */
.btn-glow {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #10b981, #3b82f6, #ef4444);
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #10b981, #3b82f6, #ef4444, #10b981);
    background-size: 300% 300%;
    z-index: -1;
    animation: gradient-shift 3s ease infinite;
    filter: blur(10px);
    opacity: 0.7;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Stagger animation delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }

/* Focus visible styles */
*:focus-visible {
    outline: 2px solid #10b981;
    outline-offset: 2px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

/* Dark mode transitions */
.dark-transition {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Custom selection color */
::selection {
    background-color: #3b82f6;
    color: white;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
}

/* Image hover zoom */
.img-zoom {
    overflow: hidden;
}

.img-zoom img {
    transition: transform 0.5s ease;
}

.img-zoom:hover img {
    transform: scale(1.05);
}

/* Loading skeleton animation */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.skeleton {
    animation: shimmer 2s infinite linear;
    background: linear-gradient(to right, #1f2937 4%, #374151 25%, #1f2937 36%);
    background-size: 1000px 100%;
}

/* RGB Border animation */
.border-rgb {
    position: relative;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 16px;
    z-index: 1;
}

.border-rgb::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #10b981, #3b82f6, #ef4444, #10b981);
    background-size: 400% 400%;
    border-radius: 18px;
    z-index: -1;
    animation: rgb-shift 3s ease infinite;
}

@keyframes rgb-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Mobile menu animation */
.mobile-menu-enter {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu-enter-active {
    transform: translateX(0);
}

/* Card hover border effect */
.card-border-hover {
    position: relative;
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.card-border-hover::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, #10b981, #3b82f6, #ef4444);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-border-hover:hover::before {
    opacity: 1;
}

.card-border-hover:hover {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
    transform: translateY(-4px);
}

/* Neon text effects */
.text-neon-green {
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.8),
                 0 0 20px rgba(16, 185, 129, 0.4),
                 0 0 30px rgba(16, 185, 129, 0.2);
}

.text-neon-red {
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.8),
                 0 0 20px rgba(239, 68, 68, 0.4),
                 0 0 30px rgba(239, 68, 68, 0.2);
}

.text-neon-blue {
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.8),
                 0 0 20px rgba(59, 130, 246, 0.4),
                 0 0 30px rgba(59, 130, 246, 0.2);
}

/* Gradient borders */
.gradient-border-green {
    border-image: linear-gradient(135deg, #10b981, #059669) 1;
}

.gradient-border-blue {
    border-image: linear-gradient(135deg, #3b82f6, #2563eb) 1;
}

.gradient-border-red {
    border-image: linear-gradient(135deg, #ef4444, #dc2626) 1;
}

/* Background gradients */
.bg-gradient-dark {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f172a 100%);
}

.bg-glow-green {
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
}

.bg-glow-blue {
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}

.bg-glow-red {
    background: radial-gradient(circle at 50% 50%, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
}

/* Responsive typography */
@media (max-width: 640px) {
    .text-responsive-hero {
        font-size: 2.5rem;
        line-height: 1.1;
    }
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,  hwb(210 97% 2%));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg,  hwb(210 97% 2%));
}
