@media (display-mode: standalone) {
html {
background-color: #FFFA00;
}
}

::v-deep .uni-navbar {
.uni-navbar--border {
border: unset;
}

.uni-nav-bar-text {
font-size: 16px;
font-weight: bold;
}
}

.notic-user-tip-warp {
width: 94% !important;
position: absolute;
top: 2% !important;
left: 50% !important;
transform: translateX(-50%) !important;
box-sizing: border-box !important;
}

.uni-tabbar {
width: min(100%, 30rem);
left: calc(50% - min(50%, 15rem)) !important;
}

.uni-page-head {
width: min(100%, 30rem);
left: calc(50% - min(50%, 15rem)) !important;
}

.uni-navbar__content {
width: min(100%, 30rem);
left: calc(50% - min(50%, 15rem)) !important;
}

/* #app{
overflow: scroll;
} */
body {
min-height: 100%;
margin: 0;
padding: 0;
color: #14D100;
background: linear-gradient(180deg, #5DE100 0%, #5DE100 45%, #5DE100 100%);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-x: hidden;
width: 100%;
max-width: 100vw;
}

html {
background: #41DB00;
font-size: 16px;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
overflow-x: hidden;
box-sizing: border-box;
}

*, *::before, *::after {
box-sizing: inherit;
}

/* 图片响应式 */
img {
max-width: 100%;
height: auto;
display: block;
}

img[src=""],
img:not([src]) {
opacity: 0;
}

/* 加载动画 */
.loading-container {
position: fixed;
z-index: 99999;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(45, 27, 61, 0.9);
text-align: center;
border-radius: 5px;
width: 98px;
height: 98px;
display: none;
justify-content: center;
align-items: center;
}

.rotating-image {
position: absolute;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}

.a-image {
width: 80px !important;
height: 80px !important;
animation: rotate 1s linear infinite;
}

.b-image {
width: 50px;
height: 50px;
object-fit: contain;
}

@keyframes rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}

#app {
position: relative;
}

uni-toast {
z-index: 9999999!important;
}

.loading-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 99998;
display: none;
}

/* Header */
.main-header {
width: 100%;
background-color: #FFFF00;
border-bottom: 1px solid rgba(255, 255, 255, 0.15);
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}

.header-container {
width: 100%;
max-width: min(30rem, 100vw);
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
padding: 0.75rem clamp(0.5rem, 3vw, 1rem);
box-sizing: border-box;
}

.header-logo {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
height: 40px;
flex: 1;
}

.logo-img {
height: 100%;
width: auto;
max-height: 40px;
max-width: 100%;
object-fit: contain;
transition: transform 0.3s ease;
}

.logo-img:hover {
transform: scale(1.05);
}

.header-nav {
display: flex;
align-items: center;
gap: 1.5rem;
}

.nav-item {
color: #ffffff;
text-decoration: none;
font-size: 0.95rem;
font-weight: 500;
padding: 0.5rem 0;
transition: color 0.3s ease;
position: relative;
white-space: nowrap;
}

.nav-item:hover {
color: #B19CD9;
}

.nav-item::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background-color: #B19CD9;
transition: width 0.3s ease;
}

.nav-item:hover::after {
width: 100%;
}

/* 轮播区域上层容器 */
.page-content {
width: 100%;
max-width: 100vw;
padding: 1.1rem clamp(0.5rem, 2vw, 1rem) 1.8rem;
background: linear-gradient(180deg, rgba(45, 28, 70, 0.85) 0%, rgba(25, 14, 38, 0.92) 100%);
box-shadow: 0 20px 60px rgba(4, 1, 10, 0.55);
box-sizing: border-box;
overflow-x: hidden;
}

/* 卡片通用框架 */
.top-carousel-section,
.logo-content-section,
.image-text-section {
background: rgba(33, 21, 49, 0.92);
border: 1px solid rgba(255, 255, 255, 0.07);
border-radius: 20px;
box-shadow: 0 18px 48px rgba(5, 2, 15, 0.3);
}

.top-carousel-section {
width: 100%;
max-width: min(32rem, calc(100vw - 2rem));
margin: 1.1rem auto;
padding: 1rem clamp(0.75rem, 3vw, 1.25rem);
box-sizing: border-box;
}

.carousel-container {
position: relative;
width: 100%;
max-width: 100%;
margin: 0 auto;
overflow: hidden;
border-radius: 12px;
background-color: rgba(177, 156, 217, 0.1);
box-sizing: border-box;
}

.carousel-wrapper {
position: relative;
width: 100%;
aspect-ratio: 732 / 320;
min-height: clamp(180px, 25vw, 220px);
overflow: hidden;
}

.carousel-slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 0.6s ease-in-out;
z-index: 1;
}

.carousel-slide.active {
opacity: 1;
z-index: 2;
}

.carousel-image {
width: 100%;
height: 100%;
object-fit: cover;
}

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

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

.indicator.active {
background-color: #ffffff;
transform: scale(1.2);
}

.indicator:hover {
background-color: rgba(255, 255, 255, 0.8);
}

/* 切换按钮 */
.carousel-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 40px;
height: 40px;
background-color: rgba(45, 27, 61, 0.7);
border: none;
border-radius: 50%;
color: #ffffff;
font-size: 24px;
font-weight: bold;
cursor: pointer;
z-index: 10;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.3s ease, transform 0.3s ease;
user-select: none;
}

.carousel-btn:hover {
background-color: rgba(177, 156, 217, 0.6);
transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
transform: translateY(-50%) scale(0.95);
}

.carousel-prev { left: 15px; }
.carousel-next { right: 15px; }

.carousel-thumb-row {
width: 100%;
max-width: min(32rem, calc(100vw - 2rem));
margin: 0.65rem auto 0;
padding: 0 clamp(0.5rem, 2vw, 0);
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: clamp(0.4rem, 2vw, 0.6rem);
}

.carousel-thumb {
display: block;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 18px rgba(5, 2, 15, 0.4);
border: 1px solid rgba(255, 255, 255, 0.1);
transition: transform 0.25s ease, box-shadow 0.25s ease;
aspect-ratio: 116 / 70;
}

.carousel-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.carousel-thumb:hover {
transform: translateY(-3px) scale(1.02);
box-shadow: 0 12px 24px rgba(5, 2, 15, 0.5);
}

/* 滚动横幅 */
.scroll-banner {
width: 100%;
max-width: min(30rem, calc(100vw - 2rem));
margin: 0.75rem auto 1rem;
padding: 0.45rem clamp(0.6rem, 3vw, 0.9rem);
background: rgba(177, 156, 217, 0.18);
border-radius: 999px;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.12);
}

.scroll-track {
display: flex;
white-space: nowrap;
gap: 2rem;
animation: scroll-left 18s linear infinite;
color: #f0e5ff;
font-size: 0.9rem;
letter-spacing: 0.02em;
}

.scroll-track span {
display: inline-flex;
align-items: center;
gap: 0.75rem;
}

@keyframes scroll-left {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}

/* Entry Modal */
.entry-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(8, 2, 19, 0.65);
display: flex;
align-items: center;
justify-content: center;
z-index: 999;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s ease;
}

.entry-modal.active {
opacity: 1;
pointer-events: auto;
}

.entry-modal__content {
width: min(92vw, 360px);
background: linear-gradient(160deg, rgba(55, 34, 92, 0.95), rgba(25, 12, 41, 0.98));
border-radius: 18px;
border: 1px solid rgba(255, 255, 255, 0.15);
box-shadow: 0 25px 70px rgba(3, 0, 10, 0.55);
padding: clamp(1rem, 4vw, 1.4rem);
position: relative;
text-align: center;
color: #F8F4FF;
}

.entry-modal__content h3 {
margin: 0 0 0.5rem;
font-size: 1.25rem;
}

.entry-modal__content p {
margin: 0 0 1.1rem;
font-size: 0.9rem;
line-height: 1.6;
opacity: 0.9;
}

.entry-modal__image {
display: block;
margin-bottom: 0.9rem;
border-radius: 14px;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.12);
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.entry-modal__image img {
width: 100%;
height: auto;
display: block;
object-fit: cover;
}

.entry-modal__action {
display: inline-flex;
align-items: center;
justify-content: center;
width: 100%;
min-height: 2.1rem;
border-radius: 999px;
background: linear-gradient(100deg, #9E6FFF 0%, #FFC9FF 100%);
color: #140621;
font-weight: 600;
text-decoration: none;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.entry-modal__action:hover {
transform: translateY(-2px);
box-shadow: 0 10px 24px rgba(158, 111, 255, 0.4);
}

.entry-modal__close {
position: absolute;
right: 0.9rem;
top: 0.6rem;
background: transparent;
border: none;
color: rgba(255, 255, 255, 0.8);
font-size: 1.4rem;
cursor: pointer;
transition: color 0.2s ease;
}

.entry-modal__close:hover {
color: #ffffff;
}

/* 响应式 Modal（768px+） */
@media (min-width: 768px) {
.entry-modal__content {
width: min(420px, 70vw);
}
}

/* Mobile Modal */
@media (max-width: 480px) {
.entry-modal__content {
width: min(90vw, 300px);
max-height: calc(100vh - 2rem);
padding: 0.8rem;
border-radius: 16px;
overflow-y: auto;
}

.entry-modal__image {
margin-bottom: 0.5rem;
}

.entry-modal__content h3 {
font-size: 1.05rem;
}

.entry-modal__content p {
font-size: 0.85rem;
}

.entry-modal__action {
min-height: 1.7rem;
font-size: 0.78rem;
}

.entry-modal__close {
right: 0.65rem;
top: 0.45rem;
font-size: 1.2rem;
}
}

/* 更小尺寸 360px */
@media (max-width: 360px) {
.entry-modal__content {
width: 94vw;
padding: 0.65rem;
border-radius: 14px;
}

.entry-modal__action {
min-height: 1.55rem;
font-size: 0.72rem;
}

.entry-modal__close {
right: 0.6rem;
top: 0.4rem;
font-size: 1.1rem;
}
}

/* Logo 内容 */
.logo-content-section {
width: 100%;
max-width: min(32rem, calc(100vw - 2rem));
margin: 1.4rem auto;
padding: 1.1rem clamp(0.75rem, 3vw, 1rem);
}

.logo-content-section::before {
content: '';
position: absolute;
inset: 0;
background: url('/static/image/bj.png') center/cover no-repeat;
opacity: 0.1;
z-index: 0;
pointer-events: none;
}

.logo-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(min(128px, 30vw), 1fr));
gap: clamp(0.75rem, 3vw, 1.25rem);
justify-items: center;
align-items: center;
}

.logo-card {
width: 100%;
max-width: min(140px, 28vw);
display: flex;
flex-direction: column;
align-items: center;
gap: 0.55rem;
text-align: center;
background-color: rgba(177, 156, 217, 0.15);
border-radius: 16px;
padding: clamp(0.5rem, 2vw, 0.6rem) clamp(0.4rem, 2vw, 0.5rem) clamp(0.7rem, 2vw, 0.8rem);
transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
border: 1px solid transparent;
}

.logo-thumb {
width: 100%;
aspect-ratio: 1;
display: flex;
align-items: center;
justify-content: center;
border-radius: 12px;
background: rgba(15, 5, 28, 0.4);
padding: 0.35rem;
}

/* 固定第一个 logo */
.logo-fixed { order: 0; }

/* 可打乱顺序 */
.logo-shuffle { order: 1; }

.logo-card:hover {
transform: translateY(-4px);
background-color: rgba(177, 156, 217, 0.22);
border-color: rgba(255, 255, 255, 0.15);
}

.logo-image {
width: 100%;
height: 100%;
object-fit: contain;
border-radius: 4px;
transition: transform 0.3s ease;
pointer-events: none;
}

.logo-card:hover .logo-image {
transform: scale(1.06);
}

.logo-action {
display: inline-flex;
align-items: center;
justify-content: center;
width: 100%;
padding: 0.32rem 0.42rem;
background: linear-gradient(90deg, #8F6BFF 0%, #C5A9FF 100%);
color: #120924;
font-size: 0.76rem;
font-weight: 600;
border-radius: 999px;
text-decoration: none;
min-height: 1.65rem;
transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.logo-action:hover {
transform: translateY(-2px);
box-shadow: 0 6px 14px rgba(143, 107, 255, 0.35);
}

.logo-action:active {
transform: translateY(0);
box-shadow: none;
}

/* 巴西热门网站 */
.popular-sites-section {
width: 100%;
max-width: min(32rem, calc(100vw - 2rem));
margin: 0.8rem auto 1.2rem;
padding: 0.85rem clamp(0.75rem, 3vw, 1rem) 1.1rem;
background: rgba(27, 18, 39, 0.92);
border-radius: 18px;
border: 1px solid rgba(255, 255, 255, 0.08);
box-shadow: 0 15px 36px rgba(3, 0, 10, 0.35);
}

.popular-sites-title {
margin: 0 0 0.75rem;
font-size: 1rem;
color: #F9F4FF;
letter-spacing: 0.03em;
}

.popular-sites-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 0.65rem;
}

.popular-site-card {
display: flex;
flex-direction: column;
gap: 0.25rem;
padding: 0.65rem 0.75rem;
border-radius: 12px;
text-decoration: none;
color: #F8F4FF;
background: rgba(142, 108, 255, 0.16);
border: 1px solid rgba(255, 255, 255, 0.08);
transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.popular-site-card:hover {
transform: translateY(-3px);
border-color: rgba(255, 255, 255, 0.18);
background: rgba(142, 108, 255, 0.25);
}

.site-name {
font-weight: 600;
font-size: 0.95rem;
}

.site-tag {
font-size: 0.78rem;
opacity: 0.85;
}

/* 社交媒体 */
.social-section {
width: 100%;
max-width: min(32rem, calc(100vw - 2rem));
margin: 0.8rem auto 1.5rem;
padding: 0.9rem clamp(0.75rem, 3vw, 1rem) 1.1rem;
background: rgba(24, 15, 36, 0.92);
border-radius: 18px;
border: 1px solid rgba(255, 255, 255, 0.08);
box-shadow: 0 18px 40px rgba(5, 1, 12, 0.35);
}

.social-title {
margin: 0 0 0.65rem;
font-size: 0.95rem;
color: #F9F4FF;
letter-spacing: 0.02em;
}

.social-icons {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
}

.social-icon {
width: 34px;
height: 34px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.08);
display: inline-flex;
align-items: center;
justify-content: center;
border: 1px solid rgba(255, 255, 255, 0.08);
transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-icon svg {
width: 16px;
height: 16px;
fill: #F8F4FF;
}

.social-icon:hover {
transform: translateY(-2px);
background: rgba(255, 255, 255, 0.18);
border-color: rgba(255, 255, 255, 0.18);
}

.social-contact {
margin-top: 0.75rem;
font-size: 0.85rem;
color: #D9D2FF;
display: flex;
gap: 0.4rem;
flex-wrap: wrap;
}

.social-contact a {
color: #E5E0FF;
text-decoration: none;
border-bottom: 1px dashed rgba(229, 224, 255, 0.4);
}

/* 图片内容区 */
.image-text-section {
width: 100%;
max-width: min(32rem, calc(100vw - 2rem));
margin: 1.4rem auto;
padding: 1.1rem clamp(0.75rem, 3vw, 1rem);
}

.image-text-container {
display: flex;
flex-direction: column;
gap: 1.6rem;
}

.image-text-item {
display: flex;
flex-direction: column;
gap: 1rem;
background-color: rgba(177, 156, 217, 0.12);
border-radius: 12px;
padding: 1.1rem;
transition: transform 0.3s ease, background-color 0.3s ease;
text-decoration: none;
color: inherit;
}

.image-text-item:hover {
transform: translateY(-5px);
background-color: rgba(177, 156, 217, 0.18);
}

.content-image {
width: 100%;
height: auto;
border-radius: 8px;
object-fit: cover;
transition: transform 0.3s ease;
}

.image-text-item:hover .content-image {
transform: scale(1.02);
}

.content-text {
color: #ffffff;
}

.content-text h3 {
margin: 0 0 0.5rem 0;
font-size: 1.25rem;
font-weight: bold;
line-height: 1.4;
}

.content-text p {
margin: 0;
font-size: 0.9rem;
line-height: 1.6;
opacity: 0.9;
}

/* ---------- 响应式：Tablet 1024px ---------- */
@media (max-width: 1024px) {
.top-images-section,
.logo-content-section,
.image-text-section {
padding: 0.875rem;
}

.logo-grid {
grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
gap: 0.875rem;
}

.logo-item {
width: 120px;
height: 120px;
}
}

/* ---------- 响应式：Mobile 768px ---------- */
@media (max-width: 768px) {
.main-header {
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
padding: 0.625rem 1rem;
}

.header-logo { height: 36px; }
.logo-img { max-height: 36px; }

.top-carousel-section {
padding: 1rem;
margin-top: 1rem;
}

.carousel-container { max-width: 100%; }

.carousel-wrapper {
height: auto;
aspect-ratio: 732 / 320;
min-height: clamp(160px, 22vw, 200px);
max-height: 100%;
}

.carousel-btn {
width: 35px;
height: 35px;
font-size: 20px;
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.carousel-indicators {
bottom: 10px;
}

.carousel-thumb-row {
gap: clamp(0.35rem, 2vw, 0.45rem);
padding: 0 clamp(0.4rem, 2vw, 0);
}

.indicator {
width: 8px;
height: 8px;
}

.logo-content-section {
margin: 1.2rem auto;
padding: 0 0.9rem;
}

.logo-grid {
grid-template-columns: repeat(3, 1fr);
gap: clamp(0.5rem, 2vw, 0.875rem);
}

.logo-card {
max-width: 100%;
padding: 0.55rem clamp(0.35rem, 2vw, 0.45rem) 0.7rem;
gap: 0.5rem;
}

.logo-thumb { padding: 0.3rem; }

.logo-action {
min-height: 1.5rem;
font-size: 0.72rem;
padding: 0.3rem 0.4rem;
}

.image-text-section {
margin: 1.2rem auto;
padding: 0 0.9rem;
}

.image-text-container { gap: 1.5rem; }

.image-text-item {
padding: 0.9rem;
gap: 0.9rem;
}

.content-text h3 { font-size: 1.15rem; }

.content-text p {
font-size: 0.85rem;
}

.scroll-banner {
margin: 0.6rem auto 0.9rem;
padding: 0.45rem 0.75rem;
}

.scroll-track {
font-size: 0.85rem;
animation-duration: 16s;
}

.social-section {
margin: 0.7rem auto 1.1rem;
padding: 0.8rem 0.9rem 1rem;
}

.social-icon {
width: 32px;
height: 32px;
}

.popular-sites-section {
margin: 0.7rem auto 1rem;
padding: 0.75rem 0.85rem 0.95rem;
}

.popular-sites-grid { gap: 0.5rem; }

.site-name { font-size: 0.9rem; }
.site-tag { font-size: 0.75rem; }
}

/* ---------- 响应式：Mobile 480px ---------- */
@media (max-width: 480px) {

.header-container {
padding: 0.5rem 0.75rem;
}

.header-logo { height: 32px; }
.logo-img { max-height: 32px; }

.top-carousel-section {
padding: 0.875rem;
margin-top: 0.75rem;
}

.carousel-btn {
width: 30px;
height: 30px;
font-size: 18px;
}

.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }

.carousel-indicators {
bottom: 8px;
gap: 6px;
}

.carousel-thumb-row {
gap: clamp(0.3rem, 2vw, 0.35rem);
padding: 0 clamp(0.35rem, 2vw, 0);
}

.indicator {
width: 7px;
height: 7px;
}

.logo-content-section {
margin: 1.1rem auto;
padding: 0 0.75rem;
}

.logo-grid {
grid-template-columns: repeat(3, 1fr);
gap: clamp(0.5rem, 2vw, 0.75rem);
}

.logo-card {
padding: 0.5rem clamp(0.3rem, 2vw, 0.35rem) 0.65rem;
gap: 0.45rem;
}

.logo-thumb { padding: 0.25rem; }

.logo-action {
min-height: 1.4rem;
font-size: 0.7rem;
padding: 0.28rem 0.38rem;
}

.image-text-section {
margin: 1.1rem auto;
padding: 0 0.75rem;
}

.image-text-container { gap: 1.3rem; }

.image-text-item {
padding: 0.9rem;
gap: 0.9rem;
}

.content-text h3 {
font-size: 1.05rem;
margin-bottom: 0.375rem;
}

.content-text p {
font-size: 0.8rem;
line-height: 1.5;
}

.scroll-banner {
margin: 0.6rem auto 0.85rem;
padding: 0.45rem 0.65rem;
border-radius: 22px;
}

.scroll-track {
font-size: 0.78rem;
animation-duration: 13s;
}

.popular-sites-section {
margin: 0.6rem auto 0.9rem;
padding: 0.65rem 0.7rem 0.85rem;
}

.popular-sites-grid { gap: 0.45rem; }

.site-name { font-size: 0.86rem; }
.site-tag { font-size: 0.72rem; }
}

/* ---------- 超小屏：360px ---------- */
@media (max-width: 360px) {

.header-container { padding: 0.5rem; }
.header-logo { height: 28px; }
.logo-img { max-height: 28px; }

.top-carousel-section {
padding: clamp(0.5rem, 2vw, 0.75rem);
margin: 0.75rem auto;
}

.logo-content-section,
.image-text-section {
padding: clamp(0.5rem, 2vw, 0.75rem);
}

.logo-grid {
grid-template-columns: repeat(3, 1fr);
gap: clamp(0.4rem, 2vw, 0.5rem);
}

.logo-card {
padding: 0.4rem clamp(0.25rem, 2vw, 0.3rem) 0.55rem;
gap: 0.35rem;
}

.logo-thumb { padding: 0.2rem; }

.carousel-thumb-row {
gap: clamp(0.2rem, 2vw, 0.25rem);
padding: 0 clamp(0.3rem, 2vw, 0);
}

.logo-action {
min-height: 1.3rem;
font-size: 0.66rem;
padding: 0.25rem 0.35rem;
}

.image-text-item { padding: 0.625rem; }

.content-text h3 { font-size: 1rem; }

.content-text p { font-size: 0.75rem; }

.scroll-track {
font-size: 0.75rem;
animation-duration: 12s;
}

.popular-sites-section {
padding: 0.45rem 0.5rem 0.7rem;
}

.popular-sites-grid { gap: 0.35rem; }

.popular-site-card {
padding: 0.5rem 0.55rem;
}

.site-name {
font-size: 0.8rem;
}

.site-tag {
font-size: 0.68rem;
}
}

/* ---------- 横屏优化 ---------- */
@media (max-width: 768px) and (orientation: landscape) {
.logo-grid {
grid-template-columns: repeat(3, 1fr);
gap: 0.65rem;
}

.logo-card {
padding: 0.5rem 0.35rem 0.6rem;
}
}

/* ---------- 触摸设备优化 ---------- */
@media (hover: none) and (pointer: coarse) {
.logo-card,
.image-text-item {
cursor: pointer;
}

.logo-card:active {
transform: translateY(-2px) scale(0.98);
}

.image-text-item:active {
transform: translateY(-2px);
}
}

/* =======================================================
   🇧🇷 B R A S I L  –  T H E M E  U P G R A D E
   个性化巴西主题视觉增强包 (添加于文件最底部)
   ======================================================= */

/* ----------- 1. 页面背景：巴西三色霓虹渐变 ----------- */
body {
    background: linear-gradient(180deg,
        #009C3B 0%,        /* Brazil Green */
        #00B84A 40%,
        #FFDF00 80%,       /* Brazil Yellow */
        #002776 100%       /* Brazil Blue */
    ) !important;
    color: #ffffff !important;
}

/* ----------- 2. 顶部导航：玻璃绿 + 金色Hover ----------- */
.main-header {
    background: linear-gradient(135deg,
        rgba(0, 156, 59, 0.95),
        rgba(0, 177, 70, 0.85)
    ) !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(12px) !important;
}

.logo-img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 6px rgba(255, 223, 0, 0.9));
}

.nav-item:hover {
    color: #FFDF00 !important;
}
.nav-item:hover::after {
    background-color: #FFDF00 !important;
}

/* ----------- 3. 全局卡片改为巴西玻璃黑 ----------- */
.top-carousel-section,
.logo-content-section,
.image-text-section,
.social-section,
.popular-sites-section {
    background: rgba(0, 0, 0, 0.45) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    box-shadow:
        0 10px 38px rgba(0,0,0,0.3),
        inset 0 0 24px rgba(0,156,59,0.15) !important;
}

/* ----------- 4. 轮播图容器巴西光晕 ----------- */
.carousel-container {
    border: 2px solid rgba(0,156,59,0.3) !important;
    box-shadow:
        0 0 25px rgba(0,156,59,0.3),
        inset 0 0 20px rgba(255,223,0,0.25) !important;
}

/* ----------- 5. 按钮：巴西金属渐变 ----------- */
.logo-action,
.entry-modal__action {
    background: linear-gradient(90deg,
        #FFDF00 0%,
        #FFD000 40%,
        #00A743 100%
    ) !important;
    color: #002776 !important;
    font-weight: 700 !important;
    box-shadow:
        0 4px 16px rgba(0,0,0,0.25),
        0 0 15px rgba(255,223,0,0.7) !important;
}

.logo-action:hover,
.entry-modal__action:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 28px rgba(255,223,0,0.9) !important;
}

/* ----------- 6. Logo 卡片发绿光 ----------- */
.logo-card {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    box-shadow:
        0 0 18px rgba(0,156,59,0.25),
        inset 0 0 8px rgba(0,156,59,0.1) !important;
}

.logo-card:hover {
    background: rgba(255,255,255,0.12) !important;
    border-color: rgba(255,223,0,0.35) !important;
    box-shadow:
        0 0 25px rgba(255,223,0,0.45) !important;
}

/* ----------- 7. 滚动条巴西风 ----------- */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(#FFDF00, #009C3B);
    border-radius: 8px;
}

/* ----------- 8. 各区标题金色渐变文字 ----------- */
.popular-sites-title,
.social-title {
    background: linear-gradient(90deg, #FFDF00, #00A743);
    -webkit-background-clip: text;
    color: transparent !important;
    font-weight: 700 !important;
}

/* ----------- 9. Modal：深蓝 + 金边光 ----------- */
.entry-modal__content {
    background: linear-gradient(160deg,
        rgba(0,39,118,0.95),
        rgba(0,31,92,0.98)
    ) !important;
    border: 1px solid rgba(255,223,0,0.35) !important;
    box-shadow:
        0 20px 60px rgba(0,39,118,0.5),
        0 0 30px rgba(0,156,59,0.35) !important;
}

.entry-modal__close:hover {
    color: #FFDF00 !important;
}

/* ----------- 10. 全局标题亮金色 ----------- */
h1, h2, h3 {
    color: #FFDF00 !important;
    text-shadow: 0 0 10px rgba(255,223,0,0.6);
}

p {
    color: #ffffff !important;
}

/* ----------- 11. LOGO缩略图边框绿光 ----------- */
.logo-thumb {
    border: 2px solid rgba(0,156,59,0.4) !important;
    background: rgba(0,39,118,0.25) !important;
}

/* =======================================================
   🎨 DYNAMIC COLOR RENDER ENGINE – 动态颜色渲染增强系统
   ======================================================= */

/* ---------- 🌈 1. CSS 变量（想换主题改这里） ---------- */
:root {
    --br-green: #009C3B;
    --br-yellow: #FFDF00;
    --br-blue: #002776;

    --gold-1: #FFE75E;
    --gold-2: #FFCA28;

    --neon-green: #00FF6A;
    --neon-yellow: #FFF500;
}

/* ---------- 🔥 2. 背景动态渐变（不断流动） ---------- */
body {
    background: linear-gradient(180deg,
        var(--br-green),
        var(--br-yellow),
        var(--br-blue)
    );
    background-size: 300% 300%;
    animation: bgFlow 16s ease infinite !important;
}

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

/* ---------- ✨ 3. 金色标题动态呼吸 ---------- */
h1, h2, h3 {
    background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
    -webkit-background-clip: text;
    color: transparent !important;
    animation: goldBreath 3.2s ease-in-out infinite;
}

@keyframes goldBreath {
    0%   { filter: brightness(1); text-shadow: 0 0 6px rgba(255,223,0,0.4); }
    50%  { filter: brightness(1.25); text-shadow: 0 0 14px rgba(255,223,0,0.8); }
    100% { filter: brightness(1); text-shadow: 0 0 6px rgba(255,223,0,0.4); }
}

/* ---------- ⚡ 4. 按钮动态流光（高端网站效果） ---------- */
.logo-action,
.entry-modal__action {
    position: relative;
    overflow: hidden;
}

.logo-action::before,
.entry-modal__action::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.7) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: shineMove 3.5s infinite ease-in-out;
}

@keyframes shineMove {
    0%   { left: -120%; }
    50%  { left: 140%; }
    100% { left: -120%; }
}

/* ---------- 💡 5. 卡片 Hover 动态发光呼吸 ---------- */
.logo-card,
.image-text-item,
.popular-site-card {
    transition: all 0.4s ease !important;
}

.logo-card:hover,
.image-text-item:hover,
.popular-site-card:hover {
    box-shadow:
        0 0 18px rgba(255,255,255,0.35),
        0 0 26px rgba(0,255,140,0.35),
        inset 0 0 18px rgba(0,255,120,0.25) !important;
    transform: translateY(-4px) scale(1.03);
}

/* ---------- 🔵 6. LOGO 缩略图边框脉冲绿光 ---------- */
.logo-thumb {
    animation: thumbPulse 2.8s infinite ease-in-out;
}

@keyframes thumbPulse {
    0%   { box-shadow: 0 0 4px rgba(0,255,80,0.3); }
    50%  { box-shadow: 0 0 12px rgba(0,255,80,0.7); }
    100% { box-shadow: 0 0 4px rgba(0,255,80,0.3); }
}

/* ---------- ⭐ 7. 星标旋转微动画（高端感） ---------- */
.logo-image[alt*="star"],
img[src*="star"] {
    animation: starSpin 6s linear infinite;
}

@keyframes starSpin {
    0%   { transform: rotate(0deg) scale(1); }
    50%  { transform: rotate(180deg) scale(1.12); }
    100% { transform: rotate(360deg) scale(1); }
}

/* ---------- 🎯 8. 滚动条动态颜色（自动渐变） ---------- */
::-webkit-scrollbar-thumb {
    background: linear-gradient(
        to bottom,
        var(--neon-yellow),
        var(--neon-green)
    );
    animation: scrollPulse 3s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%   { filter: brightness(0.9); }
    50%  { filter: brightness(1.2); }
    100% { filter: brightness(0.9); }
}

/* =======================================================
   🇧🇷 NAVBAR EVOLUTION SYSTEM — 整合效果 1+2+3+4
   星光闪动 + 流光滑动 + 巴西国旗波浪纹理 + LOGO同步渐变
   ======================================================= */

/* ------ 星光闪动效果（高端电竞风） ------ */
.main-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, transparent 70%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.45;
    animation: brStarShine 6s infinite ease-in-out;
}

@keyframes brStarShine {
    0%   { transform: translate(-30%, 20%) scale(0.8); opacity: 0.35; }
    50%  { transform: translate(120%, -10%) scale(1.1); opacity: 0.55; }
    100% { transform: translate(-30%, 20%) scale(0.8); opacity: 0.35; }
}

/* ------ 流光光带穿梭效果 ------ */
.main-header .shine-line {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.75) 40%,
        transparent 80%
    );
    transform: skewX(-20deg);
    animation: brShineMove 4.2s infinite ease-in-out;
    pointer-events: none;
    z-index: 3;
}

@keyframes brShineMove {
    0%   { left: -45%; opacity: 0.0; }
    40%  { left: 120%; opacity: 0.55; }
    100% { left: 120%; opacity: 0.0; }
}

/* 在导航栏内部插入流光层 */
.main-header {
    position: relative;
}
.main-header::before,
.main-header::after,
.main-header .shine-line {
    pointer-events: none;
}

/* 自动注入 shine-line 元素 */
.header-container::after {
    content: "";
    position: absolute;
    inset: 0;
}
.main-header .shine-line {
    position: absolute;
}

/* ------ LOGO 同步渐变效果（效果 4） ------ */
.logo-img {
    animation: brLogoFlow 8s ease-in-out infinite;
}

@keyframes brLogoFlow {
    0%   { filter: drop-shadow(0 0 6px #009C3B) brightness(1); }
    25%  { filter: drop-shadow(0 0 10px #FFDF00) brightness(1.15); }
    50%  { filter: drop-shadow(0 0 8px #002776) brightness(1.1); }
    75%  { filter: drop-shadow(0 0 12px #00E676) brightness(1.2); }
    100% { filter: drop-shadow(0 0 6px #009C3B) brightness(1); }
}


/* =======================================================
   🟣✨ BLUE–PURPLE + DARK GOLD LUXURY NAVBAR
   蓝紫 + 暗金 高奢博彩导航栏（方案B）
   ======================================================= */

.main-header {
    position: relative;
    overflow: hidden;

    /* 深蓝 → 皇家紫 → 暗紫 → 暗金 */
    background: linear-gradient(90deg,
        #0D1B3A 0%,     /* 深蓝 Navy Blue */
        #4C1D95 33%,    /* 皇家紫 Royal Purple */
        #2A0E52 66%,    /* 暗紫 Deep Purple */
        #B88A44 100%    /* 暗金 Dark Gold */
    ) !important;

    background-size: 250% 250%;
    animation: bpGoldFlow 12s ease-in-out infinite !important;

    border-bottom: 2px solid rgba(255,199,99,0.25) !important; /* 金色半透明 */
    backdrop-filter: blur(14px) !important;
}

/* 蓝紫暗金渐变的流动动画：沉稳豪华 */
@keyframes bpGoldFlow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ----- 金色流光（更贵气） ----- */
.main-header::before {
    content: "";
    position: absolute;
    top: 0; 
    left: -35%;
    width: 35%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,220,150,0.55), /* 柔金光 */
        transparent
    );
    transform: skewX(-20deg);
    animation: bpGoldShineMove 5s infinite ease-in-out;
    pointer-events: none;
}

@keyframes bpGoldShineMove {
    0%   { left: -50%; opacity: 0; }
    40%  { left: 120%; opacity: 0.40; }
    100% { left: 120%; opacity: 0; }
}

/* ----- LOGO 呼吸光：蓝光 ↔ 金光（超豪华效果） ----- */
.logo-img {
    animation: bpGoldLogoGlow 7s ease-in-out infinite;
}

@keyframes bpGoldLogoGlow {
    0%   { filter: drop-shadow(0 0 7px #2563EB); }  /* 电蓝光 */
    50%  { filter: drop-shadow(0 0 12px #F4C26B); } /* 金光 */
    100% { filter: drop-shadow(0 0 7px #2563EB); }
}

/* ----- 菜单 Hover：皇家金色 ----- */
.nav-item:hover {
    color: #FFDFA8 !important; /* 柔和金色 */
}
.nav-item:hover::after {
    background-color: #FFDFA8 !important;
}

/* ===========================
   🌟 底部 GIF 容器（渐变背景 + 自动浮动）
   =========================== */
#bottom-gif-banner {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    /* 💜 与页面底部完美融合的真实背景颜色 */
    background: linear-gradient(
        to top,
        rgba(15, 28, 62, 0.98) 0%,   /* 深蓝，与底部一致 */
        rgba(20, 16, 36, 0.90) 45%,  /* 过渡 */
        rgba(26, 19, 38, 0.0) 100%   /* 上方完全透明 */
    );

    padding: 6px 0;
    z-index: 99998;
    animation: bannerFadeIn 0.6s ease-out, bannerFloat 4s ease-in-out infinite;

    pointer-events: none;
}

/* 初始化动画：淡入 */
@keyframes bannerFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* 自动轻微上下浮动 */
@keyframes bannerFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

/* ===========================
   🌟 GIF 图片（呼吸光晕）
   =========================== */
#bottom-gif-banner img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    border-radius: 6px;

    pointer-events: auto;

    animation: glowPulse 2.8s ease-in-out infinite;
}

/* 金紫色呼吸光晕 */
@keyframes glowPulse {
    0%   { filter: drop-shadow(0 0 4px rgba(255, 200, 70, 0.6)); }
    50%  { filter: drop-shadow(0 0 12px rgba(153, 0, 255, 0.85)); }
    100% { filter: drop-shadow(0 0 4px rgba(255, 200, 70, 0.6)); }
}

/* ===========================
   🌟 关闭按钮（高亮金紫）
   =========================== */
#bottom-gif-banner .close-btn {
    position: absolute;
    top: 4px;
    right: 10px;

    width: 28px;
    height: 28px;
    border-radius: 50%;

    background: rgba(153, 0, 255, 0.55);
    border: 1px solid rgba(255, 216, 74, 0.9);

    color: #FFD84A;
    font-size: 18px;
    font-weight: bold;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
    pointer-events: auto;
    z-index: 99999;

    box-shadow:
        0 0 6px rgba(255, 216, 74, 0.8),
        0 0 14px rgba(153, 0, 255, 0.9);
}

/* hover 效果 */
#bottom-gif-banner .close-btn:hover {
    transform: scale(1.15);
}

/* ===========================
   🌟 手机适配（自动缩小）
   =========================== */
@media (max-width: 480px) {
    #bottom-gif-banner img {
        max-height: 70px;
    }
    #bottom-gif-banner .close-btn {
        width: 24px;
        height: 24px;
        font-size: 16px;
        top: 2px;
        right: 6px;
    }
}


body {
    padding-bottom: 90px !important;
}

