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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0a0a0a;
            color: #e5e7eb;
            line-height: 1.6;
            min-height: 100vh;
        }

        .noise-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            opacity: 0.02;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            position: relative;
            z-index: 1;
        }

        .header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .header h1 {
            font-size: 4rem;
            font-weight: 900;
            color: #ffffff;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            position: relative;
        }

        .header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #ff6b35, #f7931e);
            border-radius: 2px;
        }

        .subtitle {
            font-size: 1.3rem;
            color: #9ca3af;
            font-weight: 400;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .intro-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            border: 1px solid #333333;
            border-radius: 16px;
            padding: 3rem;
            margin-bottom: 4rem;
            position: relative;
            overflow: hidden;
        }

        .intro-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #ff6b35, transparent);
        }

        .intro-text {
            font-size: 1.2rem;
            color: #d1d5db;
            text-align: center;
            line-height: 1.8;
        }

        .resources-container {
            display: grid;
            gap: 2rem;
        }

        .tech-stack {
            background: #111111;
            border: 1px solid #262626;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .tech-stack:hover {
            border-color: #404040;
            transform: translateY(-2px);
        }

        .stack-header {
            background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
            padding: 1.5rem 2rem;
            border-bottom: 1px solid #262626;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .stack-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .stack-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #ffffff;
        }

        .stack-description {
            font-size: 0.9rem;
            color: #9ca3af;
            margin-top: 0.5rem;
        }

        .resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1px;
            background: #262626;
        }

        .resource-card {
            background: #111111;
            padding: 1.5rem;
            transition: all 0.2s ease;
            position: relative;
        }

        .resource-card:hover {
            background: #1a1a1a;
        }

        .resource-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            opacity: 0;
            transition: opacity 0.2s ease;
        }

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

        .resource-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.5rem;
        }

        .resource-description {
            font-size: 0.9rem;
            color: #9ca3af;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .resource-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #ff6b35;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.2s ease;
        }

        .resource-link:hover {
            color: #f7931e;
        }

        .resource-link::after {
            content: '→';
            transition: transform 0.2s ease;
        }

        .resource-link:hover::after {
            transform: translateX(3px);
        }

        .footer {
            margin-top: 6rem;
            text-align: center;
            padding: 3rem 0;
            border-top: 1px solid #262626;
        }

        .footer-content {
            margin-bottom: 2rem;
        }

        .footer-text {
            font-size: 1.1rem;
            color: #d1d5db;
            margin-bottom: 1.5rem;
        }

        .social-grid {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: #1a1a1a;
            border: 1px solid #333333;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9ca3af;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.2s ease;
        }

        .social-link:hover {
            border-color: #ff6b35;
            color: #ff6b35;
            transform: translateY(-2px);
        }

        .credits {
            font-size: 0.8rem;
            color: #6b7280;
            margin-top: 2rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 2rem 1rem;
            }
            
            .header h1 {
                font-size: 2.5rem;
            }
            
            .intro-section {
                padding: 2rem;
            }
            
            .stack-header {
                padding: 1rem 1.5rem;
            }
            
            .resource-card {
                padding: 1rem;
            }
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .tech-stack {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .tech-stack:nth-child(1) { animation-delay: 0.1s; }
        .tech-stack:nth-child(2) { animation-delay: 0.2s; }
        .tech-stack:nth-child(3) { animation-delay: 0.3s; }
        .tech-stack:nth-child(4) { animation-delay: 0.4s; }
        .tech-stack:nth-child(5) { animation-delay: 0.5s; }
        .tech-stack:nth-child(6) { animation-delay: 0.6s; }
