:root {
            --ai_auto_primary: #2c3e50;
            --ai_auto_secondary: #3498db;
            --ai_auto_accent1: #e74c3c;
            --ai_auto_accent2: #1abc9c;
            --ai_auto_light: #f8f9fa;
            --ai_auto_dark: #212529;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e7f1 100%);
            color: var(--ai_auto_dark);
        }
        
        /* Claymorphism Styles */
        .ai_auto_clay_card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            box-shadow: 
                0 10px 20px rgba(0, 0, 0, 0.05),
                inset 0 -3px 10px rgba(0, 0, 0, 0.05),
                inset 0 3px 10px rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            overflow: hidden;
        }
        
        .ai_auto_clay_card:hover {
            transform: translateY(-5px);
            box-shadow: 
                0 15px 30px rgba(0, 0, 0, 0.1),
                inset 0 -3px 10px rgba(0, 0, 0, 0.05),
                inset 0 3px 10px rgba(255, 255, 255, 0.6);
        }
        
        /* Header/Navbar */
        #ai_auto_navbar {
            background: rgba(44, 62, 80, 0.9);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Banner Section */
        #ai_auto_banner {
            background: linear-gradient(135deg, var(--ai_auto_primary) 0%, #34495e 100%);
            border-radius: 0 0 30px 30px;
            color: white;
            padding: 5rem 0;
        }
        
        /* Article Sections */
        #ai_auto_home-artice {
            padding: 4rem 0;
        }
        
        .ai_auto_section_title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 2rem;
            border-bottom: 3px solid var(--ai_auto_secondary);
        }
        
        .ai_auto_section_title:after {
            content: "";
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100px;
            height: 3px;
            background: var(--ai_auto_accent2);
        }
        
        /* Image handling */
        .ai_auto_article_img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 16px;
            transition: transform 0.3s ease;
        }
        
        .ai_auto_article_img:hover {
            transform: scale(1.03);
        }
        
        /* Timeline Style */
        .ai_auto_timeline_card {
            position: relative;
            padding-left: 2rem;
            border-left: 3px solid var(--ai_auto_accent2);
            margin-bottom: 2rem;
        }
        
        .ai_auto_timeline_date {
            position: absolute;
            left: -25px;
            top: 10px;
            background: var(--ai_auto_accent2);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        /* Magazine Style */
        .ai_auto_magazine_left {
            border-radius: 20px;
            overflow: hidden;
            position: relative;
        }
        
        .ai_auto_magazine_content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(44, 62, 80, 0.85);
            color: white;
            padding: 1.5rem;
            border-radius: 0 0 20px 20px;
        }
        
        /* Footer */
        #ai_auto_footer {
            background: var(--ai_auto_primary);
            color: white;
            padding-top: 4rem;
            border-radius: 30px 30px 0 0;
        }
        
        .ai_auto_footer_title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .ai_auto_footer_title:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--ai_auto_accent2);
        }
        
        /* Button Styles */
        .ai_auto_btn {
            border-radius: 50px;
            padding: 10px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
        }
        
        .ai_auto_btn_primary {
            background: var(--ai_auto_secondary);
            color: white;
        }
        
        .ai_auto_btn_primary:hover {
            background: #2980b9;
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(52, 152, 219, 0.3);
        }
        
        .ai_auto_btn_accent {
            background: var(--ai_auto_accent2);
            color: white;
        }
        
        .ai_auto_btn_accent:hover {
            background: #16a085;
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(26, 188, 156, 0.3);
        }
        
        /* Animation */
        @keyframes ai_auto_pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .ai_auto_pulse {
            animation: ai_auto_pulse 2s infinite;
        }
        
        /* Search Input */
        .ai_auto_search_input {
            border-radius: 50px;
            padding: 15px 25px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.15);
            color: white;
            transition: all 0.3s ease;
        }
        
        .ai_auto_search_input:focus {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }
        
        /* Subscribe Section */
        #ai_auto_subscribe {
            background: linear-gradient(135deg, var(--ai_auto_accent2) 0%, #16a085 100%);
            padding: 5rem 0;
            border-radius: 30px;
            color: white;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            #ai_auto_banner {
                padding: 3rem 0;
            }
            
            .ai_auto_timeline_card {
                padding-left: 1.5rem;
            }
            
            .ai_auto_timeline_date {
                left: -20px;
                padding: 6px 12px;
            }
        }