@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&family=Rajdhani:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    background: transparent;
    color: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* 固定背景图 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/背景图.jpg') no-repeat center center;
    background-size: cover;
    pointer-events: none;
    z-index: -2;
}

/* 背景覆盖层 */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 2, 33, 0.3);
    pointer-events: none;
    z-index: -1;
}

/* 网格背景已移除 */

#root {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#app {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 动画 */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes textGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 105, 180, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 105, 180, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 105, 180, 0);
    }
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px #ff69b4, 0 0 10px #ff69b4, 0 0 15px #ff69b4;
    }
    50% {
        text-shadow: 0 0 10px #ff69b4, 0 0 20px #ff69b4, 0 0 30px #ff69b4;
    }
    100% {
        text-shadow: 0 0 5px #ff69b4, 0 0 10px #ff69b4, 0 0 15px #ff69b4;
    }
}

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

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* 导航栏 */
.top-nav {
    background: rgba(42, 27, 61, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(255, 105, 180, 0.5);
    padding: 12px 0;
    box-shadow: 0 4px 25px rgba(255, 105, 180, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 480px) {
    .nav-logo-container {
        flex: 1;
    }
    
    .nav-container > div:last-child {
        display: flex;
        gap: 6px;
    }
    
    .nav-action-button {
        font-size: 12px;
        padding: 6px 12px;
    }
}

.nav-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 105, 180, 0.7);
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2), rgba(147, 112, 219, 0.2));
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.6);
    animation: pulse 2s infinite;
}

.nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-title {
    color: #ff69b4;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2px;
    font-family: 'Noto Serif JP', serif;
    animation: glow 2s infinite;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.7);
}

.nav-subtitle {
    color: #da70d6 !important;
    opacity: 0.9;
    font-size: 14px;
    line-height: 1.2;
    margin-top: 0;
    font-family: 'Noto Sans JP', sans-serif;
    text-shadow: 0 0 5px rgba(218, 112, 214, 0.5);
}

.nav-action-button {
    background: linear-gradient(145deg, rgba(255, 105, 180, 0.2), rgba(147, 112, 219, 0.2));
    color: #ff69b4;
    border: 1px solid rgba(255, 105, 180, 0.7);
    border-radius: 10px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
}

.nav-action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.5);
    background: linear-gradient(145deg, rgba(255, 105, 180, 0.3), rgba(147, 112, 219, 0.3));
}

/* 横幅 */
section.mx-3.my-4.rounded-xl.shadow-xl.overflow-hidden {
    margin: 10px 12px;
    padding: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.6);
    border: 2px solid rgba(255, 105, 180, 0.5);
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(147, 112, 219, 0.1));
}

/* 轮播图 */
.banner-carousel {
    position: relative;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

@media (max-width: 380px) {
    .carousel-container {
        height: 150px;
    }
}

@media (max-width: 320px) {
    .carousel-container {
        height: 130px;
    }
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-image:hover {
    transform: scale(1.02);
    box-shadow: 0 0 35px rgba(255, 105, 180, 0.8);
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ff69b4;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.8);
    transform: scale(1.2);
}

/* 双按钮区域 */
.dual-btn-section {
    margin: 10px 12px;
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.dual-btn {
    flex: 1;
    background: linear-gradient(145deg, rgba(10, 10, 30, 0.8), rgba(20, 20, 40, 0.8));
    border: 1px solid rgba(0, 255, 255, 0.5);
    border-radius: 14px;
    padding: 18px 4px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
}

.dual-btn span {
    background-image: linear-gradient(145deg, #0ff, #f0f, #0ff, #f0f);
    background-size: 400% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 900;
    font-size: 18px;
    animation: textGradient 3s linear infinite;
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
}

.dual-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
    background: linear-gradient(145deg, rgba(20, 20, 40, 0.8), rgba(30, 30, 60, 0.8));
    border-color: rgba(0, 255, 255, 0.8);
}

.dual-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* 公告栏 */
.announcement-bar {
    background: linear-gradient(145deg, rgba(42, 27, 61, 0.8), rgba(68, 29, 81, 0.8));
    border: 1px solid rgba(255, 105, 180, 0.6);
    border-radius: 15px;
    margin: 10px 12px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.announcement-bar:hover {
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.6);
    transform: translateY(-3px);
}

.announcement-icon {
    color: #ff69b4;
    font-size: 20px;
    margin-right: 12px;
    flex-shrink: 0;
    text-shadow: 0 0 10px #ff69b4;
}

.announcement-container {
    flex: 1;
    overflow: hidden;
    height: 24px;
    white-space: nowrap;
}

.announcement-marquee {
    color: #da70d6;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    width: 100%;
    border: none;
    background: transparent;
    font-family: 'Noto Sans JP', sans-serif;
    text-shadow: 0 0 5px rgba(218, 112, 214, 0.5);
}

/* 标签按钮 */
.tab-buttons-container {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: rgba(42, 27, 61, 0.8);
    border: 1px solid rgba(255, 105, 180, 0.4);
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
    margin: 0 12px 10px;
    backdrop-filter: blur(10px);
}

.tab-button {
    background: rgba(68, 29, 81, 0.8);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 105, 180, 0.4);
    border-radius: 14px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    text-align: center;
    cursor: pointer;
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
    overflow: hidden;
}

.tab-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.5);
    color: #ff69b4;
    border-color: rgba(255, 105, 180, 0.6);
}

.tab-button.active {
    background: linear-gradient(145deg, rgba(255, 105, 180, 0.2), rgba(147, 112, 219, 0.2));
    color: #ff69b4;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.6);
    border-color: rgba(255, 105, 180, 0.8);
    transform: translateY(-2px);
}



.tab-button.active:hover {
    background: linear-gradient(145deg, rgba(255, 105, 180, 0.3), rgba(147, 112, 219, 0.3));
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.8);
}

/* 标签内容 */
.tab-content-container {
    margin: 0 12px 15px;
    position: relative;
    overflow: hidden;
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeIn 0.5s ease-out;
}

.tab-content .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

/* 分类卡片 */
.category-card {
    background: rgba(68, 29, 81, 0.8);
    border: 1px solid rgba(255, 105, 180, 0.4);
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 100px;
    position: relative;
    transform-style: preserve-3d;
    backdrop-filter: blur(10px);
    cursor: pointer;
    overflow: hidden;
    animation: fadeIn 0.5s ease-out;
}

@media (max-width: 480px) {
    .tab-content .grid {
        gap: 6px;
    }
    
    .category-card {
        padding: 8px 6px;
        min-height: 80px;
    }
    
    .category-card-img {
        width: 40px;
        height: 40px;
    }
    
    .category-card-title {
        font-size: 11px;
        margin-top: 6px;
    }
}

.category-card:hover {
    transform: translateY(-5px) scale(1.02) rotateX(5deg);
    box-shadow: 0 0 35px rgba(255, 105, 180, 0.6);
    border-color: rgba(255, 105, 180, 0.8);
}

.category-card:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.4);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.4), rgba(147, 112, 219, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: all 0.3s ease;
}

.category-card:hover::before {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.6), rgba(147, 112, 219, 0.6));
}

.category-card .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 105, 180, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at 0 0, rgba(255, 105, 180, 0.4) 0%, transparent 70%);
    border-radius: 16px 0 0 0;
    pointer-events: none;
}

.category-card .flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.category-card-img {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 105, 180, 0.6);
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2), rgba(147, 112, 219, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.4);
    position: relative;
    z-index: 1;
}

.category-card-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.3), transparent);
    z-index: 1;
}

.category-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
}

.category-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 0;
    gap: 6px;
    padding-top: 0;
    overflow: hidden;
    text-align: center;
    width: 100%;
}

.category-card-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 0;
    color: #ff69b4;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Noto Sans JP', sans-serif;
    text-shadow: 0 0 5px rgba(255, 105, 180, 0.6);
    width: 100%;
    text-align: center;
}

.category-card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 0;
    word-break: break-word;
    white-space: normal;
    display: block;
    overflow: visible;
    max-height: none;
}

.category-card-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 8px;
    padding-top: 0;
}

.download-btn {
    background: linear-gradient(145deg, rgba(0, 255, 255, 0.2), rgba(128, 0, 255, 0.2));
    color: #0ff;
    border: 1px solid rgba(0, 255, 255, 0.5);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 28px;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
    min-width: 75px;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
}

.download-btn:hover {
    background: linear-gradient(145deg, rgba(0, 255, 255, 0.3), rgba(128, 0, 255, 0.3));
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    border-color: rgba(0, 255, 255, 0.8);
}

.download-btn:active {
    transform: translateY(0);
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
}

.download-btn i {
    font-size: 11px;
}

/* 页面容器 */
.page-container {
    padding-top: 80px;
    padding-bottom: 100px;
}

/* 页脚 */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(42, 27, 61, 0.9);
    border-top: 2px solid rgba(255, 105, 180, 0.5);
    box-shadow: 0 -4px 25px rgba(255, 105, 180, 0.3);
    backdrop-filter: blur(15px);
    z-index: 100;
    padding: 10px 0;
}

footer p {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Noto Sans JP', sans-serif;
    text-shadow: 0 0 5px rgba(255, 105, 180, 0.3);
}

@media (max-width: 480px) {
    footer {
        padding: 8px 0;
    }
    
    footer p {
        font-size: 12px;
    }
    
    #footerText {
        font-size: 11px;
    }
    
    #siteDescription {
        font-size: 10px;
    }
}

/* 客服页面 */
.page-header {
    padding: 12px 15px;
    background: rgba(42, 27, 61, 0.9);
    border-bottom: 2px solid rgba(255, 105, 180, 0.5);
    box-shadow: 0 4px 25px rgba(255, 105, 180, 0.3);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.page-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-header-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #ff69b4;
    font-family: 'Noto Serif JP', serif;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.7);
}

.contact-card {
    background: rgba(68, 29, 81, 0.8);
    border: 1px solid rgba(255, 105, 180, 0.5);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 35px rgba(255, 105, 180, 0.5);
    border-color: rgba(255, 105, 180, 0.7);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff69b4, #da70d6);
    border-radius: 20px 20px 0 0;
}

.contact-header {
    margin-bottom: 20px;
}

.contact-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2), rgba(147, 112, 219, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 105, 180, 0.7);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.4);
}

.contact-icon img {
    width: 35px;
    height: 35px;
}

.contact-copy-area {
    background: rgba(42, 27, 61, 0.6);
    border: 1px solid rgba(255, 105, 180, 0.4);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: inset 0 0 15px rgba(255, 105, 180, 0.3);
}

.contact-copy-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-bottom: 0;
    padding: 4px 0;
    font-family: 'Noto Sans JP', sans-serif;
}

.contact-copy-btn {
    background: linear-gradient(145deg, rgba(255, 105, 180, 0.2), rgba(147, 112, 219, 0.2));
    color: #ff69b4;
    border: 1px solid rgba(255, 105, 180, 0.7);
    border-radius: 12px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.4);
    text-shadow: 0 0 5px rgba(255, 105, 180, 0.6);
    font-family: 'Noto Sans JP', sans-serif;
}

.contact-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.6);
    background: linear-gradient(145deg, rgba(255, 105, 180, 0.3), rgba(147, 112, 219, 0.3));
    border-color: rgba(255, 105, 180, 0.9);
}

.contact-action-btn {
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.4);
    font-family: 'Noto Sans JP', sans-serif;
}

.contact-action-btn.bg-primary {
    background: linear-gradient(145deg, rgba(255, 105, 180, 0.2), rgba(147, 112, 219, 0.2));
    color: #ff69b4;
    border: 1px solid rgba(255, 105, 180, 0.7);
    text-shadow: 0 0 5px rgba(255, 105, 180, 0.6);
}

.contact-action-btn.bg-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.6);
    background: linear-gradient(145deg, rgba(255, 105, 180, 0.3), rgba(147, 112, 219, 0.3));
    border-color: rgba(255, 105, 180, 0.9);
}

.contact-action-btn.border-primary {
    background: rgba(68, 29, 81, 0.8);
    color: #ff69b4;
    border: 1px solid rgba(255, 105, 180, 0.7);
}

.contact-action-btn.border-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.6);
    background: rgba(85, 36, 101, 0.8);
    border-color: rgba(255, 105, 180, 0.9);
}

.contact-action-btn:active {
    transform: translateY(0) !important;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.4) !important;
}

.text-primary {
    color: #ff69b4 !important;
    text-shadow: 0 0 5px rgba(255, 105, 180, 0.6);
}

/* 分享弹窗 */
.share-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 2, 33, 0.9), rgba(42, 27, 61, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(20px);
    animation: fadeIn 0.3s ease-out;
}

.share-container {
    background: linear-gradient(145deg, rgba(68, 29, 81, 0.95), rgba(42, 27, 61, 0.95));
    border: 1px solid rgba(255, 105, 180, 0.8);
    border-radius: 24px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 0 45px rgba(255, 105, 180, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    backdrop-filter: blur(20px);
    position: relative;
    animation: scaleIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.share-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff69b4, #da70d6, #ff69b4);
    border-radius: 24px 24px 0 0;
}

.share-container h3 {
    color: #ff69b4;
    font-family: 'Noto Serif JP', serif;
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.8);
    font-size: 20px !important;
    font-weight: 700 !important;
}

.share-container p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px !important;
    font-weight: 500 !important;
}

.share-container .p-5 {
    padding: 24px !important;
}

.share-container .border-b {
    border-bottom: 1px solid rgba(255, 105, 180, 0.3) !important;
}

#closeShareBtn {
    background: none !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 18px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    padding: 4px 8px !important;
    border-radius: 8px !important;
}

#closeShareBtn:hover {
    color: #ff69b4 !important;
    background: rgba(255, 105, 180, 0.2) !important;
    text-shadow: 0 0 10px #ff69b4 !important;
    transform: scale(1.1) !important;
}

.share-platform {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.share-platform::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(147, 112, 219, 0.1));
    border-radius: 20px;
    z-index: -1;
    transition: all 0.3s ease;
}

.share-platform:hover {
    transform: translateY(-5px) scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 105, 180, 0.8));
}

.share-platform:hover::before {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2), rgba(147, 112, 219, 0.2));
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.6);
}

.share-platform .w-14.h-14.rounded-full {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.3);
}

.share-platform:hover .w-14.h-14.rounded-full {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.7);
    border-color: rgba(255, 105, 180, 0.6);
}

.share-platform .w-14.h-14.rounded-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2), rgba(147, 112, 219, 0.2));
    border-radius: 50%;
    z-index: -1;
    transition: all 0.3s ease;
}

.share-platform:hover .w-14.h-14.rounded-full::before {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.4), rgba(147, 112, 219, 0.4));
}

.share-platform .text-xs.font-medium {
    font-size: 12px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease;
}

.share-platform i {
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.share-platform:hover i {
    color: #ff69b4 !important;
    text-shadow: 0 0 15px #ff69b4;
    transform: scale(1.1);
}

.share-platform span {
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

.share-platform:hover span {
    color: #ff69b4;
    text-shadow: 0 0 10px #ff69b4;
}

.domain-text {
    background: rgba(42, 27, 61, 0.8) !important;
    border: 1px solid rgba(255, 105, 180, 0.5) !important;
    color: #ff69b4 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 12px 16px !important;
    border-radius: 12px 0 0 12px !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    text-shadow: 0 0 5px rgba(255, 105, 180, 0.6) !important;
}

.domain-text:focus {
    border-color: rgba(255, 105, 180, 0.8) !important;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.5) !important;
    outline: none !important;
}

.btn-copy {
    background: linear-gradient(145deg, rgba(255, 105, 180, 0.3), rgba(147, 112, 219, 0.3)) !important;
    border: 1px solid rgba(255, 105, 180, 0.7) !important;
    color: #ff69b4 !important;
    text-shadow: 0 0 5px rgba(255, 105, 180, 0.6) !important;
    padding: 12px 20px !important;
    border-radius: 0 12px 12px 0 !important;
    font-weight: 600 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.3) !important;
    backdrop-filter: blur(10px) !important;
}

.btn-copy:hover {
    background: linear-gradient(145deg, rgba(255, 105, 180, 0.4), rgba(147, 112, 219, 0.4)) !important;
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.7) !important;
    border-color: rgba(255, 105, 180, 0.9) !important;
    transform: translateY(-2px) !important;
}

.btn-copy:active {
    transform: translateY(0) !important;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.5) !important;
}

/* 公告弹窗 */
.announcement-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(15px);
}

.announcement-container-new {
    background: rgba(68, 29, 81, 0.9);
    border: 1px solid rgba(255, 105, 180, 0.7);
    border-radius: 22px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 0 35px rgba(255, 105, 180, 0.6);
    overflow: hidden;
    padding: 20px;
    backdrop-filter: blur(15px);
}

.announcement-close-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.announcement-close-btn:hover {
    color: #ff69b4;
    text-shadow: 0 0 10px #ff69b4;
}

.noticeNew {
    text-align: center;
}

.noticeNew .topline {
    height: 4px;
    background: linear-gradient(90deg, #ff69b4, #da70d6);
    border-radius: 2px;
    margin-bottom: 20px;
}

.logoimg {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 18px;
    border: 2px solid rgba(255, 105, 180, 0.7);
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.6);
}

.dear {
    color: #ff69b4;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Noto Serif JP', serif;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.7);
}

.maincontents {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: 'Noto Sans JP', sans-serif;
}

.info-group {
    margin-top: 20px;
}

.foot {
    height: 1px;
    background: rgba(255, 105, 180, 0.4);
    margin-bottom: 10px;
}

.date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

#announcementPopup button {
    background: linear-gradient(145deg, rgba(255, 105, 180, 0.2), rgba(147, 112, 219, 0.2)) !important;
    border: 1px solid rgba(255, 105, 180, 0.7) !important;
    color: #ff69b4 !important;
    text-shadow: 0 0 5px rgba(255, 105, 180, 0.6);
    font-family: 'Noto Sans JP', sans-serif;
}

#announcementPopup button:hover {
    background: linear-gradient(145deg, rgba(255, 105, 180, 0.3), rgba(147, 112, 219, 0.3)) !important;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.6) !important;
    border-color: rgba(255, 105, 180, 0.9) !important;
}

/* 通知 */
#shareNotification.share-notification {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) scale(0.8) !important;
    background: linear-gradient(135deg, rgba(42, 27, 61, 0.95), rgba(68, 29, 81, 0.95));
    border: 1px solid rgba(255, 105, 180, 0.8);
    border-radius: 16px;
    padding: 16px 24px;
    color: #ff69b4;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: none;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999 !important;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    min-width: 180px;
    max-width: 80%;
    pointer-events: none;
    white-space: nowrap;
    backdrop-filter: blur(15px);
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.7);
}

#shareNotification.share-notification.show {
    display: block !important;
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1) !important;
    animation: pulse 2s infinite;
}

#shareNotification.share-notification.hide {
    opacity: 0 !important;
    transform: translate(-50%, -50%) scale(0.8) !important;
    transition: all 0.3s ease-out;
}

/* 分享弹窗响应式设计 */
@media (max-width: 480px) {
    .share-container {
        width: 95% !important;
        max-width: 380px !important;
    }
    
    .share-container .p-5 {
        padding: 20px !important;
    }
    
    .share-platform .w-14.h-14.rounded-full {
        width: 44px !important;
        height: 44px !important;
    }
    
    .share-platform i {
        font-size: 18px !important;
    }
    
    .share-platform span {
        font-size: 11px !important;
    }
    
    .domain-text {
        font-size: 12px !important;
        padding: 10px 14px !important;
    }
    
    .btn-copy {
        padding: 10px 16px !important;
        font-size: 13px !important;
    }
    
    #shareNotification.share-notification {
        padding: 14px 20px !important;
        font-size: 13px !important;
        min-width: 160px !important;
    }
}

@media (max-width: 380px) {
    .share-container {
        width: 98% !important;
        max-width: 340px !important;
    }
    
    .share-container .p-5 {
        padding: 18px !important;
    }
    
    .share-platform .w-14.h-14.rounded-full {
        width: 40px !important;
        height: 40px !important;
    }
    
    .share-platform i {
        font-size: 16px !important;
    }
    
    .share-platform span {
        font-size: 10px !important;
    }
    
    .domain-text {
        font-size: 11px !important;
        padding: 8px 12px !important;
    }
    
    .btn-copy {
        padding: 8px 14px !important;
        font-size: 12px !important;
    }
    
    #shareNotification.share-notification {
        padding: 12px 18px !important;
        font-size: 12px !important;
        min-width: 140px !important;
    }
}

@media (max-width: 320px) {
    .share-container h3 {
        font-size: 18px !important;
    }
    
    .share-platform .w-14.h-14.rounded-full {
        width: 36px !important;
        height: 36px !important;
    }
    
    .share-platform i {
        font-size: 14px !important;
    }
    
    .domain-text {
        font-size: 10px !important;
    }
    
    .btn-copy {
        font-size: 11px !important;
    }
}

/* VPN弹窗 */
#vpnPopup button.bg-primary,
#vpnPopup button.bg-green-500 {
    background: linear-gradient(145deg, rgba(255, 105, 180, 0.2), rgba(147, 112, 219, 0.2)) !important;
    border: 1px solid rgba(255, 105, 180, 0.7) !important;
    color: #ff69b4 !important;
    text-shadow: 0 0 5px rgba(255, 105, 180, 0.6);
}

#vpnPopup button.bg-primary:hover,
#vpnPopup button.bg-green-500:hover {
    background: linear-gradient(145deg, rgba(255, 105, 180, 0.3), rgba(147, 112, 219, 0.3)) !important;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.6) !important;
    border-color: rgba(255, 105, 180, 0.9) !important;
}

/* 响应式设计 */
@media (max-width: 380px) {
    .category-card {
        padding: 12px 10px;
        border-radius: 12px;
        margin-bottom: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .category-card-img {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
        border-radius: 10px;
    }

    .category-card-title {
        font-size: 14px;
    }

    .category-card-desc {
        font-size: 12px;
        line-height: 1.4;
    }

    .download-btn {
        padding: 5px 10px;
        font-size: 11px;
        height: 26px;
        min-width: 70px;
    }

    .tab-content-container .grid,
    .tab-content .grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .tab-button {
        padding: 8px 12px;
        font-size: 13px;
        border-radius: 10px;
    }

    .tab-buttons-container {
        padding: 10px;
        border-radius: 12px;
        gap: 6px;
        margin: 0 10px 8px;
    }

    .announcement-bar {
        margin: 8px 10px;
        padding: 10px 12px;
        border-radius: 10px;
    }

    .announcement-icon {
        font-size: 16px;
        margin-right: 10px;
    }

    .announcement-marquee {
        font-size: 13px;
        line-height: 20px;
    }

    .announcement-container {
        height: 20px;
    }

    .top-nav {
        padding: 8px 0;
    }

    .nav-container {
        padding: 0 10px;
    }

    .nav-logo {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .nav-title {
        font-size: 18px;
    }

    .nav-subtitle {
        font-size: 12px;
    }

    .nav-action-button {
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 8px;
    }

    /* 客服页面手机适配 */
    .page-header {
        padding: 10px 12px;
    }

    .page-header-title {
        font-size: 18px;
    }

    .page-header .nav-action-button {
        font-size: 11px;
        padding: 5px 10px;
    }

    .contact-card {
        padding: 15px;
        border-radius: 16px;
        margin-bottom: 15px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .contact-header {
        margin-bottom: 15px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }

    .contact-icon img {
        width: 26px;
        height: 26px;
    }

    .contact-header h3 {
        font-size: 16px;
    }

    .contact-header p {
        font-size: 12px;
    }

    .contact-copy-area {
        padding: 12px;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .contact-copy-text {
        font-size: 13px;
    }

    .contact-copy-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .contact-action-btn {
        padding: 10px 14px;
        font-size: 13px;
    }

    .contact-card .grid {
        gap: 8px;
    }

    .mx-3.my-4.rounded-xl.shadow-xl.overflow-hidden {
        margin: 8px 10px;
    }

    .tab-content-container.mx-3.mb-6 {
        margin: 0 10px 8px;
    }

    .dual-btn {
        padding: 14px 4px;
    }

    .dual-btn span {
        font-size: 16px;
    }
}

@media (max-width: 320px) {
    .category-card {
        padding: 10px 8px;
        border-radius: 10px;
        margin-bottom: 6px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .category-card-img {
        width: 55px;
        height: 55px;
        margin-bottom: 8px;
        border-radius: 8px;
    }

    .category-card-title {
        font-size: 13px;
    }

    .category-card-desc {
        font-size: 11px;
        line-height: 1.3;
    }

    .download-btn {
        min-width: 65px;
        font-size: 10px;
        padding: 4px 8px;
        height: 24px;
    }

    .tab-content-container .grid,
    .tab-content .grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }

    .nav-title {
        font-size: 16px;
    }

    .nav-subtitle {
        font-size: 11px;
    }

    .nav-action-button {
        font-size: 11px;
        padding: 5px 10px;
    }

    /* 客服页面手机适配 */
    .page-header {
        padding: 8px 10px;
    }

    .page-header-title {
        font-size: 16px;
    }

    .page-header .nav-action-button {
        font-size: 10px;
        padding: 4px 8px;
    }

    .contact-card {
        padding: 12px;
        border-radius: 14px;
        margin-bottom: 12px;
        margin-left: 8px;
        margin-right: 8px;
    }

    .contact-header {
        margin-bottom: 12px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        border-radius: 10px;
    }

    .contact-icon img {
        width: 22px;
        height: 22px;
    }

    .contact-header h3 {
        font-size: 14px;
    }

    .contact-header p {
        font-size: 11px;
    }

    .contact-copy-area {
        padding: 10px;
        border-radius: 8px;
        margin-bottom: 12px;
    }

    .contact-copy-text {
        font-size: 12px;
    }

    .contact-copy-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .contact-action-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .contact-card .grid {
        gap: 6px;
    }

    .dual-btn {
        padding: 12px 2px;
    }

    .dual-btn span {
        font-size: 14px;
    }
}

/* 页面切换 */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* 通用工具类 */
.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.ml-3 {
    margin-left: 12px;
}

.mt-4 {
    margin-top: 16px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mx-4 {
    margin-left: 16px;
    margin-right: 16px;
}

.my-4 {
    margin-top: 16px;
    margin-bottom: 16px;
}

.p-5 {
    padding: 20px;
}

.border-b {
    border-bottom: 1px solid;
}

.border-gray-100 {
    border-color: rgba(255, 255, 255, 0.1);
}

.text-lg {
    font-size: 18px;
}

.font-semibold {
    font-weight: 600;
}

.text-sm {
    font-size: 14px;
}

.text-text-light {
    color: rgba(255, 255, 255, 0.7);
}

.hover:text-primary:hover {
    color: #0ff;
}

.transition-colors {
    transition: color 0.3s ease;
}

.btn-active {
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-active:hover {
    transform: translateY(-2px);
}

.rounded-l-lg {
    border-radius: 8px 0 0 8px;
}

.rounded-r-lg {
    border-radius: 0 8px 8px 0;
}

.focus:outline-none:focus {
    outline: none;
}

.focus:ring-1:focus {
    box-shadow: 0 0 0 1px rgba(0, 255, 255, 0.5);
}

.focus:ring-primary:focus {
    box-shadow: 0 0 0 1px rgba(0, 255, 255, 0.5);
}

.text-primary {
    color: #0ff;
}

.bg-primary {
    background-color: rgba(0, 255, 255, 0.2);
}

.hover:bg-primary90:hover {
    background-color: rgba(0, 255, 255, 0.3);
}

.mr-1 {
    margin-right: 4px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
}

/* 确保所有grid元素都保持4列布局 */
.tab-content .grid,
.tab-content-container .grid {
    grid-template-columns: repeat(4, 1fr) !important;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr) !important;
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr) !important;
}

.gap-2 {
    gap: 8px;
}

.w-12 {
    width: 48px;
}

.h-12 {
    height: 48px;
}

.rounded-full {
    border-radius: 50%;
}

.bg-gray-100 {
    background-color: rgba(255, 255, 255, 0.1);
}

.mb-1 {
    margin-bottom: 4px;
}

.text-xs {
    font-size: 12px;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gap-3 {
    gap: 12px;
}

.border {
    border: 1px solid;
}

.border-primary {
    border-color: rgba(0, 255, 255, 0.5);
}

.text-white {
    color: #ffffff;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.mr-2 {
    margin-right: 8px;
}

.ml-2 {
    margin-left: 8px;
}

.py-3 {
    padding-top: 12px;
    padding-bottom: 12px;
}

.rounded-lg {
    border-radius: 8px;
}

.bg-gray-200 {
    background-color: rgba(255, 255, 255, 0.1);
}

.text-gray-700 {
    color: rgba(255, 255, 255, 0.7);
}

.hover:bg-gray-300:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.border-t {
    border-top: 1px solid;
}

.pt-3 {
    padding-top: 12px;
}

.text-center {
    text-align: center;
}

.font-weight-bold {
    font-weight: 700;
}

.border-none {
    border: none;
}

.mt-auto {
    margin-top: auto;
}

.px-4 {
    padding-left: 16px;
    padding-right: 16px;
}

.mt-3 {
    margin-top: 12px;
}

.mb-3 {
    margin-bottom: 12px;
}

.text-gray-500 {
    color: rgba(255, 255, 255, 0.5);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 16px;
    padding-right: 16px;
}

.mt-8 {
    margin-top: 32px;
}

.py-6 {
    padding-top: 24px;
    padding-bottom: 24px;
}

.bg-gray-900 {
    background-color: rgba(10, 10, 30, 0.8);
}

.text-gray-400 {
    color: rgba(255, 255, 255, 0.4);
}

.mt-2 {
    margin-top: 8px;
}

.text-gray-500 {
    color: rgba(255, 255, 255, 0.5);
}

.font-weight-medium {
    font-weight: 500;
}

.leading-relaxed {
    line-height: 1.625;
}

.no-image-save {
    user-select: none;
    pointer-events: