:root {
            --ai_primary: #1565C0;
            --ai_secondary: #26A69A;
            --ai_accent1: #7E57C2;
            --ai_accent2: #FFA726;
            --ai_dark: #0d0d0d;
            --ai_light: #f0f0f0;
            --ai_neon_blue: #00f3ff;
            --ai_neon_pink: #ff00a0;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--ai_dark) 0%, #1a1a2e 100%);
            color: var(--ai_light);
            overflow-x: hidden;
        }
        
        /* Cyberpunk/Vaporwave styling */
        .ai_cyberpunk_border {
            border: 1px solid rgba(0, 243, 255, 0.3);
            box-shadow: 0 0 10px rgba(0, 243, 255, 0.2),
                        0 0 20px rgba(0, 243, 255, 0.1);
        }
        
        .ai_neon_text {
            text-shadow: 0 0 5px var(--ai_neon_blue),
                         0 0 10px var(--ai_neon_blue),
                         0 0 15px var(--ai_neon_blue);
        }
        
        .ai_vaporwave_text {
            background: linear-gradient(45deg, var(--ai_neon_pink), var(--ai_neon_blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        /* Navbar styling */
        #ai_auto_navbar {
            background: rgba(13, 13, 13, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--ai_neon_blue);
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
        }
        
        .ai_nav_link {
            color: var(--ai_light) !important;
            position: relative;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
        }
        
        .ai_nav_link:hover {
            color: var(--ai_neon_blue) !important;
        }
        
        .ai_nav_link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--ai_neon_blue);
            transition: width 0.3s ease;
        }
        
        .ai_nav_link:hover::after {
            width: 100%;
        }
        
        /* Banner styling */
        #ai_auto_banner {
            background: url('https://images.unsplash.com/photo-1532094349884-543bc11b234d?q=80&w=2070') no-repeat center center;
            background-size: cover;
            position: relative;
            padding: 100px 0;
            margin-bottom: 50px;
        }
        
        #ai_auto_banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(21, 101, 192, 0.7) 0%, rgba(13, 13, 13, 0.9) 100%);
        }
        
        /* Article sections styling */
        #ai_auto_home-artice {
            padding: 50px 0;
        }
        
        .ai_section_title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        
        .ai_section_title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: var(--ai_neon_blue);
        }
        
        .ai_feature_card {
            background: rgba(30, 30, 46, 0.7);
            border: 1px solid rgba(0, 243, 255, 0.2);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 25px;
        }
        
        .ai_feature_card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 243, 255, 0.2);
        }
        
        .ai_article_img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .ai_label {
            display: inline-block;
            background: rgba(0, 243, 255, 0.1);
            color: var(--ai_neon_blue);
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-right: 5px;
            margin-bottom: 5px;
            transition: all 0.3s ease;
        }
        
        .ai_label:hover {
            background: rgba(0, 243, 255, 0.3);
            transform: translateY(-2px);
        }
        
        /* Featured articles - Background fusion cards */
        .ai_fusion_card {
            position: relative;
            height: 250px;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .ai_fusion_img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .ai_fusion_content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(to top, rgba(13, 13, 13, 0.9) 0%, transparent 100%);
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }
        
        .ai_fusion_card:hover .ai_fusion_content {
            transform: translateY(0);
        }
        
        .ai_fusion_card:hover .ai_fusion_img {
            transform: scale(1.05);
        }
        
        /* Recent articles - Magazine layout */
        .ai_magazine_main {
            height: 500px;
            margin-bottom: 30px;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }
        
        .ai_magazine_main_img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .ai_magazine_main_content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            background: linear-gradient(to top, rgba(13, 13, 13, 0.9) 0%, transparent 100%);
        }
        
        .ai_magazine_side {
            background: rgba(30, 30, 46, 0.7);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 20px;
            height: 235px;
            transition: all 0.3s ease;
        }
        
        .ai_magazine_side:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 243, 255, 0.2);
        }
        
        .ai_magazine_side_img {
            width: 100%;
            height: 120px;
            object-fit: cover;
        }
        
        /* Recommended articles - Card waterfall */
        .ai_waterfall {
            column-count: 3;
            column-gap: 25px;
        }
        
        .ai_waterfall_card {
            break-inside: avoid;
            background: rgba(30, 30, 46, 0.7);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 25px;
            border: 1px solid rgba(0, 243, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .ai_waterfall_card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 243, 255, 0.2);
        }
        
        .ai_waterfall_img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        
        /* Subscribe section */
        #ai_auto_subscribe {
            background: linear-gradient(135deg, var(--ai_primary) 0%, var(--ai_accent1) 100%);
            padding: 70px 0;
            margin: 50px 0;
            position: relative;
            overflow: hidden;
        }
        
        #ai_auto_subscribe::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(45deg, 
                var(--ai_neon_pink), 
                var(--ai_neon_blue),
                var(--ai_accent2),
                var(--ai_neon_pink));
            z-index: -1;
            filter: blur(20px);
            opacity: 0.7;
        }
        
        .ai_subscribe_input {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            height: 50px;
        }
        
        .ai_subscribe_input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .ai_subscribe_btn {
            background: var(--ai_neon_blue);
            color: var(--ai_dark);
            font-weight: bold;
            height: 50px;
            transition: all 0.3s ease;
        }
        
        .ai_subscribe_btn:hover {
            background: var(--ai_neon_pink);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 0, 160, 0.4);
        }
        
        /* Footer styling */
        #ai_auto_footer {
            background: rgba(13, 13, 13, 0.95);
            padding-top: 60px;
            border-top: 1px solid rgba(0, 243, 255, 0.2);
        }
        
        .ai_footer_title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .ai_footer_title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--ai_neon_blue);
        }
        
        .ai_footer_link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            margin-bottom: 10px;
            display: block;
            transition: all 0.3s ease;
        }
        
        .ai_footer_link:hover {
            color: var(--ai_neon_blue);
            padding-left: 5px;
        }
        
        #ai_auto_footer_copyright {
            background: rgba(0, 0, 0, 0.5);
            padding: 20px 0;
            margin-top: 40px;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .ai_waterfall {
                column-count: 2;
            }
        }
        
        @media (max-width: 768px) {
            .ai_waterfall {
                column-count: 1;
            }
            
            .ai_magazine_main {
                height: 400px;
            }
        }