:root {
            --bg-dark: #070314;
            --bg-card: #120b29;
            --primary: #ff007f;
            --secondary: #8a2be2;
            --cyan: #00f0ff;
            --text-light: #ffffff;
            --text-gray: #a5a1b8;
            --border-color: #2e1d61;
            --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            font-family: var(--font-family);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        /* 顶部导航 */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(7, 3, 20, 0.85);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo-box {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .ai-page-logo {
            height: 35px;
            display: block;
        }

        .nav-menu {
            display: flex;
            gap: 20px;
            list-style: none;
        }

        .nav-menu a {
            font-size: 14px;
            color: var(--text-gray);
            font-weight: 500;
        }

        .nav-menu a:hover, .nav-menu a.active {
            color: var(--cyan);
            text-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
        }

        .nav-btn {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            box-shadow: 0 0 15px rgba(255, 0, 127, 0.4);
            border: none;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .nav-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 25px rgba(255, 0, 127, 0.7);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: var(--text-light);
            transition: 0.3s;
        }

        /* 统一容器 */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        /* 首屏 Hero (无图片设计) */
        .hero-section {
            padding-top: 160px;
            padding-bottom: 100px;
            position: relative;
            background: radial-gradient(circle at 50% 30%, rgba(138, 43, 226, 0.2) 0%, rgba(7, 3, 20, 1) 70%);
            text-align: center;
            overflow: hidden;
        }

        .hero-glow {
            position: absolute;
            width: 300px;
            height: 300px;
            background: var(--primary);
            filter: blur(150px);
            top: 20%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            opacity: 0.4;
        }

        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 25px;
            background: linear-gradient(to right, #ffffff, #ff007f, #00f0ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: textGlow 3s infinite alternate;
        }

        .hero-section p {
            font-size: 1.25rem;
            color: var(--text-gray);
            max-width: 800px;
            margin: 0 auto 40px auto;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: bold;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--text-light);
            box-shadow: 0 4px 20px rgba(255, 0, 127, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 30px rgba(255, 0, 127, 0.7);
        }

        .btn-outline {
            border: 2px solid var(--cyan);
            color: var(--cyan);
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
        }

        .btn-outline:hover {
            background: rgba(0, 240, 255, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(0, 240, 255, 0.5);
        }

        /* 通用标题样式 */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--text-light);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--cyan));
            border-radius: 2px;
        }

        .section-header p {
            margin-top: 15px;
            color: var(--text-gray);
            font-size: 1rem;
        }

        /* 模块背景交替 */
        section:nth-of-type(even) {
            background-color: rgba(18, 11, 41, 0.4);
        }

        /* 数据指标 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-top: -40px;
            position: relative;
            z-index: 10;
        }

        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 0, 127, 0.15);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 10px;
            background: linear-gradient(135deg, var(--primary), var(--cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        /* 关于我们 */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 1.75rem;
            margin-bottom: 20px;
            color: var(--cyan);
        }

        .about-text p {
            color: var(--text-gray);
            margin-bottom: 20px;
            font-size: 1rem;
        }

        .about-features {
            list-style: none;
        }

        .about-features li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
            color: var(--text-light);
        }

        .about-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        /* 全平台AIGC服务体系 & 标签云 */
        .service-intro {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
        }

        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }

        .tag-pill {
            background: rgba(138, 43, 226, 0.15);
            border: 1px solid rgba(138, 43, 226, 0.4);
            color: #d1c8f3;
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .tag-pill:hover {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-color: transparent;
            color: #fff;
            transform: scale(1.05);
            box-shadow: 0 0 12px rgba(255, 0, 127, 0.4);
        }

        /* 制作流程 & 时间线 */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            width: 4px;
            background: var(--border-color);
            top: 0;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .timeline-item {
            padding: 20px 40px;
            position: relative;
            width: 50%;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
            text-align: right;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--cyan);
            border: 4px solid var(--bg-dark);
            top: 25px;
            z-index: 1;
        }

        .timeline-item:nth-child(odd)::after {
            right: -10px;
        }

        .timeline-item:nth-child(even)::after {
            left: -10px;
        }

        .timeline-content {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            padding: 24px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .timeline-content h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }

        .timeline-content p {
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        /* 全行业解决方案 */
        .solution-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .solution-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 30px;
            transition: all 0.3s;
        }

        .solution-card:hover {
            transform: translateY(-5px);
            border-color: var(--cyan);
            box-shadow: 0 8px 25px rgba(0, 240, 255, 0.15);
        }

        .solution-card h3 {
            color: var(--cyan);
            margin-bottom: 15px;
        }

        .solution-card p {
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        /* 服务网络与标准化流程 */
        .network-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 40px;
            align-items: center;
        }

        .network-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .network-item {
            background: var(--bg-card);
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid var(--primary);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .step-box {
            background: rgba(18, 11, 41, 0.6);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 25px 20px;
            text-align: center;
            position: relative;
        }

        .step-num {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 1.5rem;
            font-weight: 800;
            color: rgba(255, 0, 127, 0.2);
        }

        /* 案例中心 (宣传图渲染) */
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .case-card {
            background: var(--bg-card);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
        }

        .case-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }

        .case-image-wrapper {
            position: relative;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(0, 0, 0, 0.2);
        }

        .case-image-wrapper img {
            width: 100%;
            display: block;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .case-card:hover .case-image-wrapper img {
            transform: scale(1.05);
        }

        .case-info {
            padding: 20px;
        }

        .case-tag {
            display: inline-block;
            background: rgba(0, 240, 255, 0.15);
            color: var(--cyan);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 12px;
            margin-bottom: 10px;
        }

        .case-info h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        /* 评测与对比表格 */
        .rating-box {
            background: linear-gradient(135deg, rgba(255, 0, 127, 0.1), rgba(0, 240, 255, 0.1));
            border: 1px solid var(--primary);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            margin-bottom: 40px;
        }

        .rating-score {
            font-size: 4rem;
            font-weight: 900;
            color: var(--cyan);
            line-height: 1;
            margin-bottom: 10px;
        }

        .rating-stars {
            color: #ffd700;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .comparison-table-wrapper {
            overflow-x: auto;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-card);
            border-radius: 12px;
            overflow: hidden;
        }

        .comparison-table th, .comparison-table td {
            padding: 15px 20px;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }

        .comparison-table th {
            background-color: rgba(138, 43, 226, 0.2);
            color: var(--cyan);
            font-weight: 600;
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table td strong {
            color: var(--primary);
        }

        /* Token 比价 */
        .price-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .price-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 25px;
            position: relative;
        }

        .price-card.featured {
            border-color: var(--cyan);
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
        }

        .price-card h3 {
            margin-bottom: 15px;
            color: var(--cyan);
        }

        .price-tag {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 15px;
        }

        .price-tag span {
            font-size: 0.9rem;
            color: var(--text-gray);
            font-weight: normal;
        }

        .price-features {
            list-style: none;
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        .price-features li {
            margin-bottom: 8px;
        }

        /* 培训版块 */
        .training-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
        }

        .training-card {
            background: linear-gradient(180deg, var(--bg-card) 0%, rgba(7, 3, 20, 0.8) 100%);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s;
        }

        .training-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }

        .training-icon {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .training-card h3 {
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        /* 用户评论 */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 30px;
            position: relative;
        }

        .review-text {
            color: var(--text-gray);
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
        }

        .review-text::before {
            content: '“';
            font-size: 3rem;
            color: var(--primary);
            position: absolute;
            top: -20px;
            left: -10px;
            opacity: 0.3;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-info h4 {
            font-size: 1rem;
            color: var(--cyan);
        }

        .author-info p {
            font-size: 0.85rem;
            color: var(--text-gray);
        }

        /* FAQ折叠面板 */
        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .faq-header {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--text-light);
            transition: background-color 0.3s;
        }

        .faq-header:hover {
            background-color: rgba(255, 0, 127, 0.05);
        }

        .faq-icon {
            transition: transform 0.3s;
            color: var(--primary);
        }

        .faq-body {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
            color: var(--text-gray);
            font-size: 0.95rem;
            border-top: 1px solid transparent;
        }

        .faq-item.active .faq-body {
            padding: 20px;
            border-top: 1px solid var(--border-color);
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        /* 术语与排查 */
        .trouble-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

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

        .trouble-card h3 {
            color: #ffa500;
            margin-bottom: 15px;
            font-size: 1.15rem;
        }

        .trouble-card ul {
            list-style: none;
            font-size: 0.9rem;
            color: var(--text-gray);
        }

        .trouble-card li {
            margin-bottom: 10px;
            padding-left: 15px;
            position: relative;
        }

        .trouble-card li::before {
            content: '•';
            color: #ffa500;
            position: absolute;
            left: 0;
        }

        /* 知识库资讯 */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .news-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 25px;
            transition: all 0.3s;
        }

        .news-card:hover {
            border-color: var(--cyan);
        }

        .news-date {
            font-size: 0.85rem;
            color: var(--text-gray);
            margin-bottom: 10px;
        }

        .news-card h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .news-card h3 a:hover {
            color: var(--cyan);
        }

        /* 智能匹配表单与联系我们 */
        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .contact-info-panel {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            padding: 40px;
            border-radius: 16px;
        }

        .contact-info-panel h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--cyan);
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .info-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 0, 127, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-weight: bold;
        }

        .qrcode-box {
            margin-top: 30px;
            display: flex;
            gap: 20px;
            align-items: center;
            flex-wrap: wrap;
        }

        .qrcode-box img {
            width: 120px;
            height: 120px;
            border-radius: 8px;
            border: 2px solid var(--border-color);
        }

        .form-wrapper {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            padding: 40px;
            border-radius: 16px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: var(--text-gray);
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            background: rgba(7, 3, 20, 0.6);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-light);
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--cyan);
            box-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
        }

        .btn-submit {
            width: 100%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--text-light);
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(255, 0, 127, 0.4);
            transition: all 0.3s;
        }

        .btn-submit:hover {
            box-shadow: 0 6px 20px rgba(255, 0, 127, 0.7);
            transform: translateY(-2px);
        }

        /* 友情链接与页脚 */
        footer {
            background-color: #05020f;
            border-top: 1px solid var(--border-color);
            padding: 60px 0 30px 0;
            font-size: 0.9rem;
            color: var(--text-gray);
        }

        .footer-cols {
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand p {
            margin-top: 15px;
            max-width: 300px;
        }

        .footer-links h4 {
            color: var(--text-light);
            margin-bottom: 20px;
            font-size: 1rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

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

        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .friend-links a {
            background: rgba(255, 255, 255, 0.05);
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 0.85rem;
        }

        .friend-links a:hover {
            background: var(--primary);
            color: #fff;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* 悬浮客服 */
        .float-contact {
            position: fixed;
            right: 20px;
            bottom: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .float-item {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(255,0,127,0.4);
            position: relative;
            transition: all 0.3s;
        }

        .float-item:hover {
            transform: scale(1.1);
        }

        .float-item svg {
            width: 24px;
            height: 24px;
            fill: #fff;
        }

        .float-popup {
            position: absolute;
            right: 60px;
            bottom: 0;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            padding: 15px;
            border-radius: 12px;
            visibility: hidden;
            opacity: 0;
            transition: all 0.3s;
            width: 180px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }

        .float-item:hover .float-popup {
            visibility: visible;
            opacity: 1;
            transform: translateX(-5px);
        }

        .float-popup img {
            width: 100%;
            border-radius: 6px;
            margin-bottom: 8px;
        }

        .float-popup p {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        /* 移动端响应式 */
        @media (max-width: 992px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .about-content, .network-grid, .contact-layout {
                grid-template-columns: 1fr;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--bg-dark);
                border-bottom: 1px solid var(--border-color);
                padding: 20px;
                gap: 15px;
            }
            .nav-menu.show {
                display: flex;
            }
            .menu-toggle {
                display: flex;
            }
            .timeline::before {
                left: 20px;
            }
            .timeline-item {
                width: 100%;
                padding-left: 50px;
                padding-right: 0;
            }
            .timeline-item:nth-child(odd) {
                text-align: left;
            }
            .timeline-item::after {
                left: 10px !important;
            }
            .footer-cols {
                grid-template-columns: 1fr;
            }
        }

        @keyframes textGlow {
            0% { filter: drop-shadow(0 0 5px rgba(255, 0, 127, 0.4)); }
            100% { filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.6)); }
        }