.elementor-14362 .elementor-element.elementor-element-7013ee0{--display:flex;}/* Start custom CSS for html, class: .elementor-element-06c92fd *//* CSS Reset and Base Styles */
        :root {
            --primary-red: #cc0000;
            --dark-red: #8b0000;
            --primary-blue: #1a1a8c;
            --dark-blue: #0d0d4a;
            --bg-dark: #0a0a0f;
            --bg-card: #12121a;
            --text-primary: #e8e8e8;
            --text-secondary: #a0a0a0;
            --accent-gold: #d4af37;
            --border-color: #2a2a3a;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2a 50%, #0a1a2a 100%);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header Styles */
        .header {
            padding: 60px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-bottom: 3px solid var(--primary-red);
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23cc0000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            animation: patternMove 20s linear infinite;
        }

        @keyframes patternMove {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(60px) translateY(60px); }
        }

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

        .h1 {
            font-size: 3.5rem;
            text-transform: uppercase;
            letter-spacing: 8px;
            margin-bottom: 10px;
            background: linear-gradient(90deg, var(--primary-red), var(--text-primary), var(--primary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.3); }
        }

        .subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            letter-spacing: 4px;
            text-transform: uppercase;
        }

        .bear-icon {
            font-size: 5rem;
            margin-bottom: 20px;
            animation: bearPulse 2s ease-in-out infinite;
        }

        @keyframes bearPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Navigation */
        .nav {
            background: var(--bg-card);
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid var(--border-color);
        }

        .nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .nav a {
            color: var(--text-primary);
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav a:hover {
            background: var(--primary-red);
            color: white;
        }

        

        /* Section Styles */
        section {
            border-radius: 20px;
            border: 1px solid rgba(0, 245, 255, 0.3);
        }
        .section {
            margin-bottom: 60px;
            background: var(--bg-card);
            border-radius: 12px;
            padding: 40px;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary-red), var(--primary-blue));
        }

        h2 {
            font-size: 2rem;
            margin-bottom: 30px;
            color: var(--text-primary);
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary-red);
            display: inline-block;
        }

        h3 {
            font-size: 1.4rem;
            margin: 25px 0 15px;
            color: var(--accent-gold);
        }

        h4 {
            font-size: 1.1rem;
            margin: 15px 0 10px;
            color: var(--primary-red);
        }

        p {
            margin-bottom: 15px;
            color: var(--text-secondary);
        }

        /* Simulation Section */
        #simulation {
            background: linear-gradient(135deg, var(--bg-card) 0%, #1a1a2e 100%);
            min-height: 600px;
        }

        .simulation-container {
            position: relative;
            height: 500px;
            background: radial-gradient(ellipse at center, #1a1a2e 0%, var(--bg-dark) 100%);
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid var(--border-color);
        }

        /* Attack Flow Stages */
        .attack-stage {
            position: absolute;
            padding: 15px 25px;
            background: rgba(26, 26, 140, 0.8);
            border: 2px solid var(--primary-blue);
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            opacity: 0;
            animation: stageAppear 2s ease-out forwards;
        }
        .attack-stage-info {
            position: absolute;
            padding: 15px 25px;
            text-align: center;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.85rem;
            animation: stageAppear 2s ease-out forwards;
        }

        .stage-1 {
            top: 50px;
            left: 50px;
            animation-delay: 0s;
            background: rgba(26, 26, 140, 0.8);
            border: 2px solid var(--primary-blue);
        }

        .stage-2 {
            top: 150px;
            left: 250px;
            animation-delay: 2s;
            background: rgba(139, 0, 0, 0.8);
            border-color: var(--primary-red);
        }

        .stage-3 {
            top: 250px;
            left: 450px;
            animation-delay: 4s;
            background: rgba(212, 175, 55, 0.3);
            border-color: var(--accent-gold);
        }

        .stage-4 {
            top: 350px;
            left: 650px;
            animation-delay: 6s;
            background: rgba(204, 0, 0, 0.8);
            border-color: var(--primary-red);
        }
        
        .stage-1-info {
            top: 50px;
            left: 50px;
            animation-delay: 0s;
        }

        .stage-2-info {
            top: 150px;
            left: 250px;
            animation-delay: 2s;
        }

        .stage-3-info {
            top: 250px;
            left: 450px;
            animation-delay: 4s;
        }

        .stage-4-info {
            top: 350px;
            left: 650px;
            animation-delay: 6s;
        }

        @keyframes stageAppear {
            0% { opacity: 0; transform: scale(0.5) rotate(-5deg); }
            50% { transform: scale(1.1) rotate(2deg); }
            100% { opacity: 1; transform: scale(1) rotate(0deg); }
        }

        

        .line-1 {
            top: 85px;
            left: 180px;
            width: 100px;
            animation-delay: 1.5s;
        }

        .line-2 {
            top: 185px;
            left: 380px;
            width: 100px;
            animation-delay: 3.5s;
        }

        .line-3 {
            top: 285px;
            left: 580px;
            width: 100px;
            animation-delay: 5.5s;
        }

        @keyframes lineGrow {
            0% { opacity: 0; width: 0; }
            100% { opacity: 1; width: 100px; }
        }

        /* Bear Claw Marks */
        .claw-marks {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 150px;
            height: 200px;
        }

        .claw {
            position: absolute;
            width: 8px;
            height: 60px;
            background: linear-gradient(180deg, transparent, var(--primary-red), transparent);
            border-radius: 50%;
            transform: rotate(-20deg);
            animation: clawSlash 3s ease-in-out infinite;
        }

        .claw:nth-child(1) { left: 20px; animation-delay: 0s; }
        .claw:nth-child(2) { left: 45px; animation-delay: 0.2s; }
        .claw:nth-child(3) { left: 70px; animation-delay: 0.4s; }
        .claw:nth-child(4) { left: 95px; animation-delay: 0.6s; }
        .claw:nth-child(5) { left: 120px; animation-delay: 0.8s; }

        @keyframes clawSlash {
            0%, 100% { opacity: 0.3; height: 0; }
            50% { opacity: 1; height: 60px; }
        }

        /* Russian Flag Animation */
        .russian-flag {
            position: absolute;
            bottom: 330px;
            right: 40px;
            width: 120px;
            height: 80px;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
            animation: flagWave 4s ease-in-out infinite;
        }

        .flag-stripe {
            height: 33.33%;
            width: 100%;
        }

        .flag-white { background: #ffffff; }
        .flag-blue { background: #0039a6; }
        .flag-red { background: #d52b1e; }

        @keyframes flagWave {
            0%, 100% { transform: skewX(0deg); }
            25% { transform: skewX(2deg); }
            75% { transform: skewX(-2deg); }
        }

        /* Data Particles */
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary-red);
            border-radius: 50%;
            animation: particleFloat 4s linear infinite;
        }

        .particle:nth-child(6) { left: 10%; animation-delay: 0s; }
        .particle:nth-child(7) { left: 30%; animation-delay: 1s; }
        .particle:nth-child(8) { left: 50%; animation-delay: 2s; }
        .particle:nth-child(9) { left: 70%; animation-delay: 3s; }
        .particle:nth-child(10) { left: 90%; animation-delay: 0.5s; }

        @keyframes particleFloat {
            0% { bottom: 0; opacity: 0; }
            50% { opacity: 1; }
            100% { bottom: 100%; opacity: 0; }
        }

        /* Election Interference Visual */
        .election-visual {
            position: absolute;
            bottom: 50px;
            left: 50px;
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .ballot-box {
            width: 60px;
            height: 80px;
            background: var(--dark-blue);
            border: 2px solid var(--primary-blue);
            border-radius: 4px;
            position: relative;
            animation: boxShake 2s ease-in-out infinite;
        }

        .ballot-box::before {
            content: '🗳️';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 2rem;
        }

        @keyframes boxShake {
            0%, 100% { transform: translateX(0); }
            10%, 30%, 50% { transform: translateX(-5px); }
            20%, 40%, 60% { transform: translateX(5px); }
            70% { transform: translateX(0); }
        }

        .hack-arrow {
            font-size: 2rem;
            color: var(--primary-red);
            animation: arrowPulse 1s ease-in-out infinite;
        }

        @keyframes arrowPulse {
            0%, 100% { opacity: 0.5; transform: translateX(0); }
            50% { opacity: 1; transform: translateX(10px); }
        }

        /* Stage Icons */
        .stage-icon {
            display: block;
            font-size: 2rem;
            margin-bottom: 10px;
        }

        /* Statistics Box */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .stat-card {
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--bg-dark) 100%);
            padding: 25px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(204, 0, 0, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-red);
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* External Links */
        .external-links {
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .ext-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
            color: var(--text-primary);
            text-decoration: none;
            border-radius: 6px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid var(--primary-blue);
        }

        .ext-link:hover {
            background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(204, 0, 0, 0.3);
        }

        /* Definition Box */
        .definition-box {
            background: linear-gradient(135deg, rgba(26, 26, 140, 0.3), rgba(139, 0, 0, 0.2));
            padding: 30px;
            border-radius: 8px;
            border-left: 4px solid var(--primary-red);
            margin: 20px 0;
        }

        .definition-box p {
            font-size: 1.1rem;
            color: var(--text-primary);
            font-style: italic;
        }

        /* Analogy Section */
        .analogy-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }

        .analogy-card {
            background: var(--bg-dark);
            padding: 25px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }

        .analogy-card h4 {
            color: var(--accent-gold);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        /* Scenario Section */
        .scenario-container {
            position: relative;
        }

        .scenario-header {
            background: linear-gradient(90deg, var(--primary-red), var(--dark-red));
            padding: 15px 25px;
            border-radius: 8px 8px 0 0;
            margin: -40px -40px 30px -40px;
        }

        .scenario-header h3 {
            color: white;
            margin: 0;
        }

        .character-intro {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            padding: 20px;
            background: var(--bg-dark);
            border-radius: 8px;
        }

        .character-avatar {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            border: 3px solid var(--accent-gold);
        }

        .character-info h4 {
            color: var(--text-primary);
            margin-bottom: 5px;
        }

        .timeline {
            position: relative;
            padding-left: 30px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, var(--primary-blue), var(--primary-red));
        }

        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding: 20px;
            background: var(--bg-dark);
            border-radius: 8px;
            border-left: 3px solid var(--primary-red);
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -26px;
            top: 25px;
            width: 12px;
            height: 12px;
            background: var(--primary-red);
            border-radius: 50%;
            border: 2px solid var(--bg-dark);
        }

        .timeline-item.before {
            border-left-color: var(--primary-blue);
        }

        .timeline-item.before::before {
            background: var(--primary-blue);
        }

        .timeline-label {
            display: inline-block;
            padding: 3px 10px;
            background: var(--primary-red);
            color: white;
            border-radius: 4px;
            font-size: 0.8rem;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .timeline-item.before .timeline-label {
            background: var(--primary-blue);
        }

        /* Steps Section */
        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .step-card {
            background: var(--bg-dark);
            padding: 25px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(204, 0, 0, 0.15);
        }

        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            opacity: 0.3;
        }

        .step-card h4 {
            color: var(--text-primary);
            margin-bottom: 15px;
            padding-right: 40px;
        }

        .step-card ul {
            list-style: none;
            padding-left: 0;
        }

        .step-card li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 10px;
            color: var(--text-secondary);
        }

        .step-card li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--primary-red);
        }

        /* Mistakes &amp; Best Practices */
        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .comparison-card {
            padding: 30px;
            border-radius: 8px;
        }

        .mistakes-card {
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(204, 0, 0, 0.1));
            border: 1px solid var(--dark-red);
        }

        .best-practices-card {
            background: linear-gradient(135deg, rgba(26, 26, 140, 0.3), rgba(26, 26, 140, 0.1));
            border: 1px solid var(--primary-blue);
        }

        .comparison-card h3 {
            margin-top: 0;
        }

        .comparison-card ul {
            list-style: none;
            padding: 0;
        }

        .comparison-card li {
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .comparison-card li:last-child {
            border-bottom: none;
        }

        .icon-x {
            color: var(--primary-red);
            font-weight: bold;
        }

        .icon-check {
            color: #4CAF50;
            font-weight: bold;
        }

        /* Red Team vs Blue Team */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .team-card {
            padding: 30px;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }

        .red-team-card {
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.4), var(--bg-dark));
            border: 2px solid var(--primary-red);
        }

        .blue-team-card {
            background: linear-gradient(135deg, rgba(26, 26, 140, 0.4), var(--bg-dark));
            border: 2px solid var(--primary-blue);
        }

        .team-card h3 {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .team-badge {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .red-badge {
            background: var(--primary-red);
            color: white;
        }

        .blue-badge {
            background: var(--primary-blue);
            color: white;
        }

        .team-card ul {
            list-style: none;
            padding: 0;
        }

        .team-card li {
            padding: 10px 0;
            padding-left: 25px;
            position: relative;
            color: var(--text-secondary);
        }

        .team-card li::before {
            content: '◆';
            position: absolute;
            left: 0;
        }

        .red-team-card li::before {
            color: var(--primary-red);
        }

        .blue-team-card li::before {
            color: var(--primary-blue);
        }

        /* Threat Hunter Section */
        .hunter-box {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
            border: 1px solid var(--accent-gold);
            border-radius: 8px;
            padding: 30px;
            position: relative;
        }

        .hunter-box::before {
            content: '👁️';
            position: absolute;
            top: -15px;
            left: 20px;
            font-size: 2rem;
            background: var(--bg-card);
            padding: 0 10px;
        }

        .intel-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 15px;
            background: var(--bg-dark);
            border-radius: 6px;
            margin-bottom: 15px;
        }

        .intel-icon {
            font-size: 1.5rem;
        }

        /* CTA Section */
        #call-to-action {
            background: linear-gradient(135deg, var(--dark-red), var(--dark-blue));
            text-align: center;
            border: 2px solid var(--primary-red);
        }

        #call-to-action::before {
            display: none;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            border-bottom: none;
            color: white;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
        }

        .cta-btn {
            display: inline-block;
            padding: 15px 35px;
            background: transparent;
            color: var(--text-primary);
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid var(--text-primary);
        }

        .cta-btn:hover {
            background: var(--primary-red);
            border-color: var(--primary-red);
            transform: translateY(-3px);
        }

        .cta-btn.primary {
            background: var(--primary-red);
            border-color: var(--primary-red);
        }

        .cta-btn.primary:hover {
            background: var(--dark-red);
        }

        /* Internal Links Section */
        .internal-links {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
        }

        .internal-links h4 {
            margin-bottom: 15px;
        }

        .apt-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .apt-link {
            display: inline-block;
            padding: 8px 16px;
            background: var(--bg-dark);
            color: var(--text-primary);
            text-decoration: none;
            border-radius: 4px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .apt-link:hover {
            border-color: var(--primary-red);
            color: var(--primary-red);
        }

        /* Footer */
        footer {
            background: var(--bg-card);
            padding: 40px 20px;
            text-align: center;
            border-top: 2px solid var(--primary-red);
            margin-top: 60px;
        }

        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .footer-logo {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .footer-text {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .footer-links {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-red);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
                letter-spacing: 4px;
            }

            .subtitle {
                font-size: 0.9rem;
            }

            section {
                padding: 25px;
            }

            .simulation-container {
                height: auto;
                min-height: 500px;
            }

            .attack-stage {
                position: relative;
                top: auto !important;
                left: auto !important;
                margin: 20px auto;
                max-width: 250px;
            }

            .connection-line {
                display: none;
            }

            .claw-marks,
            .russian-flag,
            .election-visual {
                display: none;
            }

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

            nav ul {
                flex-direction: column;
                align-items: center;
            }
        }

        /* Pulsing Elements */
        .pulse {
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* Glowing Effect */
        .glow-red {
            box-shadow: 0 0 20px rgba(204, 0, 0, 0.5);
        }

        .glow-blue {
            box-shadow: 0 0 20px rgba(26, 26, 140, 0.5);
        }

        /* Floating Animation */
        .float {
            animation: float 3s ease-in-out infinite;
        }

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

        /* Typewriter Effect (CSS Only Approximation) */
        .typewriter {
            overflow: hidden;
            white-space: nowrap;
            animation: typing 4s steps(40) forwards;
        }

        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }/* End custom CSS */