:root {
            --primary: #2a4a7c;
            --secondary: #5d8cbf;
            --accent1: #8c5d9f;
            --accent2: #3da4a6;
            --dark-bg: #0a0e17;
            --light-text: #e0f7ff;
            --card-bg: rgba(20, 30, 48, 0.8);
        }
        
        body {
            font-family: 'Exo 2', sans-serif;
            background-color: var(--dark-bg);
            color: var(--light-text);
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(61, 164, 166, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(140, 93, 159, 0.1) 0%, transparent 20%);
            overflow-x: hidden;
        }
        
        /* Futuristic Sci-Fi Elements */
        .ai_auto_glow {
            text-shadow: 0 0 10px rgba(93, 140, 191, 0.7);
        }
        
        .ai_auto_neuro_border {
            border: 1px solid rgba(93, 140, 191, 0.3);
            position: relative;
        }
        
        .ai_auto_neuro_border::before {
            content: "";
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border: 2px solid transparent;
            border-image: linear-gradient(45deg, var(--accent2), var(--accent1), var(--secondary));
            border-image-slice: 1;
            z-index: -1;
        }
        
        /* Navigation Styles */
        #ai_auto_navbar {
            background: rgba(10, 14, 23, 0.95);
            border-bottom: 1px solid rgba(93, 140, 191, 0.3);
            backdrop-filter: blur(10px);
        }
        
        .ai_auto_nav_link {
            color: var(--light-text) !important;
            position: relative;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .ai_auto_nav_link:hover {
            color: var(--secondary) !important;
        }
        
        .ai_auto_nav_link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent2), var(--secondary));
            transition: width 0.3s ease;
        }
        
        .ai_auto_nav_link:hover::after {
            width: 100%;
        }
        
        /* Banner Section */
        #ai_auto_banner {
            background: linear-gradient(120deg, rgba(10, 14, 23, 0.9), rgba(42, 74, 124, 0.7)), 
                        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%230a0e17"/><path d="M0 50 Q 25 30, 50 50 T 100 50" stroke="%232a4a7c" stroke-width="0.5" fill="none"/><path d="M0 30 Q 25 10, 50 30 T 100 30" stroke="%233da4a6" stroke-width="0.3" fill="none"/><path d="M0 70 Q 25 90, 50 70 T 100 70" stroke="%238c5d9f" stroke-width="0.3" fill="none"/></svg>');
            background-size: cover;
            padding: 120px 0 100px;
            position: relative;
            overflow: hidden;
        }
        
        #ai_auto_banner::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(61, 164, 166, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(140, 93, 159, 0.1) 0%, transparent 40%);
            pointer-events: none;
        }
        
        .ai_auto_banner_title {
            font-family: 'Orbitron', sans-serif;
            font-size: 3.5rem;
            background: linear-gradient(90deg, #e0f7ff, #5d8cbf, #3da4a6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 20px rgba(93, 140, 191, 0.3);
        }
        
        .ai_auto_search_input {
            background: rgba(20, 30, 48, 0.7);
            border: 1px solid rgba(93, 140, 191, 0.5);
            color: var(--light-text);
            padding: 15px 20px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .ai_auto_search_input:focus {
            background: rgba(20, 30, 48, 0.9);
            border: 1px solid var(--accent2);
            box-shadow: 0 0 15px rgba(61, 164, 166, 0.5);
            outline: none;
        }
        
        .ai_auto_search_btn {
            background: linear-gradient(90deg, var(--accent1), var(--accent2));
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .ai_auto_search_btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(140, 93, 159, 0.4);
        }
        
        /* Article Sections */
        #ai_auto_home-artice {
            padding: 100px 0;
        }
        
        .ai_auto_section_title {
            font-family: 'Orbitron', sans-serif;
            position: relative;
            display: inline-block;
            margin-bottom: 50px;
            padding-bottom: 15px;
        }
        
        .ai_auto_section_title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--accent2), var(--accent1));
        }
        
        /* Feature Articles - Timeline Style */
        .ai_auto_timeline_card {
            background: var(--card-bg);
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 2px solid var(--accent2);
        }
        
        .ai_auto_timeline_card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .ai_auto_timeline_header {
            background: rgba(42, 74, 124, 0.8);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .ai_auto_timeline_date {
            font-size: 0.9rem;
            color: var(--secondary);
            font-weight: 600;
        }
        
        .ai_auto_timeline_body {
            display: flex;
            padding: 20px;
        }
        
        .ai_auto_timeline_img {
            flex: 0 0 200px;
            height: 150px;
            overflow: hidden;
            border-radius: 6px;
        }
        
        .ai_auto_timeline_img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .ai_auto_timeline_card:hover .ai_auto_timeline_img img {
            transform: scale(1.05);
        }
        
        .ai_auto_timeline_content {
            flex: 1;
            padding-left: 25px;
        }
        
        .ai_auto_timeline_title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--light-text);
            transition: color 0.3s ease;
        }
        
        .ai_auto_timeline_title:hover {
            color: var(--secondary);
        }
        
        .ai_auto_timeline_desc {
            margin-bottom: 15px;
            color: #a3b1c6;
        }
        
        .ai_auto_timeline_author {
            color: var(--accent1);
            font-weight: 500;
            margin-bottom: 10px;
        }
        
        .ai_auto_timeline_labels {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .ai_auto_timeline_label {
            background: rgba(140, 93, 159, 0.2);
            color: var(--accent1);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }
        
        .ai_auto_timeline_label:hover {
            background: var(--accent1);
            color: white;
        }
        
        /* Recent Articles - Masonry Style */
        .ai_auto_masonry_grid {
            column-count: 3;
            column-gap: 30px;
        }
        
        .ai_auto_masonry_item {
            break-inside: avoid;
            margin-bottom: 30px;
        }
        
        .ai_auto_masonry_card {
            background: var(--card-bg);
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .ai_auto_masonry_card:hover {
            transform: translateY(-10px);
        }
        
        .ai_auto_masonry_img {
            height: 200px;
            overflow: hidden;
        }
        
        .ai_auto_masonry_img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .ai_auto_masonry_card:hover .ai_auto_masonry_img img {
            transform: scale(1.1);
        }
        
        .ai_auto_masonry_content {
            padding: 20px;
        }
        
        .ai_auto_masonry_title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--light-text);
            transition: color 0.3s ease;
        }
        
        .ai_auto_masonry_title:hover {
            color: var(--secondary);
        }
        
        .ai_auto_masonry_meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        .ai_auto_masonry_desc {
            color: #a3b1c6;
            margin-bottom: 15px;
        }
        
        .ai_auto_masonry_labels {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        /* Recommended Articles - Image Background Style */
        .ai_auto_bg_card_grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .ai_auto_bg_card {
            height: 300px;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .ai_auto_bg_card:hover {
            transform: translateY(-10px);
        }
        
        .ai_auto_bg_img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .ai_auto_bg_card:hover .ai_auto_bg_img {
            transform: scale(1.05);
        }
        
        .ai_auto_bg_overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 14, 23, 0.8);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            transition: background 0.3s ease;
        }
        
        .ai_auto_bg_card:hover .ai_auto_bg_overlay {
            background: rgba(10, 14, 23, 0.6);
        }
        
        .ai_auto_bg_title {
            font-size: 1.4rem;
            color: white;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }
        
        .ai_auto_bg_title:hover {
            color: var(--secondary);
        }
        
        .ai_auto_bg_meta {
            display: flex;
            justify-content: space-between;
            color: var(--accent2);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .ai_auto_bg_labels {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        /* Subscribe Section */
        #ai_auto_subscribe {
            background: linear-gradient(120deg, rgba(42, 74, 124, 0.9), rgba(10, 14, 23, 0.9));
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        #ai_auto_subscribe::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 70% 20%, rgba(140, 93, 159, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 30% 80%, rgba(61, 164, 166, 0.1) 0%, transparent 40%);
            pointer-events: none;
        }
        
        .ai_auto_subscribe_title {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .ai_auto_subscribe_form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .ai_auto_subscribe_input {
            background: rgba(20, 30, 48, 0.7);
            border: 1px solid rgba(93, 140, 191, 0.5);
            color: var(--light-text);
            padding: 15px 25px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .ai_auto_subscribe_input:focus {
            background: rgba(20, 30, 48, 0.9);
            border: 1px solid var(--accent2);
            box-shadow: 0 0 15px rgba(61, 164, 166, 0.5);
            outline: none;
        }
        
        .ai_auto_subscribe_btn {
            background: linear-gradient(90deg, var(--accent1), var(--accent2));
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .ai_auto_subscribe_btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(140, 93, 159, 0.4);
        }
        
        /* Footer */
        #ai_auto_footer {
            background: rgba(5, 9, 15, 0.95);
            padding-top: 80px;
            border-top: 1px solid rgba(93, 140, 191, 0.2);
        }
        
        .ai_auto_footer_title {
            font-family: 'Orbitron', sans-serif;
            color: var(--secondary);
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .ai_auto_footer_title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--accent2);
        }
        
        .ai_auto_footer_links {
            list-style: none;
            padding: 0;
        }
        
        .ai_auto_footer_links li {
            margin-bottom: 12px;
        }
        
        .ai_auto_footer_links a {
            color: #a3b1c6;
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
            padding-left: 20px;
        }
        
        .ai_auto_footer_links a::before {
            content: '▹';
            position: absolute;
            left: 0;
            color: var(--accent2);
        }
        
        .ai_auto_footer_links a:hover {
            color: var(--secondary);
        }
        
        #ai_auto_footer_desc p {
            color: #a3b1c6;
            line-height: 1.8;
        }
        
        .ai_auto_footer_contact li {
            color: #a3b1c6;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .ai_auto_footer_contact i {
            color: var(--accent2);
            margin-right: 10px;
            width: 20px;
        }
        
        #ai_auto_footer_copyright {
            background: rgba(0, 0, 0, 0.3);
            padding: 20px 0;
            margin-top: 60px;
            text-align: center;
            color: #8a99af;
            font-size: 0.9rem;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .ai_auto_masonry_grid {
                column-count: 2;
            }
            
            .ai_auto_timeline_body {
                flex-direction: column;
            }
            
            .ai_auto_timeline_img {
                flex: 0 0 auto;
                width: 100%;
                height: 200px;
                margin-bottom: 20px;
            }
            
            .ai_auto_timeline_content {
                padding-left: 0;
            }
        }
        
        @media (max-width: 768px) {
            .ai_auto_masonry_grid {
                column-count: 1;
            }
            
            .ai_auto_banner_title {
                font-size: 2.5rem;
            }
        }