     * {
            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%);
        }

        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;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 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); }
        }

        /* Header */
        header {
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(10, 14, 39, 0.9);
            backdrop-filter: blur(10px);
            transition: all 0.3s;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        header.scrolled {
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
            background: rgba(10, 14, 39, 0.95);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            background: var(--gradient-3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
            padding: 5px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--text-primary);
            transition: 0.3s;
            border-radius: 2px;
        }

        /* Hero Section */
        .hero {
            padding: 180px 0 120px;
            text-align: center;
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 5rem;
            margin-bottom: 25px;
            line-height: 1.1;
            animation: fadeInUp 1s ease;
            font-weight: 800;
            letter-spacing: -2px;
        }

        .hero .highlight {
            background: linear-gradient(135deg, #ff4444 0%, #ff6b6b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            animation: glowPulse 2s infinite;
        }

        @keyframes glowPulse {
            0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 68, 68, 0.5)); }
            50% { filter: drop-shadow(0 0 20px rgba(255, 68, 68, 0.8)); }
        }

        .hero p {
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .btn {
            padding: 18px 40px;
            border: none;
            border-radius: 12px;
            font-size: 17px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary {
            background: var(--gradient-3);
            color: var(--primary-bg);
            box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 217, 255, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 2px solid var(--text-primary);
        }

        .btn-secondary:hover {
            background: var(--text-primary);
            color: var(--primary-bg);
            transform: translateY(-3px);
        }

        .warning-icon {
            position: absolute;
            top: -80px;
            right: 10%;
            font-size: 100px;
            animation: dangerPulse 2s infinite;
            filter: drop-shadow(0 0 20px rgba(255, 68, 68, 0.6));
        }

        @keyframes dangerPulse {
            0%, 100% { 
                transform: scale(1) rotate(0deg);
                opacity: 1;
            }
            25% { 
                transform: scale(1.1) rotate(-5deg);
                opacity: 0.8;
            }
            50% { 
                transform: scale(1.15) rotate(5deg);
                opacity: 0.9;
            }
            75% { 
                transform: scale(1.05) rotate(-3deg);
                opacity: 0.85;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Section */
        .section {
            padding: 100px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 70px;
            font-weight: 700;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient-3);
            border-radius: 2px;
        }

        /* Deception Cards */
        .deception-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
        }

        .deception-card {
            background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(15, 19, 38, 0.9) 100%);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(0, 217, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .deception-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-3);
            opacity: 0;
            transition: opacity 0.4s;
            z-index: 0;
        }

        .deception-card:hover::before {
            opacity: 0.1;
        }

        .deception-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
            border-color: var(--accent-color);
        }

        .deception-card h3 {
            color: var(--accent-color);
            margin-bottom: 20px;
            font-size: 1.5rem;
            position: relative;
            z-index: 1;
            font-weight: 600;
        }

        .deception-card p {
            color: var(--text-secondary);
            line-height: 1.9;
            position: relative;
            z-index: 1;
            font-size: 1.05rem;
        }

        /* Tactics Grid */
        .tactics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .tactic-card {
            background: var(--secondary-bg);
            padding: 40px 30px;
            border-radius: 16px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .tactic-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.6s;
        }

        .tactic-card:hover::after {
            transform: scale(1);
        }

        .tactic-card:hover {
            border-color: var(--accent-color);
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .tactic-icon {
            font-size: 50px;
            margin-bottom: 20px;
            display: inline-block;
            transition: transform 0.4s;
            position: relative;
            z-index: 1;
        }

        .tactic-card:hover .tactic-icon {
            transform: scale(1.2) rotate(10deg);
        }

        .tactic-card h3 {
            font-size: 1.2rem;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
            font-weight: 600;
        }

        .tactic-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            position: relative;
            z-index: 1;
        }

        /* Stats */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
        }

        .stat-card {
            text-align: center;
            padding: 50px 40px;
            background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-bg) 100%);
            border-radius: 20px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.8s;
        }

        .stat-card:hover::before {
            left: 100%;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        }

        .stat-number {
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            transition: all 0.4s;
            position: relative;
            display: inline-block;
        }

        .stat-card:hover .stat-number {
            transform: scale(1.1);
        }

        .stat-card:nth-child(1) .stat-number {
            background: linear-gradient(135deg, #ff4444 0%, #ff6b6b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-card:nth-child(2) .stat-number {
            background: linear-gradient(135deg, #ff6b6b 0%, #ffaa00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-card:nth-child(3) .stat-number {
            background: var(--gradient-3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: var(--text-primary);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .stat-description {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* Checklist */
        .checklist {
            max-width: 900px;
            margin: 0 auto;
        }

        .checklist-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 25px 30px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, rgba(26, 31, 58, 0.6) 0%, rgba(15, 19, 38, 0.8) 100%);
            border-radius: 15px;
            border-left: 4px solid var(--accent-color);
            transition: all 0.3s;
            cursor: pointer;
        }

        .checklist-item:hover {
            background: linear-gradient(135deg, rgba(26, 31, 58, 0.9) 0%, rgba(15, 19, 38, 1) 100%);
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
        }

        .check-icon {
            color: var(--accent-color);
            font-size: 28px;
            flex-shrink: 0;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 217, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s;
        }

        .checklist-item:hover .check-icon {
            transform: rotate(360deg);
            background: rgba(0, 217, 255, 0.2);
        }

        .checklist-item p {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.7;
        }

        /* Real Stories */
        .stories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
        }

        .story-card {
            background: var(--secondary-bg);
            padding: 40px;
            border-radius: 20px;
            border: 2px solid rgba(255, 68, 68, 0.2);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .story-card::before {
            content: '⚠️';
            position: absolute;
            top: -20px;
            right: -20px;
            font-size: 100px;
            opacity: 0.05;
            transition: all 0.4s;
        }

        .story-card:hover::before {
            transform: scale(1.2) rotate(15deg);
            opacity: 0.1;
        }

        .story-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(255, 68, 68, 0.3);
            border-color: var(--danger-color);
        }

        .story-card h3 {
            color: var(--danger-color);
            margin-bottom: 20px;
            font-size: 1.4rem;
            font-weight: 600;
        }

        .story-card p {
            color: var(--text-secondary);
            margin-bottom: 20px;
            line-height: 1.9;
            font-size: 1.05rem;
        }

        .story-amount {
            font-size: 1.8rem;
            color: var(--danger-color);
            font-weight: 700;
            display: inline-block;
            padding: 10px 20px;
            background: rgba(255, 68, 68, 0.1);
            border-radius: 8px;
            border: 1px solid rgba(255, 68, 68, 0.3);
        }

        /* Quiz Section */
        .quiz-container {
            max-width: 900px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(15, 19, 38, 0.9) 100%);
            padding: 50px;
            border-radius: 25px;
            border: 2px solid rgba(0, 217, 255, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }

        .quiz-question {
            margin-bottom: 40px;
        }

        .quiz-question h3 {
            color: var(--accent-color);
            margin-bottom: 25px;
            font-size: 1.4rem;
            line-height: 1.6;
            font-weight: 600;
        }

        .quiz-options {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .quiz-option {
            padding: 20px 25px;
            background: rgba(26, 31, 58, 0.6);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1.05rem;
            position: relative;
            overflow: hidden;
        }

        .quiz-option::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s;
        }

        .quiz-option:hover::before {
            left: 100%;
        }

        .quiz-option:hover {
            border-color: var(--accent-color);
            background: rgba(26, 31, 58, 0.9);
            transform: translateX(5px);
        }

        .quiz-option.correct {
            border-color: var(--success-color);
            background: rgba(74, 222, 128, 0.15);
            animation: correctPulse 0.6s;
        }

        .quiz-option.incorrect {
            border-color: var(--danger-color);
            background: rgba(255, 68, 68, 0.15);
            animation: shake 0.5s;
        }

        @keyframes correctPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-10px); }
            75% { transform: translateX(10px); }
        }

        .quiz-result {
            margin-top: 30px;
            padding: 30px;
            background: rgba(26, 31, 58, 0.8);
            border-radius: 15px;
            text-align: center;
            border: 2px solid var(--accent-color);
            animation: fadeInUp 0.6s;
        }

        .quiz-score {
            font-size: 2.5rem;
            background: var(--gradient-3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .quiz-message {
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-top: 10px;
        }

        /* Fake vs Real Section */
        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .comparison-card {
            background: var(--secondary-bg);
            padding: 40px;
            border-radius: 20px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s;
        }

        .comparison-card.fake {
            border-color: rgba(255, 68, 68, 0.3);
        }

        .comparison-card.real {
            border-color: rgba(74, 222, 128, 0.3);
        }

        .comparison-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        }

        .comparison-badge {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .comparison-card.fake .comparison-badge {
            background: rgba(255, 68, 68, 0.2);
            color: var(--danger-color);
            border: 1px solid var(--danger-color);
        }

        .comparison-card.real .comparison-badge {
            background: rgba(74, 222, 128, 0.2);
            color: var(--success-color);
            border: 1px solid var(--success-color);
        }

        .comparison-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .comparison-card p {
            color: var(--text-secondary);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 100px 40px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
            border-radius: 30px;
            margin: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .cta-section h2 {
            font-size: 3rem;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
            font-weight: 700;
        }

        .cta-section p {
            color: var(--text-secondary);
            font-size: 1.3rem;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .cta-section .btn {
            position: relative;
            z-index: 1;
        }

        /* Footer */
        footer {
            padding: 80px 0 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: 968px) {
            .hero h1 {
                font-size: 3.5rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 280px;
                height: calc(100vh - 70px);
                background: rgba(20, 24, 41, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 40px 30px;
                transition: right 0.4s;
                box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
                border-left: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-links.active {
                right: 0;
            }

            .hero {
                padding: 140px 0 80px;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .warning-icon {
                font-size: 60px;
                right: 5%;
                top: -50px;
            }

            .section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 50px;
            }

            .stat-number {
                font-size: 3rem;
            }

            .cta-section {
                padding: 60px 30px;
            }

            .cta-section h2 {
                font-size: 2.2rem;
            }

            .quiz-container {
                padding: 30px 25px;
            }

            .scroll-top {
                bottom: 25px;
                right: 25px;
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .deception-grid,
            .tactics-grid,
            .stats-grid,
            .stories-grid,
            .comparison-grid {
                grid-template-columns: 1fr;
            }

            .quiz-option {
                font-size: 0.95rem;
            }
        }



        