/* Crowdfunding Page Specific Styles */

/* Crowdfunding Hero Section */
.crowdfunding-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1b5a 25%, #2d1b69 50%, #6b46c1 75%, #8b5cf6 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.crowdfunding-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(147, 51, 234, 0.3) 0%, transparent 50%);
    animation: crowdfundingFloat 15s ease-in-out infinite;
}

.crowdfunding-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="crowdfunding-grid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(139,92,246,0.2)"/><path d="M5 10h10M10 5v10" stroke="rgba(147,51,234,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23crowdfunding-grid)"/></svg>');
    opacity: 0.7;
}

@keyframes crowdfundingFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-35px) rotate(3deg) scale(1.03); }
    50% { transform: translateY(-20px) rotate(-2deg) scale(0.97); }
    75% { transform: translateY(-40px) rotate(2deg) scale(1.02); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6, #ffffff, #a855f7);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-family: 'Orbitron', monospace;
    text-shadow: none;
    line-height: 1.1;
    animation: crowdfundingGradientShift 4s ease-in-out infinite;
    position: relative;
}

.hero-text h1::before {
    content: attr(data-text);
    position: absolute;
    top: 3px;
    left: 3px;
    color: rgba(139, 92, 246, 0.4);
    z-index: -1;
    animation: crowdfundingGlitch 4s infinite;
}

@keyframes crowdfundingGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes crowdfundingGlitch {
    0%, 90%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-1px, -2px); }
    60% { transform: translate(2px, 1px); }
    80% { transform: translate(1px, -1px); }
}

.hero-subtitle {
    margin-bottom: 3rem;
}

.hero-subtitle p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-family: 'Exo 2', sans-serif;
}

.price-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.price-range {
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(139, 92, 246, 0.1));
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    background-clip: padding-box;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-range::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6, #a855f7);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: subtract;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    animation: crowdfundingBorderShift 3s linear infinite;
}

@keyframes crowdfundingBorderShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.price-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Rajdhani', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, #8b5cf6, #6366f1, #8b5cf6);
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 10px 30px rgba(139, 92, 246, 0.4),
        0 0 0 0 rgba(139, 92, 246, 0.5);
    font-family: 'Rajdhani', sans-serif;
    position: relative;
    overflow: hidden;
    animation: crowdfundingButtonPulse 2s infinite;
}

.btn-large::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.5s;
}

@keyframes crowdfundingButtonPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4), 0 0 0 0 rgba(139, 92, 246, 0.5); }
    50% { box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6), 0 0 0 10px rgba(139, 92, 246, 0); }
}

.btn-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 20px 50px rgba(139, 92, 246, 0.6),
        0 0 30px rgba(168, 85, 247, 0.8);
    background-position: 100% 0;
    animation: none;
}

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

.btn-large:active {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.1s ease;
}

/* Best Product Videos Section */
.best-product-videos {
    padding: 120px 0;
    background:
        linear-gradient(135deg, #f8faff 0%, #e0e7ff 50%, #f0f4ff 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="crowdfunding-dots" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="rgba(99,102,241,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23crowdfunding-dots)"/></svg>');
    position: relative;
    overflow: hidden;
}

.best-product-videos::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    animation: crowdfundingPatternMove 18s linear infinite;
    z-index: 1;
}

@keyframes crowdfundingPatternMove {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(360deg) scale(1.1); }
}

.best-product-videos .section-header h2 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #1e1b4b, #3730a3, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 4rem;
    font-family: 'Orbitron', monospace;
    font-weight: 800;
    position: relative;
    z-index: 2;
    text-shadow: none;
    letter-spacing: -1px;
}

.best-product-videos .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-radius: 2px;
    animation: crowdfundingUnderlineGlow 2s ease-in-out infinite alternate;
}

@keyframes crowdfundingUnderlineGlow {
    0% { box-shadow: 0 0 5px rgba(139, 92, 246, 0.5); width: 100px; }
    100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.8); width: 150px; }
}

.video-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.video-showcase-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: 25px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(99, 102, 241, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
    backdrop-filter: blur(10px);
    position: relative;
}

.video-showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, rgba(139, 92, 246, 0.4), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: subtract;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-showcase-item:hover {
    transform: translateY(-15px) scale(1.03) rotateX(5deg);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(99, 102, 241, 0.2),
        0 0 50px rgba(139, 92, 246, 0.3);
}

.video-showcase-item:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(99, 102, 241, 0.4), rgba(168, 85, 247, 0.4));
}

.video-showcase-item .video-thumbnail {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 25px 25px 0 0;
}

/* Enhanced image effects for crowdfunding thumbnails */
.video-showcase-item .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1.05) contrast(1.1) saturate(1.15) hue-rotate(5deg);
    border-radius: 25px 25px 0 0;
}

.video-showcase-item:hover .video-thumbnail img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1.15) contrast(1.25) saturate(1.35) hue-rotate(-3deg);
}

.video-showcase-item .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(99, 102, 241, 0.3),
        rgba(139, 92, 246, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(5px);
}

.video-showcase-item:hover .video-overlay {
    opacity: 1;
    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0.4),
        rgba(99, 102, 241, 0.3),
        rgba(168, 85, 247, 0.4));
}

.video-showcase-item .play-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.7) rotate(-90deg);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 3px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.video-showcase-item .play-icon svg {
    margin-left: 3px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.video-showcase-item:hover .play-icon {
    transform: scale(1) rotate(0deg);
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 10px 20px rgba(139, 92, 246, 0.5),
        0 0 30px rgba(99, 102, 241, 0.6);
    animation: crowdfundingPlayIconPulse 1.5s infinite;
}

@keyframes crowdfundingPlayIconPulse {
    0%, 100% { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 10px 20px rgba(139, 92, 246, 0.5), 0 0 30px rgba(99, 102, 241, 0.6); }
    50% { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 15px 30px rgba(139, 92, 246, 0.7), 0 0 40px rgba(99, 102, 241, 0.8); }
}

.video-showcase-item .video-duration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-showcase-item:hover .video-duration {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.video-showcase-item h3 {
    padding: 2rem 1.5rem;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #1e1b4b, #3730a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.video-showcase-item:hover h3 {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
}

/* Advanced Package Section */
.advanced-package {
    padding: 120px 0;
    background:
        linear-gradient(135deg, #ffffff 0%, #f8faff 50%, #ffffff 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="crowdfunding-hexagon" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,3 27,9 27,21 15,27 3,21 3,9" fill="none" stroke="rgba(99,102,241,0.04)" stroke-width="1.5"/></pattern></defs><rect width="100" height="100" fill="url(%23crowdfunding-hexagon)"/></svg>');
    position: relative;
    overflow: hidden;
}

.advanced-package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.06) 0%, transparent 50%);
    animation: crowdfundingPackageFloat 22s ease-in-out infinite;
}

@keyframes crowdfundingPackageFloat {
    0%, 100% { transform: translateX(0%) translateY(0%); }
    25% { transform: translateX(2%) translateY(-1%); }
    50% { transform: translateX(-1%) translateY(2%); }
    75% { transform: translateX(-2%) translateY(-1%); }
}

.package-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.package-header h2 {
    font-size: 3.2rem;
    background: linear-gradient(135deg, #1e1b4b, #3730a3, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    font-family: 'Orbitron', monospace;
    font-weight: 800;
    position: relative;
    letter-spacing: -1px;
}

.package-header h2::before {
    content: '🚀';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    animation: crowdfundingPackageBounce 2s ease-in-out infinite;
}

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

.package-details h3 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #1e1b4b, #3730a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    position: relative;
}

.package-details h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-radius: 2px;
}

/* Enhanced Package Features Grid for Crowdfunding */
.package-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
}

.feature-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)),
        linear-gradient(135deg, rgba(248, 250, 255, 0.9), rgba(224, 231, 255, 0.7));
    border-radius: 20px;
    padding: 2rem;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08),
        0 8px 20px rgba(99, 102, 241, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, rgba(139, 92, 246, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: subtract;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 15px 30px rgba(99, 102, 241, 0.15),
        0 0 40px rgba(139, 92, 246, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(99, 102, 241, 0.4), rgba(168, 85, 247, 0.4));
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    box-shadow:
        0 10px 25px rgba(139, 92, 246, 0.3),
        0 5px 15px rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow:
        0 15px 35px rgba(99, 102, 241, 0.4),
        0 8px 20px rgba(139, 92, 246, 0.3);
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e1b4b, #3730a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-content h4 {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
}

.feature-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
}

.feature-highlight {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(99, 102, 241, 0.1));
    color: #6366f1;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.feature-card:hover .feature-highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    color: #8b5cf6;
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px) scale(1.05);
}

/* Package Benefits for Crowdfunding */
.package-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid transparent;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(99, 102, 241, 0.3)) border-box;
}

.benefit-item {
    background: linear-gradient(135deg, rgba(248, 250, 255, 0.9), rgba(224, 231, 255, 0.8));
    padding: 1rem 2rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: #1e1b4b;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(99, 102, 241, 0.1));
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

.benefit-icon {
    font-size: 1.4rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(3px 3px 6px rgba(139, 92, 246, 0.3));
}

/* Other Video Types Section for Crowdfunding */
.other-video-types {
    padding: 120px 0;
    background:
        linear-gradient(135deg, #f8faff 0%, #e0e7ff 50%, #f0f4ff 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="crowdfunding-triangle" width="26" height="26" patternUnits="userSpaceOnUse"><polygon points="13,3 23,19 3,19" fill="none" stroke="rgba(99,102,241,0.05)" stroke-width="1.2"/></pattern></defs><rect width="100" height="100" fill="url(%23crowdfunding-triangle)"/></svg>');
    position: relative;
    overflow: hidden;
}

.other-video-types::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background:
        radial-gradient(ellipse at 25% 75%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 25%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    animation: crowdfundingTypesSpin 28s linear infinite;
    z-index: 1;
}

@keyframes crowdfundingTypesSpin {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(360deg) scale(1.1); }
}

.other-video-types .section-header h2 {
    font-size: 3.2rem;
    background: linear-gradient(135deg, #1e1b4b, #3730a3, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 4rem;
    font-family: 'Orbitron', monospace;
    font-weight: 800;
    position: relative;
    z-index: 2;
    letter-spacing: -1px;
    animation: crowdfundingTitlePulse 3s ease-in-out infinite;
}

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

.video-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.video-type-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)),
        linear-gradient(135deg, rgba(248, 250, 255, 0.8), rgba(224, 231, 255, 0.6));
    border-radius: 25px;
    padding: 3rem;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 10px 25px rgba(99, 102, 241, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid transparent;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.video-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1, #a855f7, #8b5cf6);
    background-size: 300% 300%;
    animation: crowdfundingCardBorderShift 4s ease-in-out infinite;
}

@keyframes crowdfundingCardBorderShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.video-type-card:hover {
    transform: translateY(-15px) scale(1.02) rotateX(3deg);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.15),
        0 20px 40px rgba(99, 102, 241, 0.2),
        0 0 60px rgba(139, 92, 246, 0.3);
}

.video-type-card:hover::before {
    height: 8px;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.price-tag {
    background: linear-gradient(135deg, #8b5cf6, #6366f1, #8b5cf6);
    background-size: 200% 200%;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 2rem;
    font-family: 'Rajdhani', sans-serif;
    box-shadow:
        0 8px 20px rgba(139, 92, 246, 0.4),
        0 3px 10px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
    animation: crowdfundingPriceShimmer 3s ease-in-out infinite;
    letter-spacing: 1px;
}

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

.video-type-card:hover .price-tag::before {
    left: 100%;
}

@keyframes crowdfundingPriceShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.video-type-card h3 {
    font-size: 2rem;
    background: linear-gradient(135deg, #1e1b4b, #3730a3, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.video-type-card:hover h3 {
    background: linear-gradient(135deg, #8b5cf6, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-3px);
}

.video-type-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
    font-family: 'Exo 2', sans-serif;
    transition: all 0.3s ease;
}

.video-type-card:hover p {
    color: #333;
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, #1e1b4b, #3730a3, #1e1b4b);
    background-size: 200% 200%;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    box-shadow:
        0 8px 20px rgba(30, 27, 75, 0.4),
        0 3px 10px rgba(55, 48, 163, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-secondary::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.5s;
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 15px 30px rgba(30, 27, 75, 0.5),
        0 8px 20px rgba(55, 48, 163, 0.4),
        0 0 40px rgba(139, 92, 246, 0.3);
    background-position: 100% 0;
}

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

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.faq-section .section-header h2 {
    color: white;
}

.faq-section .section-subtitle {
    color: #cbd5e1;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.faq-item p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive Design for FAQ */
@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-item {
        padding: 2rem;
        margin: 0 0.5rem;
    }
}

/* Mobile responsive for crowdfunding page */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.8rem;
        animation: crowdfundingMobileTextPulse 2s ease-in-out infinite;
    }

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

    .hero-subtitle p {
        font-size: 1.2rem;
    }

    .price-text {
        font-size: 2.2rem;
    }

    .video-showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
    }

    .video-types-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .package-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .package-benefits {
        gap: 1rem;
    }

    .benefit-item {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    /* Mobile-specific animations */
    .video-showcase-item:hover {
        transform: translateY(-8px) scale(1.02);
    }

    .video-type-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

@media (max-width: 480px) {
    .crowdfunding-hero {
        padding: 120px 0 60px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .price-text {
        font-size: 1.8rem;
    }

    .btn-large {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
        border-radius: 40px;
    }

    .video-showcase-item .video-thumbnail {
        height: 280px;
    }

    .package-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.2rem;
    }

    .video-type-card {
        padding: 2.5rem;
    }

    .video-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .package-benefits {
        flex-direction: column;
        align-items: center;
    }

    /* Enhanced mobile touch interactions */
    .btn-large:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }

    .video-showcase-item:active {
        transform: scale(0.98);
    }

    .video-type-card:active {
        transform: scale(0.98);
    }

    .faq-question:active {
        transform: scale(0.99);
    }
}