 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-bg: #0a0e27;
            --secondary-bg: #141829;
            --accent-color: #00d9ff;
            --danger-color: #ff4444;
            --warning-color: #ffaa00;
            --success-color: #4ade80;
            --text-primary: #ffffff;
            --text-secondary: #8892b0;
            --card-bg: #1a1f3a;
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
             --bg-primary: #0f1419;
            --bg-secondary: #1a1f2e;
            --bg-card: #1e2530;
            --accent-primary: #3b82f6;
            --accent-hover: #2563eb;
            --text-primary: #e5e7eb;
            --text-secondary: #9ca3af;
            --text-muted: #6b7280;
            --border-color: rgba(255, 255, 255, 0.1);
            --danger-color: #ef4444;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: var(--primary-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
 /* Animated Background */
        .bg-animation {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            overflow: hidden;
        }

        .bg-circle {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.15;
            animation: float 20s infinite;
        }

        .bg-circle:nth-child(1) {
            width: 500px;
            height: 500px;
            background: var(--accent-color);
            top: -200px;
            left: -200px;
            animation-delay: 0s;
        }

        .bg-circle:nth-child(2) {
            width: 400px;
            height: 400px;
            background: var(--danger-color);
            top: 50%;
            right: -150px;
            animation-delay: 5s;
        }

        .bg-circle:nth-child(3) {
            width: 600px;
            height: 600px;
            background: #764ba2;
            bottom: -250px;
            left: 50%;
            animation-delay: 10s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(50px, -50px) scale(1.1); }
            66% { transform: translate(-50px, 50px) scale(0.9); }
        }

         /* Top Navigation */
        .top-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 40px;
            border-bottom: 1px solid var(--border-color);
        }

          .logo {
            font-size: 28px;
            font-weight: bold;
            background: var(--gradient-3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-menu a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--text-white);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .language-toggle {
            padding: 6px 12px;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-white);
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .language-toggle:hover {
            border-color: var(--accent-cyan);
        }

        .theme-toggle {
            width: 40px;
            height: 40px;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 18px;
        }

        .theme-toggle:hover {
            border-color: var(--accent-cyan);
            background: var(--hover-bg);
        }

        /* Header */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(15, 20, 25, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
            padding: 16px 0;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .brand-logo svg {
            color: var(--accent-primary);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 32px;
        }

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--text-primary);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .lang-btn, .theme-toggle {
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
            padding: 6px 12px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 13px;
            transition: all 0.2s;
        }

        .lang-btn.active {
            background: var(--accent-primary);
            color: var(--bg-primary);
            border-color: var(--accent-primary);
        }

        .theme-toggle {
            padding: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 120px 0 80px;
            min-height: 100vh;
        }

        .content-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .gallery-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .gallery-description {
            font-size: 1.125rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Filter Tabs */
        .filter-tabs {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-bottom: 48px;
            flex-wrap: wrap;
        }

        .filter-tab {
            padding: 10px 20px;
            background: transparent;
            border: 1px solid var(--border-color);
            border-radius: 20px;
            color: var(--text-secondary);
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s;
        }

        .filter-tab.active {
            background: var(--accent-primary);
            color: var(--bg-primary);
            border-color: var(--accent-primary);
        }

        .filter-tab:hover:not(.active) {
            border-color: var(--accent-primary);
            color: var(--text-primary);
        }

        /* Scam Grid */
        .scam-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 80px;
        }

        .scam-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
        }

        .scam-card:hover {
            border-color: var(--accent-primary);
            transform: translateY(-4px);
        }

        .scam-image {
            background-image: url(pic/scam_\ A\ fraudulent\ business\ scheme;\ a\ swindle_.jpg);
            width: 100%;
            height: 200px;
            display: flex;
            background-position: center;
            background-size: cover;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .scam-image2 {
            background-image: url(pic/How\ to\ spot\ a\ Scamming\ Online\ Banking\ Website\ –\ Stay\ Safe\ Online!.jpg);
            width: 100%;
            height: 200px;
            background-position: center;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .scam-image3 {
            background-image: url(pic/The\ difference\ between\ cybersecurity\ and\ cybercrime\,\ and\ why\ it\ matters.jpg);
            width: 100%;
            height: 200px;
            background-position: center;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .scam-image4 {
            background-image: url(pic/🛡️\ 𝗔𝘃𝗼𝗶𝗱\ 𝗖𝘆𝗯𝗲𝗿\ 𝗔𝘁𝘁𝗮𝗰𝗸𝘀\ 𝗶𝗻\ 𝟮𝟬𝟮𝟱_\ 𝗘𝗮𝘀𝘆\ 𝗧𝗶𝗽𝘀\ 𝗳𝗼𝗿\ 𝗔𝘃𝗲𝗿𝗮𝗴𝗲\ 𝗨𝘀.jpg);
            width: 100%;
            height: 200px;
            background-position: center;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .scam-image5 {
            background-image: url(pic/10\ Ways\ To\ Avoid\ Identity\ Theft\ Even\ If\ You\ Own\ A\ Mac\ -\ Work\ at\ Home\ Jobs.jpg);
            width: 100%;
            height: 200px;
            background-position: center;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .scam-image6 {
            background-image: url(pic/The\ Ivanti\ Threat\ Thursday\ Update\ for\ December\ 14\,\ 2017_\ New\ Hacks\ and\ Scams\,\ Just\ in\ Time\ for\ the\ Holidays!.jpg);
            width: 100%;
            height: 200px;
            background-position: center;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .scam-image7 {
            background-image: url(pic/Schritt\ für\ Schritt\ zur\ sicheren\ Web-App_\ So\ funktioniert\ Transportverschlüsselung\ mit\ TLS.jpg);
            width: 100%;
            height: 200px;
            background-position: center;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }




        .scam-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            padding: 6px 14px;
            background: rgba(239, 68, 68, 0.9);
            color: white;
            border-radius: 16px;
            font-size: 12px;
            font-weight: 600;
        }

        .view-icon {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 32px;
            height: 32px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .scam-card:hover .view-icon {
            opacity: 1;
        }

        .scam-content {
            padding: 20px;
        }

        .scam-category {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .scam-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
        }

      /* Footer */
        footer {
            padding: 80px 60px 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 100px;
            background: rgba(15, 19, 38, 0.5);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-section h3 {
            background: var(--gradient-3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 25px;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul li a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }

        .footer-section ul li a:hover {
            color: var(--accent-color);
            transform: translateX(5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
  .main-menu a.current {
            color: var(--white-text);
        }
        /* Scroll to Top */
        .scroll-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 55px;
            height: 55px;
            background: var(--gradient-3);
            color: var(--primary-bg);
            border: none;
            border-radius: 50%;
            font-size: 26px;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            z-index: 999;
            box-shadow: 0 5px 20px rgba(0, 217, 255, 0.4);
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 217, 255, 0.6);
        }

        .scroll-top.show {
            display: flex;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .scam-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .scam-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }

            .gallery-title {
                font-size: 2.5rem;
            }
        }