* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Orbitron', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #e9bd2c;
            --secondary: #1d1b1b;
            --accent: #e74c3c;
            --light: #ecf0f1;
            --dark: #070707;
            --success: #2ecc71;
            --warning: #f39c12;
            --info: #17a2b8;
            --neon-glow: 0 0 10px rgba(233, 189, 44, 0.7), 0 0 20px rgba(233, 189, 44, 0.5), 0 0 30px rgba(233, 189, 44, 0.3);
            --hologram-blue: rgba(64, 224, 208, 0.3);
            --hologram-purple: rgba(138, 43, 226, 0.3);
        }

        @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&display=swap');

        body {
            background: radial-gradient(ellipse at bottom, #0d1d31 0%, #0c0d13 100%);
            color: #f5f5f5;
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
        }

        /* Futuristic Background Elements */
        .cyber-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(233, 189, 44, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(233, 189, 44, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: -1;
            opacity: 0.3;
        }

        .floating-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            background: rgba(233, 189, 44, 0.7);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) translateX(100px);
                opacity: 0;
            }
        }

        .hologram-lines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(233, 189, 44, 0.1) 2px,
                rgba(233, 189, 44, 0.1) 4px
            );
            z-index: -1;
            opacity: 0.3;
        }

        .scan-line {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, transparent, var(--primary), transparent);
            box-shadow: 0 0 10px var(--primary);
            z-index: 100;
            animation: scan 4s linear infinite;
            opacity: 0.7;
        }

        @keyframes scan {
            0% {
                top: 0%;
            }
            100% {
                top: 100%;
            }
        }

        .binary-rain {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.1;
        }

        .binary-digit {
            position: absolute;
            color: var(--primary);
            font-family: 'Courier New', monospace;
            font-size: 14px;
            animation: fall linear infinite;
        }

        @keyframes fall {
            to {
                transform: translateY(100vh);
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background: rgba(13, 13, 13, 0.8);
            color: white;
            padding: 3rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(233, 189, 44, 0.3);
            box-shadow: 0 0 30px rgba(233, 189, 44, 0.2);
        }

        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(233, 189, 44, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(233, 189, 44, 0.1) 0%, transparent 50%);
            z-index: 0;
        }

        header .container {
            position: relative;
            z-index: 1;
        }

        header h1 {
            font-size: 4rem;
            margin-bottom: 0.5rem;
            text-shadow: 0 0 15px rgba(233, 189, 44, 0.8);
            letter-spacing: 3px;
            font-weight: 900;
            background: linear-gradient(to right, #fff, var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
        }

        header p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
            letter-spacing: 1px;
        }

        .logo {
            width: 350px;
            margin-bottom: 1rem;
            filter: drop-shadow(0 0 15px rgba(233, 189, 44, 0.7)) brightness(1.2);
            animation: pulse 4s infinite alternate;
        }

        @keyframes pulse {
            0% {
                filter: drop-shadow(0 0 10px rgba(233, 189, 44, 0.5)) brightness(1);
            }
            100% {
                filter: drop-shadow(0 0 20px rgba(233, 189, 44, 0.9)) brightness(1.3);
            }
        }

        .logo-container {
            display: flex;
            justify-content: center;
            max-width: 350px;
            margin: 0 auto;
        }

        span {
            color: var(--primary);
            text-shadow: 0 0 10px rgba(233, 189, 44, 0.8);
        }

        .tools-section {
            padding: 6rem 0;
            position: relative;
        }

        .tools-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            box-shadow: 0 0 10px var(--primary);
        }

        .section-title {
            text-align: center;
            margin-bottom: 5rem;
            color: var(--light);
            position: relative;
            font-size: 3rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 700;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 200px;
            height: 4px;
            background: linear-gradient(to right, transparent, var(--primary), transparent);
            margin: 20px auto;
            border-radius: 2px;
            box-shadow: var(--neon-glow);
        }

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .tool-card {
            background: rgba(20, 20, 30, 0.7);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: all 0.5s ease;
            position: relative;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(233, 189, 44, 0.3);
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .tool-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(233, 189, 44, 0.1) 0%, transparent 50%);
            z-index: 0;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .tool-card::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--primary), transparent, var(--primary));
            z-index: -1;
            border-radius: 17px;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .tool-card:hover {
            transform: translateY(-20px) scale(1.03) rotateX(5deg);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), var(--neon-glow);
            border-color: rgba(233, 189, 44, 0.7);
        }

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

        .tool-card:hover::after {
            opacity: 1;
            animation: border-glow 2s linear infinite;
        }

        @keyframes border-glow {
            0% {
                background: linear-gradient(45deg, var(--primary), transparent, var(--primary));
            }
            50% {
                background: linear-gradient(45deg, transparent, var(--primary), transparent);
            }
            100% {
                background: linear-gradient(45deg, var(--primary), transparent, var(--primary));
            }
        }

        .tool-icon {
            background: linear-gradient(135deg, var(--primary), #f1c40f);
            color: var(--secondary);
            height: 160px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
        }

        .tool-icon::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(to bottom right, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 50%);
            transform: rotate(30deg);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(30deg);
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(30deg);
            }
        }

        .tool-content {
            padding: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .tool-content h3 {
            color: var(--light);
            margin-bottom: 1.2rem;
            font-size: 1.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .tool-content p {
            color: #aaa;
            margin-bottom: 2rem;
            line-height: 1.7;
            font-size: 1.1rem;
        }

        .tool-btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary), #f1c40f);
            color: var(--secondary);
            padding: 1rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(233, 189, 44, 0.4);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
        }

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

        .tool-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 25px rgba(233, 189, 44, 0.7);
            color: var(--dark);
        }

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

        .about-section {
            background: rgba(10, 10, 15, 0.8);
            color: white;
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(233, 189, 44, 0.3);
            border-bottom: 1px solid rgba(233, 189, 44, 0.3);
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(233, 189, 44, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(233, 189, 44, 0.1) 0%, transparent 50%);
            z-index: 0;
        }

        .about-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
            position: relative;
            z-index: 1;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
            position: relative;
        }

        .profile-img {
            width: 320px;
            height: 320px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary);
            box-shadow: 0 0 30px rgba(233, 189, 44, 0.7);
            transition: all 0.5s ease;
            position: relative;
            z-index: 1;
        }

        .hologram-effect {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 340px;
            height: 340px;
            border-radius: 50%;
            background: conic-gradient(from 0deg, var(--primary), var(--hologram-blue), var(--hologram-purple), var(--primary));
            opacity: 0.3;
            filter: blur(20px);
            z-index: 0;
            animation: rotate 10s linear infinite;
        }

        @keyframes rotate {
            0% {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            100% {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        .profile-img:hover {
            transform: scale(1.08);
            box-shadow: 0 0 50px rgba(233, 189, 44, 0.9);
        }

        .about-content {
            flex: 2;
            min-width: 300px;
        }

        .about-content h2 {
            margin-bottom: 2rem;
            font-size: 3rem;
            color: var(--light);
            text-shadow: 0 0 15px rgba(233, 189, 44, 0.7);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .about-content p {
            margin-bottom: 2rem;
            font-size: 1.2rem;
            line-height: 1.8;
            color: #ddd;
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), #f1c40f);
            color: var(--secondary);
            border-radius: 50%;
            font-size: 1.7rem;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(233, 189, 44, 0.4);
            position: relative;
            overflow: hidden;
        }

        .social-link::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.5s ease;
        }

        .social-link:hover {
            transform: translateY(-8px) scale(1.15);
            box-shadow: 0 10px 25px rgba(233, 189, 44, 0.7);
        }

        .social-link:hover::before {
            left: 100%;
        }

        footer {
            background: rgba(5, 5, 10, 0.9);
            color: white;
            text-align: center;
            padding: 3rem 0;
            position: relative;
            backdrop-filter: blur(10px);
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            box-shadow: 0 0 10px var(--primary);
        }

        footer p {
            margin-bottom: 0.5rem;
            opacity: 0.8;
            font-size: 1.1rem;
        }

        .neon-text {
            color: var(--primary);
            text-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary);
            animation: flicker 3s infinite alternate;
        }

        @keyframes flicker {
            0%, 18%, 22%, 25%, 53%, 57%, 100% {
                text-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary);
            }
            20%, 24%, 55% {
                text-shadow: none;
            }
        }

        @media (max-width: 768px) {
            .tools-grid {
                grid-template-columns: 1fr;
            }
            
            .about-container {
                flex-direction: column;
                text-align: center;
            }
            
            .social-links {
                justify-content: center;
            }
            
            header h1 {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .logo {
                width: 280px;
            }
        }
