:root {
    --primary: #4361ee;
    --secondary: #3f37c9;
    --accent: #4cc9f0;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #40c057;
    --warning: #f093fb;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --process-color: #2c3e50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans TC', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: #5FB3BA;
    padding: 0;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header美化 */
header {
    background: linear-gradient(135deg, #f5f5dc 0%, #faf8f3 100%);
    color: #2c3e50;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

header::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(30deg);
}

h1 {
    font-size: 3.2em;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    color: #2c3e50;
}

.subtitle {
    font-size: 1.5em;
    font-weight: 300;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    color: #5a5a5a;
}

/* 公司標識美化 */
.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    position: relative;
    z-index: 2;
}

.logo-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em;
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.company-name {
    font-size: 1.8em;
    font-weight: 700;
    text-align: left;
    color: #2c3e50;
}

.company-name span {
    display: block;
    font-weight: 300;
    font-size: 1.1em;
    opacity: 0.8;
    color: #5a5a5a;
}

/* 註冊按鈕樣式 */
.register-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.3);
    transition: var(--transition);
    margin: 20px auto;
    text-align: center;
}

.register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(67, 97, 238, 0.4);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

/* 內容區域美化 */
.content {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.2em;
    color: var(--primary);
    display: inline-block;
    padding-bottom: 15px;
    position: relative;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

/* 圖片容器美化 */
.images-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.image-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: white;
    position: relative;
    border: 1px solid #eaeaea;
}

.image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.25);
    border-color: var(--accent);
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.image-card:hover img {
    transform: scale(1.03);
}

.image-caption {
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #eaeaea;
    text-align: center;
    font-weight: 500;
    color: var(--secondary);
}

/* 功能列表美化 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(67, 97, 238, 0.15);
}

.feature-icon {
    font-size: 3.5em;
    color: var(--accent);
    margin-bottom: 20px;
    text-align: center;
}

.feature-card h3 {
    font-size: 1.6em;
    color: var(--secondary);
    margin-bottom: 15px;
    text-align: center;
}

.feature-card ul {
    list-style: none;
}

.feature-card li {
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: flex-start;
}

.feature-card li:last-child {
    border-bottom: none;
}

.feature-card li::before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.2em;
    min-width: 20px;
}

/* 應用場景美化 */
.application-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 40px;
    margin: 50px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.application-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.application-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.4em;
}

.application-card h3 i {
    font-size: 1.6em;
}

/* AGMS 應用過程專區 - 精準修正版 */
.agms-section {
    background: white;
    border-radius: 15px;
    padding: 60px 0;
    box-shadow: var(--shadow);
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.agms-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.agms-container {
    position: relative;
}

.agms-title {
    text-align: center;
    margin-bottom: 40px;
}

.agms-title h2 {
    font-size: 2.4em;
    color: var(--process-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.agms-title h2 i {
    background: var(--accent);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
}

.agms-title p {
    font-size: 1.2em;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

/* 修正：僅調整藍線位置（關鍵修正） */
.agms-process {
    position: relative;
    padding: 40px 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 40px 0;
    align-items: stretch;
}

/* 關鍵修正：將藍線定位在數字圓圈的中心位置 */
.process-steps::before {
    content: "";
    position: absolute;
    top: 25px; /* 對齊數字圓圈中心 (50px高度的一半) */
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 22%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.process-step:hover {
    transform: scale(1.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
}

.step-title {
    font-size: 1.3em;
    font-weight: 600;
    color: var(--process-color);
    margin-bottom: 25px;
}

.step-desc {
    color: #333;
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-highlight {
    background: rgba(67, 97, 238, 0.08);
    border-radius: 10px;
    padding: 20px;
    margin-top: 35px;
    border-left: 4px solid var(--primary);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex-grow: 1;
}

.step-highlight p {
    margin: 0;
    word-break: break-word;
    font-size: 0.9em;
    line-height: 1.4;
    text-align: justify;
    text-justify: auto;
}

.step-highlight h4 {
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 技術細節區塊 */
.agms-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.detail-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #eaeaea;
    transition: var(--transition);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.detail-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--process-color);
    margin-bottom: 20px;
    font-size: 1.6em;
}

.detail-card h3 i {
    color: var(--accent);
    font-size: 1.8em;
}

/* 下載中心樣式 */
.download-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 60px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.download-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.download-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(67, 97, 238, 0.2);
    border-color: var(--accent);
}

.download-card-icon {
    font-size: 3em;
    color: var(--accent);
    margin-bottom: 15px;
}

.download-card h3 {
    font-size: 1.5em;
    color: var(--primary);
    margin-bottom: 10px;
}

.download-card-version {
    font-size: 0.9em;
    color: #999;
    margin-bottom: 15px;
}

.download-card p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.download-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1em;
    text-align: center;
    align-self: flex-start;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.3);
}

/* 模態框樣式 */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

.modal-header {
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 1.8em;
    color: var(--primary);
    margin: 0 0 10px 0;
}

.modal-header p {
    color: #666;
    margin: 0;
    font-size: 0.95em;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95em;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

.error-message {
    color: #dc3545;
    font-size: 0.85em;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.modal-actions button {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-download {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: white;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.btn-cancel {
    background: #f0f0f0;
    color: var(--dark);
}

.btn-cancel:hover {
    background: #e0e0e0;
}

.protocol-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.protocol-item {
    background: white;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    border: 1px solid #eaeaea;
    transition: var(--transition);
}

.protocol-item:hover {
    transform: scale(1.05);
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.protocol-item h4 {
    font-size: 1.2em;
    margin-bottom: 8px;
    color: var(--process-color);
}

.protocol-item:hover h4 {
    color: white;
}

/* 页脚美化 */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5em;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
}

.footer-section p {
    margin-bottom: 15px;
    opacity: 0.8;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.contact-info i {
    color: var(--accent);
    font-size: 1.2em;
    min-width: 24px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
    font-size: 1.2em;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9em;
}

/* 動畫效果 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeIn 0.6s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }
.delay-9 { animation-delay: 0.9s; }
.delay-10 { animation-delay: 1s; }
.delay-11 { animation-delay: 1.1s; }
.delay-12 { animation-delay: 1.2s; }
.delay-13 { animation-delay: 1.3s; }
.delay-14 { animation-delay: 1.4s; }
.delay-15 { animation-delay: 1.5s; }
.delay-16 { animation-delay: 1.6s; }
.delay-17 { animation-delay: 1.7s; }
.delay-18 { animation-delay: 1.8s; }
.delay-19 { animation-delay: 1.9s; }
.delay-20 { animation-delay: 2s; }
.delay-21 { animation-delay: 2.1s; }

/* 快速跳轉按鈕 */
.quick-jump-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5em;
    box-shadow: 0 5px 20px rgba(67, 97, 238, 0.4);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.quick-jump-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(67, 97, 238, 0.6);
}

.quick-jump-btn.dragging {
    cursor: grabbing;
    transform: scale(1.2);
    box-shadow: 0 10px 40px rgba(67, 97, 238, 0.8);
}

.quick-jump-btn.draggable {
    cursor: grab;
}

/* 快速跳轉菜單 */
.quick-jump-menu {
    position: fixed;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    min-width: 250px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 999;
    display: none;
    animation: slideUp 0.3s ease-out;
}

.quick-jump-menu.active {
    display: block;
}

.quick-jump-menu h3 {
    padding: 15px;
    border-bottom: 2px solid var(--primary);
    color: var(--primary);
    font-size: 1.1em;
    margin: 0;
}

.quick-jump-menu a {
    display: block;
    padding: 12px 15px;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
    border-left: 4px solid transparent;
    font-size: 0.95em;
    font-weight: 500;
}

.quick-jump-menu a:hover {
    background: #f8f9fa;
    border-left-color: var(--primary);
    padding-left: 20px;
    color: var(--primary);
}

/* 語言切換按鈕 */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
    background: white;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.lang-btn {
    min-width: 60px;
    height: 40px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.95em;
    font-weight: 500;
    padding: 0 15px;
    transition: var(--transition);
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.lang-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
}

/* 響應式設計 */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5em;
    }
    
    .subtitle {
        font-size: 1.2em;
    }
    
    .images-container {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    /* 關鍵修正：在手機版恢復正常時間軸位置 */
    .process-steps::before {
        top: 50%;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--primary);
        transform: translateY(-50%);
        z-index: 1;
    }
    
    .process-step {
        width: 100%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }
    
    .subtitle {
        font-size: 1em;
    }
    
    .section-title h2 {
        font-size: 1.8em;
    }
    
    .content {
        padding: 40px 0;
    }
    
    .agms-title h2 {
        font-size: 1.8em;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8em;
    }
    
    .subtitle {
        font-size: 0.9em;
    }
    
    .company-logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8em;
    }
    
    .company-name {
        font-size: 1.4em;
    }
    
    .company-name span {
        font-size: 0.9em;
    }
}

/* 下載表格樣式 */
.download-table-wrapper {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background: white;
}

.download-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.download-table thead {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.download-table thead th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1.05em;
    border-bottom: 2px solid var(--primary);
}

.download-table tbody tr {
    transition: var(--transition);
    border-bottom: 1px solid #eaeaea;
}

.download-table tbody tr:hover {
    background-color: rgba(67, 97, 238, 0.05);
    transform: translateX(3px);
}

.download-table tbody tr:last-child {
    border-bottom: none;
}

.download-table tbody td {
    padding: 18px 15px;
    vertical-align: middle;
    font-size: 0.95em;
    color: #333;
}

.download-table .col-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.download-table .col-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.download-table .col-link i {
    font-size: 1.2em;
}

.download-table .col-type {
    background: rgba(76, 201, 240, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    color: var(--accent);
    display: inline-block;
}

.download-table .col-platform {
    color: #555;
    font-weight: 500;
}

.download-table .col-size {
    color: #888;
    font-weight: 500;
    text-align: right;
}

.product-title-row {
    background: linear-gradient(90deg, rgba(67, 97, 238, 0.08) 0%, transparent 100%);
    font-weight: 600;
    color: var(--primary);
    padding: 20px 15px !important;
    font-size: 1.1em;
}

.product-title-row td {
    padding: 20px 15px !important;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .download-table {
        font-size: 0.9em;
    }
    
    .download-table thead th {
        padding: 15px 10px;
    }
    
    .download-table tbody td {
        padding: 15px 10px;
    }
    
    .download-table .col-link {
        flex-direction: column;
        align-items: flex-start;
    }
}
