

/* 顶部英雄区域 - 首屏核心内容 */
header.hero-header {
    background: url("/imag/logo.png") no-repeat center center;
    background-size: cover;
    background-position: 50% 30%;
    height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    margin-bottom: 80px;
    transition: backdrop-filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: brightness(0.8);
    will-change: backdrop-filter;
}

/* 渐变叠加效果 */
header.hero-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 85%,
        rgba(0, 0, 0, 0.95) 100%
    );
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 光效叠加 */
header.hero-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 50% 20%,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 50%
    );
    z-index: 1;
}

/* 视差滚动效果 */
header.hero-header.parallax {
    background-attachment: fixed;
}

/* 视差背景层优化 */
.parallax-bg {
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* 内容容器 */
.header-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: var(--text-light);
    padding: 120px 40px 100px;
    max-width: 900px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: flex-start;
    width: 100%;
}

/* 游戏标题 */
.header-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 12px;
    margin-top: 0;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 16px 64px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
    line-height: 1.1;
    animation: slideInUp 1s ease-out 0.2s both;
    color: #ffffff;
    align-self: flex-start;
    position: relative;
    z-index: 10;
}

/* 游戏统计标签区域 */
.game-stats-tags {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 0 24px;
    align-self: flex-start;
    animation: slideInUp 1s ease-out 0.3s both;
}

/* 透明渐变统计标签 */
.stats-tag {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: clamp(13px, 2vw, 15px);
    font-weight: 600;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(16px);
    color: var(--text-light);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.stats-tag:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* 统计标签图标 */
.stats-tag-icon {
    width: 18px;
    height: 18px;
    fill: var(--text-light);
    opacity: 0.9;
}

/* 游戏信息统计 */
.game-meta {
    display: none; /* 隐藏原来的游戏元信息 */
}

/* 游戏标签在英雄区域 */
.header-tags {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin: 0 0 40px;
    max-width: 100%;
    animation: slideInUp 1s ease-out 0.4s both;
    align-self: flex-start;
}

.header-tag {
    padding: 12px 28px;
    border-radius: 30px;
    font-size: clamp(13px, 2vw, 15px);
    font-weight: 600;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(16px);
    color: var(--text-light);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* 标签悬停效果 */
.header-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.header-tag:hover::before {
    left: 100%;
}

.header-tag:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.4);
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 添加进入动画延迟 */
@keyframes staggeredFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 单个标签的交错动�?*/
.header-tag:nth-child(1) { animation-delay: 0.6s; }
.header-tag:nth-child(2) { animation-delay: 0.65s; }
.header-tag:nth-child(3) { animation-delay: 0.7s; }
.header-tag:nth-child(4) { animation-delay: 0.75s; }
.header-tag:nth-child(5) { animation-delay: 0.8s; }
.header-tag:nth-child(6) { animation-delay: 0.85s; }

/* 游戏详情页专用样�?*/
.game-detail {
    padding: 1.25rem 0 2.5rem;
}

/* 主要内容布局 */
.main-content {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(200px, 250px);
    gap: 1.25rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.25rem;
    box-sizing: border-box;
}

/* 大尺寸屏幕调整 */
@media (min-width: 1600px) {
    .main-content {
        max-width: 1600px;
        padding: 0 2rem;
        grid-template-columns: minmax(400px, 1fr) minmax(250px, 300px);
    }
}

/* 主内容区�?*/
.content-area {
    min-width: 0;
}

/* 侧边�?*/
.sidebar {
    min-width: 200px;
    max-width: 250px;
    width: 100%;
}

/* 侧边栏区�?*/
.sidebar-section {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* 侧边栏标�?*/
.sidebar-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    text-align: center;
}

/* QQ群容�?*/
.qq-group-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* QQ群容器中的链�?*/
.qq-group-container a {
    text-decoration: none;
    width: 100%;
    max-width: 280px;
}

/* QQ群卡�?*/
.qq-group-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

/* 深色模式下的QQ群卡片样式 */
[data-theme="dark"] .qq-group-card {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.qq-group-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 深色模式下的QQ群卡片悬停效果 */
[data-theme="dark"] .qq-group-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.qq-group-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qq-group-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.qq-group-info {
    flex: 1;
    text-align: left;
    min-width: 0;
}

.qq-group-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.qq-group-btn {
    background: var(--bg-accent);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: 70px;
}

/* 社交账号轮播 */
.social-carousel {
    position: relative;
    overflow: hidden;
    max-width: 200px;
    margin: 0 auto;
}

/* QQ群卡片居中 */
.sidebar-section.social-section a {
    display: flex;
    justify-content: center;
}

.social-carousel-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

/* 社交账号项 */
.social-item {
    text-align: center;
    padding: 12px;
    background: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    min-width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
}

/* 深色模式下的社交账号项样式 */
[data-theme="dark"] .social-item {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 深色模式下的社交账号项悬停效果 */
[data-theme="dark"] .social-item:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-logo {
    margin-bottom: 0.75rem;
}

.social-logo img {
    width: 32px !important;
    height: 32px !important;
}

.social-qr {
    margin-bottom: 0.75rem;
    width: 100%;
    max-width: 150px;
    margin-left: auto;
    margin-right: auto;
}

.social-qr img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
}

.social-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 0;
}

/* 轮播导航 */
.social-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.social-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-dot.active {
    background: var(--bg-accent);
    transform: scale(1.2);
}

/* 游戏标签样式 */
.game-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 24px 0 32px;
}

.game-tag {
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    background: var(--bg-secondary);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.game-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 核心功能列表 */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--bg-accent);
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* 截图轮播样式 */
.screenshot-section {
    background: var(--bg-secondary);
    padding: 40px 20px;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    width: 100%;
    box-sizing: border-box;
}

.title-wrap {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.screenshot-container {
    width: 100%;
    max-width: 900px;
    height: 500px;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background: var(--bg-primary);
}

/* 左右切换按钮 */
.screenshot-container .screenshot-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    z-index: 4;
    opacity: 0.6;
}

/* 左切换按�?*/
.screenshot-container .screenshot-btn.prev-btn {
    left: 15px;
}

/* 右切换按�?*/
.screenshot-container .screenshot-btn.next-btn {
    right: 15px;
}

/* 按钮悬停效果 */
.screenshot-container .screenshot-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.05);
    opacity: 1;
}

/* 按钮点击效果 */
.screenshot-container .screenshot-btn:active {
    transform: translateY(-50%) scale(0.98);
    background: rgba(255, 255, 255, 0.4);
}

.screenshot-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), z-index 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    will-change: transform, opacity;
}

.screenshot-item.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 3;
}

.screenshot-item.prev {
    opacity: 0;
    transform: translateX(-100%);
    z-index: 2;
}

.screenshot-item.next {
    opacity: 0;
    transform: translateX(100%);
    z-index: 2;
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screenshot-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.screenshot-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.screenshot-dot:hover {
    background: var(--bg-accent);
    transform: scale(1.1);
}

.screenshot-dot.active {
    background: var(--bg-accent);
    transform: scale(1.3);
    box-shadow: 0 4px 8px rgba(22, 93, 255, 0.3);
}

/* 配置要求样式 */
.config-section {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.config-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.config-table th, .config-table td {
    border: 1px solid var(--border-light);
    padding: 18px 24px;
    text-align: left;
}

.config-table th {
    background: var(--bg-secondary);
    font-weight: 600;
    color: var(--text-primary);
}

.config-table tr:nth-child(even) {
    background: var(--bg-secondary);
}

/* 下载区域样式 */
.download-section {
    background: var(--bg-secondary);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.download-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.download-btn {
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    min-width: 120px;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.download-info {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* CDK图片区域样式 */
.cdk-section {
    padding: 0;
    max-width: 100%;
    overflow: hidden;
}

.cdk-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cdk-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 16px;
}

/* 响应式设�?*/
@media (max-width: 1024px) {
    /* 平板端保持PC布局，但调整间距 */
    .main-content {
        gap: 20px;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    /* 小平板端调整布局 */
    .main-content {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .sidebar {
        width: 100%;
        max-width: 100%;
    }
    
    /* 英雄区域 */
    header.hero-header {
        height: 450px;
        margin-bottom: 50px;
        background-position: 50% 40%;
    }
    
    .header-content {
        padding: 60px 24px 80px;
    }
    
    .header-content h1 {
        font-size: 2.8rem;
    }
    
    .game-meta {
        gap: 16px;
        margin: 24px 0 32px;
    }
    
    .meta-item {
        padding: 10px 18px;
        gap: 8px;
        font-size: 0.95rem;
    }
    
    .meta-icon {
        width: 24px;
        height: 24px;
    }
    
    .header-tags {
        gap: 10px;
        margin: 0 auto 32px;
    }
    
    .header-tag {
        padding: 10px 22px;
        font-size: 13px;
    }
    
    /* 功能列表 */
    .feature-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 24px;
    }
    
    /* 截图和下载区域 */
    .screenshot-section,
    .download-section {
        padding: 30px 15px;
        margin-bottom: 30px;
    }
    
    /* 截图容器 */
    .screenshot-container {
        height: 250px;
        max-width: 100%;
    }
    
    /* 下载按钮 */
    .download-options {
        flex-direction: column;
        align-items: center;
        gap: 0.9375rem;
    }
    
    .download-btn {
        padding: 0.875rem 1.75rem;
        min-width: 10rem;
    }
    
    
    
    .qq-group-container a {
        max-width: 100%;
    }
    
    .qq-group-card {
        padding: 12px 16px;
        gap: 12px;
    }
    
    .sidebar-section {
        padding: 20px;
    }
    
    .qq-group-icon img {
        width: 24px;
        height: 24px;
    }
    
    .qq-group-name {
        font-size: 14px;
    }
    
    .qq-group-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    /* CDK图片区域响应式 */
    .cdk-section {
        max-width: 100%;
        overflow: hidden;
    }
    
    .cdk-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
    }
}



@media (max-width: 480px) {
    /* 英雄区域 */
    header.hero-header {
        height: 400px;
        margin-bottom: 40px;
        border-radius: 0 0 24px 24px;
    }
    
    .header-content {
        padding: 50px 20px 70px;
    }
    
    /* 主内容区域 */
    .main-content {
        padding: 0 10px;
    }
    
    .header-content h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .game-meta {
        gap: 12px;
        margin: 20px 0 28px;
        flex-direction: column;
        align-items: center;
    }
    
    .meta-item {
        padding: 8px 20px;
        font-size: 0.9rem;
        width: fit-content;
    }
    
    .header-tags {
        gap: 8px;
        margin: 0 auto 28px;
    }
    
    .header-tag {
        padding: 8px 18px;
        font-size: 12px;
        border-radius: 24px;
    }
    
    /* 截图和下载区域 */
    .screenshot-section,
    .download-section {
        padding: 20px 10px;
        margin-bottom: 20px;
    }
    
    /* 截图容器 */
    .screenshot-container {
        height: 200px;
    }
    
    /* 下载按钮 */
    .download-btn {
        padding: 0.75rem 1.5rem;
        min-width: 8.75rem;
        font-size: 0.875rem;
    }
    
    /* 侧边栏响应式 */
    .social-carousel {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .qq-group-card {
        padding: 10px 14px;
        gap: 10px;
    }
    
    .qq-group-info {
        text-align: left;
    }
    
    .qq-group-icon img {
        width: 20px;
        height: 20px;
    }
    
    .social-item {
        padding: 10px;
    }
    
    .social-logo {
        margin-bottom: 0.5rem;
    }
    
    .social-logo img {
        width: 28px !important;
        height: 28px !important;
    }
    
    .social-qr {
        margin-bottom: 0.5rem;
    }
    
    .social-qr img {
        width: 70px !important;
        height: 70px !important;
    }
    
    .social-name {
        font-size: 11px;
    }
    
    /* CDK图片区域移动端响应式 */
    .cdk-section {
        max-width: 100%;
        overflow: hidden;
    }
    
    .cdk-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
    
    .platform-badges {
        margin-top: 10px;
        margin-left: 0 !important;
        justify-content: center;
    }
    
    .platform-badges span {
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 20px;
    }
}

