.elementor-13149 .elementor-element.elementor-element-ff0ddf1{--display:flex;}/* Start custom CSS for html, class: .elementor-element-035baa1 *//* GLOBAL STYLES */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #999999;
        }

        /* Container for content (centered, readable width) */
        .blog-container {
            max-width: 1100px;
            margin: 0 auto;
            background-color: rgba(0, 0, 0, 0.3);
            padding: 40px;
            border-radius: 20px;
            backdrop-filter: blur(2px);
            border: 1px solid #2a2d3e;
        }

        /* Headers */
        .global-title {
            font-size: 25px;
            text-align: center;
            color: #00849B;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .sub-title {
            font-size: 20px;
            text-align: center;
            color: #3E8448;
            margin: 30px 0 20px 0;
        }

        /* Paragraphs and list items get light gray */
        p, li, .text-muted {
            color: #999999;
        }

        p {
            margin-bottom: 15px;
        }

        /* Strong tags (bold words) */
        strong {
            color: #6ad8ba !important;
            font-weight: 600;
        }

        /* Links */
        a {
            color: #2f8ef8;
            text-decoration: none;
            transition: all 0.2s;
        }

        a:hover {
            text-decoration: underline;
            opacity: 0.9;
        }

        /* Table of Contents box */
        .toc-box {
            background-color: rgba(42, 45, 62, 0.5);
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
            border-left: 4px solid #00D9FF;
        }

        .toc-box a {
            color: #e0e0e0;
            display: inline-block;
            margin: 5px 10px 5px 0;
        }

        .toc-box a:hover {
            color: #00D9FF;
        }

        /* Lists */
        ul, ol {
            margin: 20px 0 20px 20px;
            padding-left: 20px;
            color: #999999;
        }

        li {
            margin-bottom: 7px;
            position: relative;
            padding-left: 10px;
            color: #999999;
        }

        /* Generic list styling (for most ULs) */
        .all-list li {
            list-style-type: none;
            padding-left: 0;
        }

        .all-list li:before {
            content: "▹";
            color: #00FF88;
            position: absolute;
            left: -20px;
            font-size: 1.2em;
        }

        /* Specialized lists for mistakes &amp; best practices */
        .mistake-list li {
            list-style-type: none;
            padding-left: 0;
        }
        .mistake-list li:before {
            content: "✗";
            color: #f82f2f;
            position: absolute;
            left: -20px;
            font-weight: bold;
        }

        .best-list li {
            list-style-type: none;
            padding-left: 0;
        }
        .best-list li:before {
            content: "✓";
            color: #00FF88;
            position: absolute;
            left: -20px;
            font-weight: bold;
        }

        /* Step boxes */
        .step-box {
            background-color: rgba(42, 45, 62, 0.5);
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
            border-left: 4px solid #4ECDC4;
        }

        .step-title {
            color: #4ECDC4;
            margin-top: 0;
            font-size: 1.5em;
            margin-bottom: 10px;
        }

        /* Red Team / Blue Team boxes */
        .red-blue-box {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }

        .red-team, .blue-team {
            flex: 1;
            min-width: 300px;
            padding: 25px;
            border-radius: 8px;
        }

        .red-team {
            background-color: rgba(255, 107, 107, 0.05);
            border: 1px solid #FF6B6B;
        }

        .blue-team {
            background-color: rgba(0, 217, 255, 0.05);
            border: 1px solid #00D9FF;
        }

        .red-team h3, .blue-team h3 {
            margin-top: 0;
            color: inherit;
        }

        /* Table styles */
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background-color: rgba(255, 255, 255, 0.03);
        }

        th, td {
            border: 1px solid #444;
            padding: 15px;
            text-align: left;
            color: #999999;
        }

        th {
            background-color: rgba(0, 217, 255, 0.1);
            color: #00D9FF;
            font-weight: bold;
        }

        /* Code blocks */
        pre {
            background-color: #1e1f2b;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #00D9FF;
            overflow-x: auto;
            color: #bbbbbb;
            font-family: 'Courier New', monospace;
            margin: 20px 0;
        }

        code {
            font-family: 'Courier New', monospace;
            color: #ffb86b;
        }

        /* Horizontal rule style */
        hr {
            border: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #00D9FF, transparent);
            margin: 40px 0;
        }

        /* Inline text colors for threat/protection */
        .threat {
            color: #FF4757 !important;
            font-weight: 500;
        }

        .protection {
            color: #2ED573 !important;
            font-weight: 500;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .blog-container {
                padding: 20px;
            }
            .red-blue-box {
                flex-direction: column;
            }
        }/* End custom CSS */