/* 基础样式重置和全局设置 */
:root {
    --primary-color: #E75480;
    --secondary-color: #C2185B;
    --accent-color: #e74c3c;
    --background-color: #F8BBD0;
    --text-color: #C2185B;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    background: #F8BBD0;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    line-height: 1.6;
}

/* 头部样式优化 */
header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5em 0;
    text-align: center;
    box-shadow: var(--box-shadow);
}

nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 20px;
}

nav button {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 500;
}

nav button:hover, nav button.active {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* 商品容器样式优化 */
#product-container {
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* 商品卡片样式优化 */
.product-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.product-card img, .product-card video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    transition: var(--transition);
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.4em;
    color: var(--secondary-color);
}

/* 加载动画 */
.loading {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 响应式设计优化 */
@media (max-width: 768px) {
    #product-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        padding: 15px;
    }

    nav button {
        padding: 8px 16px;
        font-size: 0.9em;
    }
}

/* 图片模态框优化 */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.image-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.9);
    transition: var(--transition);
}

.image-modal.active .modal-content {
    transform: scale(1);
}

.modal-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--border-radius);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.image-modal .image-arrow-btn {
    font-size: 3.2em !important;
    color: #fff !important;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    text-shadow: 0 2px 8px #000a, 0 0 8px #E75480;
    font-weight: bold;
    transition: color 0.2s, transform 0.2s;
}
.image-modal .image-arrow-btn:hover {
    color: #E75480 !important;
    transform: scale(1.18);
}
.image-modal .image-close-btn {
    font-size: 3.2em !important;
    color: #fff !important;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 20;
    text-shadow: 0 2px 8px #000a, 0 0 8px #E75480;
    font-weight: bold;
    transition: color 0.2s, transform 0.2s;
    position: absolute;
    top: 18px;
    right: 32px;
    line-height: 1;
}
.image-modal .image-close-btn:hover {
    color: #E75480 !important;
    transform: scale(1.18) rotate(90deg);
}

.image-modal .image-arrow-btn#prevImageBtn {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
}
.image-modal .image-arrow-btn#nextImageBtn {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}

/* 联系信息样式优化 */
.contact-info {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    margin: 20px auto;
    border-radius: var(--border-radius);
    max-width: 600px;
    box-shadow: var(--box-shadow);
}

.contact-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

.contact-info p {
    margin: 5px 0;
    font-size: 1.1em;
}

.contact-ids {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    font-size: 1.08em;
    color: #fff;
}
.contact-ids .gecko-id {
    color: #28a745;
    font-weight: bold;
}

/* 按钮样式统一 */
.btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.btn:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

.btn-danger {
    background-color: var(--accent-color);
}

.btn-danger:hover {
    background-color: #c0392b;
}

/* 表单样式优化 */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e1e1;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

/* 状态消息样式 */
.status-message {
    padding: 15px;
    border-radius: var(--border-radius);
    margin: 10px 0;
    text-align: center;
    transition: var(--transition);
}

.status-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* 动画效果 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* 筛选器样式 */
.filters {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
}

.filter-select {
    padding: 8px 16px;
    border: 2px solid #e1e1e1;
    border-radius: var(--border-radius);
    background-color: white;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.filter-select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

/* 加载容器样式 */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: var(--text-color);
}

.loading-container p {
    margin-top: 15px;
    font-size: 1.1em;
}

/* 商品详情页面样式 */
.product-details {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.product-details-header {
    margin-bottom: 30px;
}

.back-btn {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 15px;
}

.back-btn:hover {
    background-color: #5a6268;
}

.product-description {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.product-description h3 {
    color: #333;
    margin-bottom: 15px;
}

.product-description p {
    line-height: 1.6;
    color: #555;
}

.product-images {
    margin-bottom: 30px;
}

.product-images h3 {
    color: #333;
    margin-bottom: 15px;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.detail-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.detail-image:hover {
    transform: scale(1.05);
}

.product-video {
    margin-bottom: 30px;
}

.product-video h3 {
    color: #333;
    margin-bottom: 15px;
}

.detail-video {
    border-radius: 8px;
    max-width: 100%;
}

/* 查看详情按钮 */
.view-details-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.view-details-btn:hover {
    background-color: #0056b3;
}

/* 缩略图样式 */
.thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.description-preview {
    color: #666;
    font-size: 14px;
    margin: 10px 0;
}

/* 商品详情模态框样式 */
.detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.detail-modal.active {
    opacity: 1;
    visibility: visible;
}
.detail-modal .modal-content {
    background: #fff;
    color: var(--text-color);
    border-radius: var(--border-radius);
    max-width: 700px;
    width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px 24px 24px 24px;
    position: relative;
    box-shadow: var(--box-shadow);
    animation: fadeIn 0.3s;
}
.detail-modal .close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #333;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}
.detail-modal .close-modal:hover {
    color: var(--accent-color);
}
.detail-modal .detail-images {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}
.detail-modal .detail-images img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid #eee;
    background: #fafafa;
}
.detail-modal .detail-video {
    width: 100%;
    max-height: 320px;
    border-radius: 8px;
    margin-bottom: 18px;
    background: #000;
}
.detail-modal .detail-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
}
.detail-modal .detail-desc {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 18px;
}

/* 首页未选城市提示美化 */
.city-tip-card {
    width: 65vw;
    max-width: 900px;
    min-width: 320px;
    background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(74,144,226,0.08);
    padding: 38px 32px 32px 32px;
    text-align: center;
    color: #2c3e50;
    font-size: 1.18em;
    line-height: 2.1;
    letter-spacing: 0.02em;
    border: 1.5px solid #e3e8f0;
    font-weight: 500;
    margin: 60px auto 0 auto;
}

.city-tip-card strong {
    color: #4a90e2;
    font-size: 1.22em;
}

.city-tip-card .tip-row {
    margin-bottom: 18px;
    display: block;
}

@media (max-width: 700px) {
    .city-tip-card {
        max-width: 96vw;
        padding: 22px 8vw 18px 8vw;
        font-size: 1em;
        margin: 32px auto 0 auto;
    }
}
@media (max-width: 420px) {
    .city-tip-card {
        padding: 14px 2vw 12px 2vw;
        font-size: 0.98em;
        border-radius: 10px;
    }
}

.center-content {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 55vh;
}

#pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #E75480;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
    font-weight: 500;
}

.pagination-btn:hover:not(:disabled) {
    background-color: #fce4ec;
}

.pagination-btn.active {
    background-color: #E75480;
    color: white;
    border-color: #E75480;
    font-weight: bold;
}

.pagination-btn:disabled {
    cursor: not-allowed;
    color: #ccc;
    background-color: #f9f9f9;
}

.plane-btn {
    display: inline-block;
    margin: 0 auto 12px auto;
    padding: 16px 38px;
    background: linear-gradient(90deg, #E75480 0%, #F8BBD0 100%);
    color: #fff;
    font-size: 1.25em;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(74,144,226,0.10);
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
    letter-spacing: 0.04em;
}
.plane-btn:hover {
    background: linear-gradient(90deg, #F8BBD0 0%, #E75480 100%);
    box-shadow: 0 4px 18px rgba(74,144,226,0.18);
    transform: translateY(-2px) scale(1.04);
    color: #fff;
    text-decoration: none;
}

.plane-btn-group {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.gecko-btn {
    background: linear-gradient(90deg, #34c759 0%, #28a745 100%);
}
.gecko-btn:hover {
    background: linear-gradient(90deg, #28a745 0%, #34c759 100%);
}

.gecko-modal {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(44,62,80,0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}
.gecko-modal.active {
    display: flex;
}
.gecko-modal-content {
    background: #fff;
    border-radius: 16px;
    max-width: 420px;
    width: 92vw;
    padding: 32px 24px 24px 24px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
    position: relative;
    animation: fadeIn 0.3s;
}
#closeGeckoModal {
    position: absolute;
    top: 12px;
    right: 18px;
    color: #333;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}
#closeGeckoModal:hover {
    color: var(--accent-color);
}
.gecko-modal-title {
    font-size: 1.25em;
    font-weight: bold;
    color: #357abd;
    margin-bottom: 18px;
    text-align: center;
}
.gecko-modal-body {
    font-size: 1.08em;
    color: #2c3e50;
    line-height: 1.9;
}
.gecko-section {
    margin-bottom: 18px;
}
.gecko-section-title {
    font-weight: bold;
    color: #28a745;
    margin-bottom: 6px;
}
.gecko-section-content {
    margin-left: 8px;
    margin-bottom: 4px;
}
.gecko-link {
    color: #4a90e2;
    font-weight: bold;
    word-break: break-all;
    text-decoration: underline;
}
.gecko-link:hover {
    color: #357abd;
}
.gecko-tip {
    color: #e67e22;
    font-size: 0.98em;
    margin: 0 0 0 2px;
}
@media (max-width: 500px) {
    .gecko-modal-content {
        padding: 16px 4vw 12px 4vw;
        font-size: 0.98em;
    }
    .gecko-modal-title {
        font-size: 1.08em;
    }
}

.city-nav {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 20px 8px 20px;
    margin-bottom: 0;
}
.city-select-btn {
    background: linear-gradient(90deg, #5D9CEC 0%, #4FC1A6 100%);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 18px;
    padding: 22px 0;
    cursor: pointer;
    font-size: 1.35em;
    margin: 0;
    display: inline-block;
    width: auto;
    max-width: 380px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.10);
    letter-spacing: 0.04em;
    transition: box-shadow 0.2s, transform 0.2s;
}
.city-select-btn:hover {
    box-shadow: 0 12px 36px rgba(44,62,80,0.18);
    transform: scale(1.03);
}

.city-select-modal {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(44,62,80,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 4000;
}
.city-select-modal.active {
    display: flex;
}
.city-select-modal-content {
    background: #fff;
    border-radius: 16px;
    max-width: 480px;
    width: 92vw;
    padding: 32px 24px 24px 24px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
    position: relative;
    animation: fadeIn 0.3s;
}
#closeCitySelectModal {
    position: absolute;
    top: 12px;
    right: 18px;
    color: #333;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}
#closeCitySelectModal:hover {
    color: var(--accent-color);
}
.city-select-title {
    font-size: 1.18em;
    font-weight: bold;
    color: #357abd;
    margin-bottom: 18px;
    text-align: center;
}
.city-select-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-height: 55vh;
    overflow-y: auto;
}
.city-select-list .city-btn {
    min-width: 80px;
    margin: 0;
    background: #f4f4f4;
    color: #357abd;
    border: 1.5px solid #e3e8f0;
    font-weight: 500;
}
.city-select-list .city-btn:hover {
    background: #e0e7ff;
    color: #222;
}

.password-modal {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(44,62,80,0.75);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
}
.password-modal-content {
    background: #fff;
    border-radius: 12px;
    padding: 32px 28px 24px 28px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
    text-align: center;
    min-width: 260px;
}
#visitPasswordInput {
    width: 80%; padding: 10px; margin: 16px 0 8px 0; border-radius: 6px; border: 1.5px solid #e3e8f0;
    font-size: 1.1em;
}
#visitPasswordBtn {
    padding: 8px 24px; border-radius: 6px; border: none; background: #4a90e2; color: #fff; font-size: 1.1em; cursor: pointer;
}
#visitPasswordBtn:hover { background: #357abd; }

/* 强制大图弹窗始终在最顶层 */
.image-modal {
    z-index: 99999 !important;
}
.image-modal.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.brand-bar {
    text-align: center;
    font-size: 2.1em;
    font-weight: bold;
    color: #5D9CEC;
    margin: 32px 0 18px 0;
    letter-spacing: 0.04em;
}

.main-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.10);
    padding: 32px 18px 24px 18px;
    margin: 0 auto 32px auto;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
}

.main-btn {
    font-size: 1.15em;
    border-radius: 12px;
    padding: 18px 0;
    font-weight: bold;
    margin: 0;
    background: linear-gradient(90deg, #E75480 0%, #F8BBD0 100%);
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
    transition: background 0.2s, transform 0.2s;
}

.main-btn:hover {
    background: linear-gradient(90deg, #F8BBD0 0%, #E75480 100%);
    transform: translateY(-2px);
}

.gecko-btn {
    background: #4FC1A6;
}

.gecko-btn:hover {
    background: #3EAA91;
}

.contact-section {
    background: #f8faff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(74,144,226,0.06);
    padding: 24px 18px 18px 18px;
    margin: 48px auto 0 auto;
    max-width: 420px;
    text-align: center;
    color: #357abd;
    font-size: 1.08em;
}

.contact-section .contact-ids {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-top: 8px;
    font-size: 1.08em;
    color: #357abd;
}

.contact-section .gecko-id {
    color: #28a745;
    font-weight: bold;
}

/* 右上角×关闭按钮 */
.close-x-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2.5em;
    background: none;
    border: none;
    color: #ff4d4f;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s, transform 0.2s;
}
.close-x-btn:hover {
    color: #ff7875;
    transform: scale(1.18) rotate(90deg);
}

/* 底部关闭详细介绍按钮 */
.close-btn {
    font-size: 1.35em;
    padding: 18px 38px;
    margin-top: 22px;
    border-radius: 10px;
    background: linear-gradient(90deg, #ff4d4f 0%, #357abd 100%);
    color: #fff;
    border: 3px solid #ff7875;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 12px rgba(44,62,80,0.10);
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.close-btn:hover {
    background: linear-gradient(90deg, #357abd 0%, #ff4d4f 100%);
    border-color: #357abd;
    transform: scale(1.08);
}

/* 轮播背景容器样式 */
.banner-bg-carousel {
  position: relative;
  width: 100vw;
  min-height: 220px;
  height: 32vw;
  max-height: 420px;
  overflow: hidden;
  z-index: 1;
}
.banner-bg-carousel .bg-img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1s;
  z-index: 1;
}
.banner-bg-carousel .bg-img.active {
  opacity: 1;
  z-index: 2;
}

/* 保证内容在背景之上 */
.banner-bg-content {
  position: relative;
  z-index: 10;
}

@media (max-width: 600px) {
  .banner-bg-carousel {
    min-height: 120px;
    height: 38vw;
    max-height: 220px;
  }
}

.download-btn {
  display: inline-block;
  background: linear-gradient(90deg, #f8fafc 60%, #eaf3fd 100%);
  color: #357abd;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid #E75480;
  padding: 0.45em 1.4em;
  font-size: 1em;
  box-shadow: 0 2px 8px rgba(44,62,80,0.06);
  transition: background 0.2s, color 0.2s, border 0.2s, transform 0.2s;
  text-align: center;
  margin-left: 8px;
  white-space: nowrap;
}
.download-btn:hover {
  background: linear-gradient(90deg, #E75480 60%, #F8BBD0 100%);
  color: #fff;
  border-color: #357abd;
  transform: translateY(-2px) scale(1.05);
  text-decoration: none;
}
@media (max-width: 600px) {
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .download-btn {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }
}

.contact-item p, .contact-item a {
    font-size: initial !important;
    font-weight: initial;
    color: initial;
    letter-spacing: initial;
}
.contact-item p a, .contact-item p .account {
    font-size: 1.18em !important;
    font-weight: 600;
    color: #E75480;
    letter-spacing: 0.01em;
}