/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #181818;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* 海报 */
.banner {
    width: 100vw;
    height: 400px;
    background: url('images/banner.jpg') no-repeat center center/cover;
}

/* 容器（最大宽度 1200px） */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 分类标题 */
.category {
    margin-bottom: 30px;
}

.category h2 {
    color: #f0b90b; /* 币安黄色 */
    margin-bottom: 10px;
}

/* APP 行 */
.app-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* APP 项目 */
.app-item {
    background-color: #222;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    width: 18%;
    transition: transform 0.3s ease, border 0.3s ease; /* 添加边框变化的过渡效果 */
}

.app-item:hover {
    transform: scale(1.05);
    border: 2px solid #f0b90b; /* 黄色外边框 */
}

.app-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* 下载按钮样式 */
.download-btn {
    margin-top: 10px;
    background-color: #f0b90b; /* 改为黄色 */
    color: black; /* 字体颜色改为黑色 */
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.download-btn:hover {
    background-color: #d3a308; /* 黄色变暗 */
}

/* 购买账号按钮样式 */
.buy-account-btn {
    margin-top: 10px;
    background-color: white; /* 改为白色 */
    color: black; /* 字体颜色改为黑色 */
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px; /* 按钮之间的间距 */
}

.buy-account-btn:hover {
    background-color: #e0e0e0; /* 改为灰色 */
}

/* 右侧悬浮栏（优化版） */
.sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: rgba(34, 34, 34, 0.9); /* 半透明背景，更突出 */
    padding: 10px;
    border-radius: 10px;
    border: 2px solid #f0b90b; /* 添加黄色描边 */
}


/* 悬浮栏按钮 */
.sidebar-item {
    background-color: #838383;
    color: rgb(0, 0, 0);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.sidebar-item:hover {
    background-color: #f0b90b;
    color: #222;
    transform: scale(1.1);
}

/* 底部社交 LOGO */
.footer {
    width: 100%;
    background-color: #111;
    padding: 20px 0;
}

/* LOGO 容器（居中+限制宽度） */
.social-logos {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center; /* 居中对齐 */
    gap: 50px; /* 增加间距 */
}

/* 单个 LOGO */
.social-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.social-item img {
    width: 50px; /* 放大一点 */
    height: 50px;
    transition: transform 0.3s ease;
}

/* LOGO 文字 */
.social-item p {
    margin-top: 10px;
    color: #f0b90b;
    font-size: 16px;
    font-weight: bold;
}

/* 悬停交互 */
.social-item:hover {
    transform: scale(1.2); /* 整个 LOGO 放大 */
}

.social-item img:hover {
    transform: scale(1.3);
}
/* 链接包裹按钮，防止按钮被挤变形 */
.btn-link {
    display: inline-block;
    text-decoration: none;
}
