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

        :root {
            --primary: #e63946;
            --secondary: #0a0e27;
            --accent: #1e90ff;
            --light: #f8f9fa;
            --dark: #0d1117;
            --dark-card: #161b22;
            --darker: #010409;
            --spider-red: #e23636;
            --spider-blue: #4dabf7;
            --web-gray: #8b949e;
            --border-color: #30363d;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #c9d1d9;
            background: var(--dark);
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(230, 57, 70, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(77, 171, 247, 0.1) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        body > * {
            position: relative;
            z-index: 1;
        }

        /* Navigation */
        nav {
            background: var(--darker);
            border-bottom: 2px solid var(--border-color);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
            backdrop-filter: blur(10px);
        }

        nav .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary);
            text-shadow: 0 0 20px rgba(230, 57, 70, 0.8),
                         0 0 40px rgba(230, 57, 70, 0.4);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from {
                text-shadow: 0 0 20px rgba(230, 57, 70, 0.8),
                             0 0 40px rgba(230, 57, 70, 0.4);
            }
            to {
                text-shadow: 0 0 30px rgba(230, 57, 70, 1),
                             0 0 60px rgba(230, 57, 70, 0.6);
            }
        }

        .logo span {
            color: white;
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

        nav a {
            color: #c9d1d9;
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 500;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--spider-blue));
            transition: width 0.3s;
        }

        nav a:hover {
            color: var(--primary);
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0d1117 0%, #1a0a0f 50%, #0a1628 100%);
            background-image: url("assets/bannerbg.png");
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            color: white;
            padding: 6rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-bottom: 3px solid var(--border-color);
        }

        /* .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(30deg, transparent 48%, rgba(230, 57, 70, 0.1) 49%, rgba(230, 57, 70, 0.1) 51%, transparent 52%),
                linear-gradient(150deg, transparent 48%, rgba(77, 171, 247, 0.1) 49%, rgba(77, 171, 247, 0.1) 51%, transparent 52%),
                linear-gradient(60deg, transparent 48%, rgba(230, 57, 70, 0.05) 49%, rgba(230, 57, 70, 0.05) 51%, transparent 52%),
                linear-gradient(120deg, transparent 48%, rgba(77, 171, 247, 0.05) 49%, rgba(77, 171, 247, 0.05) 51%, transparent 52%);
            background-size: 80px 80px, 80px 80px, 60px 60px, 60px 60px;
            opacity: 0.5;
            animation: webSlide 20s linear infinite;
        } */

        @keyframes webSlide {
            0% {
                background-position: 0 0, 0 0, 0 0, 0 0;
            }
            100% {
                background-position: 80px 80px, -80px 80px, 60px 60px, -60px 60px;
            }
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(230, 57, 70, 0.2) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 
                0 0 10px rgba(230, 57, 70, 0.8),
                0 0 20px rgba(230, 57, 70, 0.6),
                2px 2px 8px rgba(0,0,0,0.8);
            background: linear-gradient(135deg, #fff 0%, var(--primary) 50%, var(--spider-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: #c9d1d9;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--primary) 0%, #ff1744 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 
                0 4px 15px rgba(230, 57, 70, 0.4),
                0 0 30px rgba(230, 57, 70, 0.2);
            border: 2px solid rgba(230, 57, 70, 0.3);
            margin-top: 20%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 6px 20px rgba(230, 57, 70, 0.6),
                0 0 40px rgba(230, 57, 70, 0.4);
            border-color: var(--primary);
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        /* Section Titles */
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #c9d1d9;
            position: relative;
            padding-bottom: 1rem;
            text-shadow: 0 0 20px rgba(230, 57, 70, 0.5);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--spider-blue));
            border-radius: 2px;
            box-shadow: 0 0 10px var(--primary);
        }

        /* Product Grid */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .product-card {
            background: var(--dark-card);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 
                0 10px 30px rgba(0,0,0,0.5),
                0 0 0 1px var(--border-color);
            transition: all 0.3s;
            border: 1px solid var(--border-color);
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 
                0 15px 40px rgba(0,0,0,0.7),
                0 0 30px rgba(230, 57, 70, 0.3),
                0 0 0 1px var(--primary);
            border-color: var(--primary);
        }

        .product-header {
            background: linear-gradient(135deg, #1a0a0f 0%, #0a1628 100%);
            color: white;
            padding: 1.5rem;
            text-align: center;
            border-bottom: 2px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .product-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.2), transparent);
            animation: shimmer 3s infinite;
        }

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

        .product-header h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            text-shadow: 0 0 10px rgba(230, 57, 70, 0.8);
            position: relative;
        }

        .product-header p {
            font-size: 0.9rem;
            opacity: 0.9;
            color: var(--web-gray);
            position: relative;
        }

        .product-videos {
            padding: 1.5rem;
            background: var(--darker);
            border-bottom: 1px solid var(--border-color);
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 1rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }

        .video-wrapper:last-child {
            margin-bottom: 0;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .product-links {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            background: var(--dark-card);
        }

        .link-section {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .link-section h4 {
            color: #c9d1d9;
            font-size: 1rem;
            margin-bottom: 0.5rem;
            text-shadow: 0 0 5px rgba(230, 57, 70, 0.3);
        }

        .link-buttons {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .product-link {
            flex: 1;
            min-width: 120px;
            padding: 0.75rem 1.5rem;
            text-align: center;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.2s;
            display: inline-block;
            border: 1px solid transparent;
        }

        .product-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            filter: brightness(1.2);
        }

        .etsy-link {
            background: #f1641e;
            color: white;
            box-shadow: 0 0 10px rgba(241, 100, 30, 0.3);
        }

        .etsy-link:hover {
            box-shadow: 0 0 20px rgba(241, 100, 30, 0.6);
        }

        .ebay-link {
            background: #0064d2;
            color: white;
            box-shadow: 0 0 10px rgba(0, 100, 210, 0.3);
        }

        .ebay-link:hover {
            box-shadow: 0 0 20px rgba(0, 100, 210, 0.6);
        }

        .cults-link {
            background: #7c3aed;
            color: white;
            box-shadow: 0 0 10px rgba(124, 58, 237, 0.3);
        }

        .cults-link:hover {
            box-shadow: 0 0 20px rgba(124, 58, 237, 0.6);
        }

        /* Tutorial Section */
        .tutorial-section {
            background: var(--dark-card);
            border-radius: 15px;
            padding: 3rem;
            margin-bottom: 4rem;
            box-shadow: 
                0 10px 30px rgba(0,0,0,0.5),
                0 0 0 1px var(--border-color);
            border: 1px solid var(--border-color);
        }

        .tutorial-section h2 {
            color: #c9d1d9;
            margin-bottom: 2rem;
            text-align: center;
            font-size: 2rem;
            text-shadow: 0 0 10px rgba(230, 57, 70, 0.5);
        }

        .tutorial-video {
            max-width: 800px;
            margin: 0 auto;
        }

        /* Social Media */
        .social-section {
            background: var(--dark-card);
            border-radius: 15px;
            padding: 3rem;
            text-align: center;
            margin-bottom: 4rem;
            box-shadow: 
                0 10px 30px rgba(0,0,0,0.5),
                0 0 0 1px var(--border-color);
            border: 1px solid var(--border-color);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .social-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: #c9d1d9;
            transition: all 0.3s;
        }

        .social-link:hover {
            transform: scale(1.1);
            color: white;
        }

        .social-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            box-shadow: 
                0 4px 10px rgba(0,0,0,0.5),
                0 0 20px rgba(0,0,0,0.3);
            transition: all 0.3s;
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .social-link:hover .social-icon {
            box-shadow: 
                0 6px 20px rgba(0,0,0,0.7),
                0 0 30px rgba(255, 255, 255, 0.3);
        }

        .youtube { background: #ff0000; border: 2px solid #ffff ;}
        .youtube:hover { box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6), 0 0 30px rgba(255, 0, 0, 0.4); }
        
        .instagram { background: #405DE6 100%; border: 2px solid #6228d7 ; }
        /* .instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); } */
        .instagram:hover { box-shadow: 0 6px 20px rgba(220, 39, 67, 0.6), 0 0 30px rgba(220, 39, 67, 0.4); }
        
        .facebook { background: #1877f2; }
        .facebook:hover { box-shadow: 0 6px 20px rgba(24, 119, 242, 0.6), 0 0 30px rgba(24, 119, 242, 0.4); }
        
        .tiktok { background: #000000; border: 2px solid #00f2ea; }
        .tiktok:hover { box-shadow: 0 6px 20px rgba(0, 242, 234, 0.6), 0 0 30px rgba(0, 242, 234, 0.4); }
        
        .twitter { background: #1da1f2; }
        .twitter:hover { box-shadow: 0 6px 20px rgba(29, 161, 242, 0.6), 0 0 30px rgba(29, 161, 242, 0.4); }

        /* Contact Form */
        .contact-section {
            background: var(--dark-card);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 
                0 10px 30px rgba(0,0,0,0.5),
                0 0 0 1px var(--border-color);
            border: 1px solid var(--border-color);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #c9d1d9;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s;
            background: var(--darker);
            color: #c9d1d9;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
            background: var(--dark-card);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .form-group select {
            cursor: pointer;
        }

        .form-group option {
            background: var(--darker);
            color: #c9d1d9;
        }

        .submit-button {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, var(--primary), #ff1744);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
            border: 2px solid rgba(230, 57, 70, 0.3);
        }

        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
            border-color: var(--primary);
        }

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

        /* Thank You Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            animation: fadeIn 0.3s ease-in-out;
        }

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

        .modal-content {
            background: linear-gradient(135deg, var(--dark-card) 0%, var(--darker) 100%);
            margin: 10% auto;
            padding: 3rem;
            border: 2px solid var(--primary);
            border-radius: 20px;
            width: 90%;
            max-width: 500px;
            text-align: center;
            position: relative;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.8),
                0 0 40px rgba(230, 57, 70, 0.4);
            animation: slideIn 0.4s ease-out;
        }

        @keyframes slideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-content::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--primary), var(--spider-blue), var(--primary));
            border-radius: 20px;
            z-index: -1;
            filter: blur(10px);
            opacity: 0.5;
            animation: rotate 3s linear infinite;
        }

        @keyframes rotate {
            0% { filter: blur(10px) hue-rotate(0deg); }
            100% { filter: blur(10px) hue-rotate(360deg); }
        }

        .modal-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            animation: bounce 0.6s ease-in-out;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .modal-content h2 {
            color: #c9d1d9;
            font-size: 2rem;
            margin-bottom: 1rem;
            text-shadow: 0 0 20px rgba(230, 57, 70, 0.6);
        }

        .modal-content p {
            color: var(--web-gray);
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .close-modal {
            background: linear-gradient(135deg, var(--primary), #ff1744);
            color: white;
            border: none;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: bold;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
            border: 2px solid rgba(230, 57, 70, 0.3);
        }

        .close-modal:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
            border-color: var(--primary);
        }

        .close-modal:active {
            transform: translateY(0);
        }

        /* Footer */
        footer {
            background: var(--darker);
            color: #c9d1d9;
            text-align: center;
            padding: 2rem;
            margin-top: 4rem;
            border-top: 2px solid var(--border-color);
        }

        footer p {
            margin-bottom: 1rem;
        }

        footer p:last-child {
            color: var(--web-gray);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            nav ul {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
                width: 100%;
                margin-top: 1rem;
            }

            .product-grid {
                grid-template-columns: 1fr;
            }

            .link-buttons {
                flex-direction: column;
            }

            .product-link {
                min-width: 100%;
            }

            .cta-button{
                margin-top: 40%;
            }
        }