/*
 * Style 3: Neon Energy
 * Dynamic, energetic design with glowing effects and modern gradients
 */

/* Vibrant Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #1e3a8a 100%) !important;
    padding: 100px 0 !important;
    position: relative;
    overflow: hidden;
}

/* Animated Gradient Background */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation: nebula 15s ease-in-out infinite;
}

@keyframes nebula {
    0%, 100% {
        background-position: 50% 50%, 50% 50%, 50% 50%;
    }
    25% {
        background-position: 30% 70%, 70% 30%, 50% 50%;
    }
    50% {
        background-position: 70% 30%, 30% 70%, 50% 50%;
    }
    75% {
        background-position: 50% 50%, 50% 50%, 30% 80%;
    }
}

/* Neon Title */
.page-title {
    text-align: center;
    color: #ffffff !important;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    position: relative;
    text-shadow:
        0 0 10px rgba(139, 92, 246, 0.8),
        0 0 20px rgba(139, 92, 246, 0.6),
        0 0 30px rgba(139, 92, 246, 0.4);
    animation: titleGlow 3s ease-in-out infinite alternate, fadeInUp 1s ease-out 0.3s both;
}

.page-title::before {
    content: '⚡';
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    animation: pulseUp 2s ease-in-out infinite;
}

@keyframes titleGlow {
    from {
        text-shadow: 0 0 10px rgba(139, 92, 246, 0.8), 0 0 20px rgba(139, 92, 246, 0.6);
    }
    to {
        text-shadow: 0 0 20px rgba(236, 72, 153, 0.8), 0 0 40px rgba(236, 72, 153, 0.6), 0 0 60px rgba(236, 72, 153, 0.4);
    }
}

.page-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ec4899, #8b5cf6, #3b82f6);
    margin: 1.5rem auto 0;
    border-radius: 2px;
    box-shadow:
        0 0 10px #8b5cf6,
        0 0 20px #8b5cf6,
        0 0 30px #3b82f6;
    animation: rainbowGlow 3s ease-in-out infinite;
}

@keyframes rainbowGlow {
    0%, 100% {
        box-shadow: 0 0 10px #8b5cf6, 0 0 20px #8b5cf6, 0 0 30px #3b82f6;
    }
    33% {
        box-shadow: 0 0 10px #ec4899, 0 0 20px #ec4899, 0 0 30px #8b5cf6;
    }
    66% {
        box-shadow: 0 0 10px #3b82f6, 0 0 20px #3b82f6, 0 0 30px #ec4899;
    }
}

@keyframes pulseUp {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Electric Paragraph Styling */
.entry-content p {
    color: darkblue;
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    font-weight: 400;
    position: relative;
    padding: 1.8rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(139, 92, 246, 0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Neon Border on Hover */
.entry-content p:hover {
    transform: translateX(10px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow:
        0 8px 16px rgba(139, 92, 246, 0.2),
        0 0 30px rgba(139, 92, 246, 0.1),
        inset 0 0 30px rgba(139, 92, 246, 0.1);
}

.entry-content p::before {
    content: '◈';
    display: inline-block;
    margin-right: 12px;
    color: #ec4899;
    font-size: 1.1rem;
    vertical-align: middle;
}

/* Electric Highlights */
.entry-content p strong {
    color: black;
    font-weight: 700;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.2), transparent);
    padding: 2px 8px;
    border-radius: 4px;
    position: relative;
    z-index: 1;
}

.entry-content strong::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    border-radius: 2px;
    z-index: -1;
}

/* Accent Highlights */
.entry-content p em {
    background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.1) 50%, transparent 100%);
    padding: 0 5px;
}

/* Neon Button Design */
#app-btn, .entry-content a[href*="my-account"] {
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
    /*display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;*/
    padding: 1.4rem 2.8rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(59, 130, 246, 0.9));
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 20px rgba(139, 92, 246, 0.4),
        0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.7s both;
    border: none;
}

#app-btn::before, .entry-content a[href*="my-account"]::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;
}

#app-btn:hover, .entry-content a[href*="my-account"]:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 0 40px rgba(139, 92, 246, 0.6),
        0 8px 20px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.95), rgba(139, 92, 246, 0.95));
}

#app-btn:hover::before, .entry-content a[href*="my-account"]:hover::before {
    left: 100%;
}

/* Button Pulse Effect */
#app-btn::after, .entry-content a[href*="my-account"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#app-btn:hover::after, .entry-content a[href*="my-account"]:hover::after {
    width: 500px;
    height: 500px;
    opacity: 0;
}

/* Floating Particles */
.hero-section::before {
    background-image: radial-gradient(1px 1px at 20% 30%, #8b5cf6, transparent),
        radial-gradient(1px 1px at 40% 70%, #ec4899, transparent),
        radial-gradient(2px 2px at 60% 40%, #3b82f6, transparent),
        radial-gradient(1px 1px at 80% 80%, #8b5cf6, transparent);
    background-size: 200px 200px;
    animation: particleFlow 60s linear infinite;
}

@keyframes particleFlow {
    from { background-position: 0 0; }
    to { background-position: 400px 400px; }
}

/* Feature Cards Grid */
.feature-card {
    display: inline-block;
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    margin: 1rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow:
        0 10px 30px rgba(236, 72, 153, 0.2),
        inset 0 0 20px rgba(139, 92, 246, 0.05);
    transform: translateY(-5px);
}

/* Percentage Badge */
.highlight-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 4px;
    vertical-align: middle;
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.4);
}

/* Numbered List with Neon Dots */
.custom-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.custom-list li {
    padding: 0.8rem 0;
    color: #e2e8f0;
    position: relative;
    padding-left: 2rem;
}

.custom-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-size: 1rem;
    animation: rotateDot 2s ease-in-out infinite alternate;
}

@keyframes rotateDot {
    from { transform: rotate(-45deg); }
    to { transform: rotate(45deg); }
}

/* Code/Tech Accent */
.tech-accent {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    color: #818cf8;
    font-weight: 500;
}

/* Neon Divider */
.neon-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
    position: relative;
    padding: 0 2rem;
}

.neon-divider::before {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(139, 92, 246, 0.5) 50%, transparent 100%);
}

.neon-divider::after {
    content: '💎';
    color: #ec4899;
    font-size: 1.2rem;
    margin: 0 1rem;
    text-shadow: 0 0 10px #ec4899;
    animation: sparkle 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem !important;
    }

    .entry-content p {
        padding: 1.2rem;
        font-size: 1.1rem;
    }

    .entry-content a[href*="my-account"] {
        width: 100%;
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

/* Scroll Animation */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
    animation: bounceScroll 2s ease-in-out infinite;
}

@keyframes bounceScroll {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-indicator::after {
    content: '↓';
    font-size: 2rem;
    color: #8b5cf6;
    text-shadow: 0 0 10px #8b5cf6;
}

/* Glow Effects */
.glow-effect {
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }
    to {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
}

/* Loading Animation */
.loading-neon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.loading-neon::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}