/* Custom Glassmorphism and Gaming Styles */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0a0a;
    overflow-x: hidden;
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 25px 45px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 50px rgba(139, 92, 246, 0.08);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(139, 92, 246, 0.8), 
        rgba(236, 72, 153, 0.8), 
        transparent
    );
}

/* Glowing Text Effect */
.glow-text {
    font-family: 'Orbitron', monospace;
    text-shadow: 
        0 0 10px rgba(139, 92, 246, 0.5),
        0 0 20px rgba(139, 92, 246, 0.3),
        0 0 30px rgba(139, 92, 246, 0.2);
}

/* Navigation Menu Styles */
.nav-menu-btn {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    cursor: pointer;
    margin-top: 8px;
    margin-left: 8px;
    background: rgba(139, 92, 246, 0.08);
}

.nav-menu-btn:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 
        0 15px 50px rgba(139, 92, 246, 0.3),
        0 0 30px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Hamburger Menu Icon */
.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, #8b5cf6, #ec4899);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
    transform-origin: center;
}

.hamburger-line:nth-child(1) {
    animation: lineFloat1 2s ease-in-out infinite;
}

.hamburger-line:nth-child(2) {
    animation: lineFloat2 2.5s ease-in-out infinite;
}

.hamburger-line:nth-child(3) {
    animation: lineFloat3 3s ease-in-out infinite;
}

@keyframes lineFloat1 {
    0%, 100% { transform: translateX(0) scaleX(1); }
    50% { transform: translateX(2px) scaleX(1.05); }
}

@keyframes lineFloat2 {
    0%, 100% { transform: translateX(0) scaleX(1); }
    50% { transform: translateX(-1px) scaleX(0.95); }
}

@keyframes lineFloat3 {
    0%, 100% { transform: translateX(0) scaleX(1); }
    50% { transform: translateX(3px) scaleX(1.1); }
}

.nav-menu-btn i {
    transition: all 0.3s ease;
}

.nav-menu-btn:hover .hamburger-icon {
    transform: scale(1.1);
}

.nav-menu-btn:hover .hamburger-line {
    background: linear-gradient(90deg, #ec4899, #8b5cf6, #10b981);
    box-shadow: 
        0 0 15px rgba(139, 92, 246, 0.8),
        0 0 25px rgba(236, 72, 153, 0.6);
    animation-play-state: paused;
}

.nav-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.nav-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu-btn:active {
    transform: scale(0.95);
}

.nav-menu-btn:active i {
    transform: rotate(45deg) scale(0.9);
    color: #10b981;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.9);
}

.nav-dropdown {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.nav-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.nav-item {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.nav-item i {
    transition: all 0.3s ease;
}

.nav-item:hover i {
    transform: scale(1.1);
}

/* Input Fields */
.input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    padding-left: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.input-field:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 0 0 3px rgba(139, 92, 246, 0.1),
        0 0 20px rgba(139, 92, 246, 0.2);
    transform: translateY(-1px);
}

.input-field::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 20px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 15px 30px rgba(139, 92, 246, 0.3),
        0 0 30px rgba(236, 72, 153, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.submit-btn::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 ease;
}

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

/* Error Messages */
.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.error-message i {
    margin-right: 0.5rem;
}

/* Animated Particles */
.particle {
    position: absolute;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle-1 {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.particle-3 {
    width: 3px;
    height: 3px;
    top: 40%;
    left: 20%;
    animation-delay: 4s;
}

.particle-4 {
    width: 5px;
    height: 5px;
    top: 80%;
    left: 60%;
    animation-delay: 1s;
}

.particle-5 {
    width: 4px;
    height: 4px;
    top: 10%;
    left: 70%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.3;
    }
}

/* Form Group Animations */
.form-group {
    animation: slideInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success Animation */
.success-fade-in {
    animation: successFadeIn 0.5s ease forwards;
}

@keyframes successFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
    .glass-card {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .glow-text {
        font-size: 1.75rem;
    }
    
    .input-field {
        padding: 0.625rem 1rem;
        padding-left: 2.5rem;
    }
    
    .submit-btn {
        padding: 0.875rem;
        font-size: 1rem;
    }
}

/* Background Video Fade In */
#backgroundVideo, #backgroundImage {
    animation: backgroundFadeIn 2s ease forwards;
}

@keyframes backgroundFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Pulse Effect for Loading */
.pulse-loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

/* Hidden Class */
.hidden {
    display: none !important;
}

/* Advanced Home Page Styles */

/* Hero CTA Buttons */
.hero-cta-primary {
    position: relative;
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(139, 92, 246, 0.3),
        0 0 50px rgba(139, 92, 246, 0.1);
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 15px 40px rgba(139, 92, 246, 0.4),
        0 0 60px rgba(139, 92, 246, 0.2);
}

.hero-cta-glow {
    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 ease;
}

.hero-cta-primary:hover .hero-cta-glow {
    left: 100%;
}

.hero-cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Luxury NFT Gallery */
.modern-gallery {
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.gallery-container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem 0;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0 3rem;
    perspective: 1200px;
}

.gallery-card {
    width: 220px;
    height: 220px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0.6;
    transform: scale(0.85) rotateY(15deg);
    background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
    border: 3px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(25px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.gallery-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(139, 92, 246, 0.3), 
        rgba(236, 72, 153, 0.3), 
        rgba(59, 130, 246, 0.3));
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.gallery-card:hover {
    opacity: 1;
    transform: scale(1.15) rotateY(0deg) translateY(-15px);
    border-color: rgba(139, 92, 246, 0.8);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(139, 92, 246, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.gallery-card:hover::before {
    opacity: 1;
}

.gallery-card.active {
    opacity: 1;
    transform: scale(1.1) rotateY(0deg);
    border-color: rgba(139, 92, 246, 0.7);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(139, 92, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.gallery-card.active::before {
    opacity: 0.8;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(0.85) contrast(1.15) saturate(0.9);
}

.gallery-card:hover .gallery-image {
    filter: brightness(1.1) contrast(1.4) saturate(1.3);
    transform: scale(1.05);
}

.gallery-card.active .gallery-image {
    filter: brightness(1) contrast(1.3) saturate(1.1);
}

/* Luxury Navigation Arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 15;
    opacity: 0.8;
    font-size: 1rem;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.gallery-nav::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(139, 92, 246, 0.4), 
        rgba(236, 72, 153, 0.4));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-nav:hover {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.8), rgba(139, 92, 246, 0.6));
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 
        0 12px 35px rgba(139, 92, 246, 0.4),
        0 0 30px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.gallery-nav:hover::before {
    opacity: 1;
}

.gallery-nav:active {
    transform: translateY(-50%) scale(1.05);
}

.gallery-nav.prev {
    left: 30px;
}

.gallery-nav.next {
    right: 30px;
}

/* Premium Character Info Panel */
.character-info {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.character-name {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #e0e7ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-family: 'Orbitron', monospace;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.character-rarity {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: white;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.character-rarity.mythic {
    background: linear-gradient(135deg, #8B0000, #4B0000);
    box-shadow: 
        0 8px 25px rgba(139, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.character-rarity::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.character-rarity:hover::before {
    left: 100%;
}

/* Premium Gallery Dots */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
    border-radius: 50px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
    position: relative;
    border: 2px solid transparent;
}

.gallery-dot::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.gallery-dot:hover {
    background: rgba(139, 92, 246, 0.7);
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.gallery-dot:hover::before {
    opacity: 1;
}

.gallery-dot.active {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    transform: scale(1.4);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 0 15px rgba(139, 92, 246, 0.8),
        0 0 30px rgba(139, 92, 246, 0.4);
}

.gallery-dot.active::before {
    opacity: 1;
}

/* Enhanced Typography */
.glow-text {
    font-family: 'Orbitron', monospace;
    text-shadow: 
        0 0 20px rgba(139, 92, 246, 0.5),
        0 0 40px rgba(139, 92, 246, 0.3),
        0 0 60px rgba(139, 92, 246, 0.2);
    background: linear-gradient(45deg, #ffffff, #e2e8f0);
    background-clip: text;
    -webkit-background-clip: text;
}

/* Luxury Responsive Design */
@media (max-width: 768px) {
    .gallery-track {
        gap: 1.5rem;
        padding: 0 2rem;
    }
    
    .gallery-card {
        width: 180px;
        height: 180px;
    }
    
    .gallery-nav {
        width: 42px;
        height: 42px;
        font-size: 0.9rem;
    }
    
    .gallery-nav.prev {
        left: 20px;
    }
    
    .gallery-nav.next {
        right: 20px;
    }
    
    .character-info {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .character-name {
        font-size: 2rem;
    }
    
    .character-rarity {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
        letter-spacing: 1px;
    }
    
    .gallery-dots {
        gap: 0.8rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .modern-gallery {
        padding: 2rem 0;
    }
    
    .gallery-container {
        padding: 1rem 0;
    }
    
    .gallery-track {
        gap: 1rem;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 1rem;
        perspective: none;
    }
    
    .gallery-card {
        width: 160px;
        height: 160px;
        flex-shrink: 0;
        transform: scale(0.9);
    }
    
    .gallery-card:hover,
    .gallery-card.active {
        transform: scale(1);
    }
    
    .gallery-nav {
        width: 38px;
        height: 38px;
        font-size: 0.8rem;
    }
    
    .gallery-nav.prev {
        left: 15px;
    }
    
    .gallery-nav.next {
        right: 15px;
    }
    
    .character-info {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .character-name {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }
    
    .character-rarity {
        font-size: 0.9rem;
        padding: 0.5rem 1.2rem;
        letter-spacing: 1px;
    }
    
    .gallery-dots {
        gap: 0.6rem;
        padding: 0.8rem;
    }
    
    .gallery-dot {
        width: 10px;
        height: 10px;
    }
}

/* Advanced NFT Card Animations */
@keyframes nftPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }
    50% { box-shadow: 0 0 30px rgba(139, 92, 246, 0.6); }
}

.nft-card:nth-child(odd) .nft-card-inner:hover {
    animation: nftPulse 2s ease-in-out infinite;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8B5CF6, #EC4899);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #7C3AED, #DB2777);
}



/* Follow Button Styles */
.follow-btn {
    box-shadow: 
        0 8px 16px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.follow-btn:hover {
    box-shadow: 
        0 12px 24px rgba(59, 130, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Confirm Follow Button */
.confirm-follow-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 6px 12px rgba(34, 197, 94, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.confirm-follow-btn:hover {
    transform: translateY(-1px);
    box-shadow: 
        0 8px 16px rgba(34, 197, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.confirm-follow-btn:active {
    transform: translateY(0);
}

/* Follow Section Animation */
#followSection {
    animation: slideInUp 0.6s ease forwards;
}

/* Form Slide Animation */
.form-slide-in {
    animation: formSlideIn 0.5s ease forwards;
}

@keyframes formSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Validation Success State */
.input-success {
    border-color: rgba(34, 197, 94, 0.5) !important;
    box-shadow: 
        0 0 0 3px rgba(34, 197, 94, 0.1),
        0 0 20px rgba(34, 197, 94, 0.1) !important;
}

/* Validation Error State */
.input-error {
    border-color: rgba(239, 68, 68, 0.5) !important;
    box-shadow: 
        0 0 0 3px rgba(239, 68, 68, 0.1),
        0 0 20px rgba(239, 68, 68, 0.1) !important;
}

/* Social Media Icons Styling */
.social-icon {
    position: relative;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: -1;
}

.social-icon:hover::before {
    width: 60px;
    height: 60px;
}

/* Enhanced glassmorphism for social bar */
.social-icon .w-8 {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.social-icon:hover .w-8 {
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

/* Custom icon image styling */
.social-icon img {
    filter: brightness(1.2) contrast(1.1);
}

.social-icon:hover img {
    filter: brightness(1.4) contrast(1.2) drop-shadow(0 0 8px rgba(139, 92, 246, 0.3));
}

/* Success Message Video Background */
#successMessage {
    min-height: 300px;
}

#successMessage video {
    border-radius: 0.5rem;
}

/* Enhanced glassmorphism for success content */
#successMessage .relative {
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        inset 0 2px 2px rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Ensure text is always readable */
#successMessage p, #successMessage i {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

#successMessage button {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

/* Mobile adjustments for social icons */
@media (max-width: 768px) {
    .social-icon .w-8 {
        width: 1.75rem;
        height: 1.75rem;
        padding: 2px;
    }
}
