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

body {
	color: var(--theme-text, #333333);
	background: rgb(102 102 102);
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.6;
}

#header {
	width: 80%;
	margin: auto;
	position: relative;
	min-height: 250px;
	overflow: visible;
	z-index: 1;
	background-image: url('../../logo.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.floating-logo {
	position: absolute;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: contain;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
	z-index: 5;
}

.header-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	opacity: 0.3;
}

.header-content {
	flex-direction: column;
	align-items: center;
	max-width: 100%;
	margin: 0 auto;
	padding: 20px 15px;
}

.site-brand {
	text-align: center;
	margin-bottom: 15px;
	padding: 20px 0;
}

.site-title {
	display: block;
	font-size: 48px;
	font-weight: 700;
	color: #ffffff;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
	font-style: italic;
	letter-spacing: 8px;
	line-height: 1.2;
}

.site-subtitle {
	display: block;
	font-size: 14px;
	color: rgba(255,255,255,0.8);
	margin-top: 5px;
}

.category-nav {
	position: fixed;
	right: 20px;
	top: 55%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 1px;
	z-index: 100;
}

.category-nav-link {
	display: block;
	padding: 8px 16px;
	background: rgb(55 55 55);
	color: #ffffff;
	text-decoration: none;
	font-size: 13px;
	border-radius: 5px 0 0 5px;
	transition: all 0.3s;
	white-space: nowrap;
	box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.category-nav-link:hover {
	background: rgba(102, 126, 234, 1);
	padding-right: 24px;
}

.header-right {
	display: flex;
	gap: 3px;
	justify-content: center;
	width: 45%;
	margin: auto;
}

.header-link {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #ffffff;
	text-decoration: none;
	font-size: 14px;
	padding: 8px 16px;
	background: rgba(255,255,255,0.2);
	border-radius: 5px;
	transition: all 0.3s;
}

.header-link:hover {
	background: rgba(255,255,255,0.3);
}

.active{
	background: #3b82f6;
}

.mobile-menu-btn {
	display: none;
	background: rgba(255,255,255,0.2);
	border: none;
	color: #ffffff;
	font-size: 20px;
	padding: 8px 14px;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s;
}

.mobile-menu-btn:hover {
	background: rgba(255,255,255,0.3);
}

.mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.5);
	z-index: 9999;
}

.mobile-menu.show {
	display: block;
}

.mobile-menu-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 80%;
	max-width: 280px;
	height: 100%;
	background: #373566;
	overflow-y: auto;
	box-shadow: 2px 0 15px rgba(0,0,0,0.2);
}

.mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	background: var(--theme-primary, #3b82f6);
	color: #ffffff;
	font-size: 18px;
	font-weight: 600;
}

.mobile-menu-close {
	background: rgba(255,255,255,0.2);
	border: none;
	color: #ffffff;
	font-size: 20px;
	padding: 5px 10px;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s;
}

.mobile-menu-close:hover {
	background: rgba(255,255,255,0.3);
}

.mobile-menu-link {
	display: flex;
	align-items: center;
	padding: 15px 20px;
	color: #333;
	text-decoration: none;
	border-bottom: 1px solid #f0f0f0;
	transition: all 0.3s;
}

.mobile-menu-link:hover {
	background: rgba(59, 130, 246, 0.08);
	padding-left: 25px;
}

.mobile-menu-link img {
	width: 20px;
	height: 20px;
	margin-right: 12px;
	border-radius: 4px;
}

.search-area {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 15px 30px;
}

.search-tabs {
	display: flex;
	gap: 5px;
	margin-bottom: 10px;
	justify-content: center;
	flex-wrap: wrap;
}

.search-tabs a {
	padding: 6px 14px;
	color: rgba(255,255,255,0.8);
	text-decoration: none;
	font-size: 13px;
	border-radius: 15px;
	transition: all 0.3s;
}

.search-tabs a:hover {
	background: rgba(255,255,255,0.2);
	color: #ffffff;
}

.search-tabs .tab-active {
	background: rgba(255,255,255,0.95);
	color: #333;
	font-weight: 500;
}

.search-box-wrapper {
	display: flex;
	gap: 0;
}

.search-input {
	flex: 1;
	height: 44px;
	padding: 0 20px;
	border: none;
	border-radius: 8px 0 0 8px;
	font-size: 15px;
	outline: none;
}

.search-btn {
	height: 44px;
	padding: 0 30px;
	background: var(--theme-primary, #3b82f6);
	color: #ffffff;
	border: none;
	border-radius: 0 8px 8px 0;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s;
}

.search-btn:hover {
	background: var(--theme-hover, #60a5fa);
}

.ad-banner ,.category-header{
	/*background: linear-gradient(90deg, #ff6b6b, #ffa07a);*/
	background-image: linear-gradient(to right, red, orange 15%, yellow 30%, green 50%, blue 65%, indigo 80%, violet);
	padding: 12px 15px;
	text-align: center;
	background-size: 400% 100%; /* 调整背景大小以覆盖整个元素 */
	animation: moveGradient 10s linear infinite; /* 添加动画 */
}

.system-notice {
	background-color: #fff;
	padding: 10px;
	color: #000;
}


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


.announcement-more{
    color:#fff;
}

.ad-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
}

.ad-icon {
	font-size: 20px;
}

.ad-text {
	text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.logo-area-link {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.logo-area-link:hover {
	text-decoration: none;
}

.search-area.announcement-bar {
	background: transparent;
	padding: 10px 15px;
}

.search-area.announcement-bar .announcement-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: #ffffff;
	font-size: 13px;
	flex-wrap: wrap;
}

.search-area.announcement-bar .announcement-icon {
	font-size: 16px;
	color: #ffd700;
	animation: pulse 2s infinite;
}

.search-area.announcement-bar .announcement-list {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.search-area.announcement-bar .announcement-item {
	color: #ffffff;
	text-decoration: none;
	margin-right: 12px;
	transition: color 0.3s;
}

.search-area.announcement-bar .announcement-item:hover {
	color: #ffd700;
}

.search-area.announcement-bar .announcement-separator {
	color: rgba(255,255,255,0.4);
	margin: 0 8px;
}

.search-area.announcement-bar .announcement-more {
	color: rgba(255,255,255,0.7);
	text-decoration: none;
	font-size: 12px;
	padding: 3px 10px;
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 10px;
	transition: all 0.3s;
}

.search-area.announcement-bar .announcement-more:hover {
	background: rgba(255,255,255,0.15);
	color: #ffffff;
	border-color: rgba(255,255,255,0.5);
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.6; }
}

.site-card.hot-card {
	background: linear-gradient(135deg, rgba(231,76,60,0.05), rgba(231,76,60,0.1));
	border: 1px solid rgba(231,76,60,0.2);
}

.site-card.hot-card:hover {
	background: linear-gradient(135deg, rgba(231,76,60,0.1), rgba(231,76,60,0.15));
	border-color: rgba(231,76,60,0.4);
}

.site-hot-count {
	font-size: 10px;
	color: #e74c3c;
	margin-top: 2px;
}

.category-desc {
	font-size: 12px;
	color: #999;
	font-weight: normal;
	margin-left: 8px;
}

.category-count {
	font-size: 14px;
	color: #999;
	font-weight: normal;
	margin-left: 8px;
}

#container {
	width: 80%;
	margin: 0 auto;
	padding: 0 0 20px 0px;
}
.category-center{
	margin: 20px 0;
}
.category-block {
	background: #373737;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
	padding: 10px 2px;
	border-radius: 0 2px 2px 2px;
}
.category-header-title{
	
}

.category-header {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 10px;
	width: fit-content;
	border-radius: 2px 2px 0 0;
}

.category-center {
	position: relative;
}

.animal-container {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50px;
	pointer-events: none;
}

.animal {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
}

.mouse-head {
	width: 36px;
	height: 30px;
	background: #888;
	border-radius: 50% 50% 40% 40%;
	position: relative;
}
.mouse-head::before, .mouse-head::after {
	content: '';
	position: absolute;
	width: 6px; height: 6px;
	background: #333;
	border-radius: 50%;
	top: 9px;
}
.mouse-head::before { left: 6px; }
.mouse-head::after { right: 6px; }
.mouse-body {
	width: 42px; height: 24px;
	background: #888;
	border-radius: 50%;
	margin-left: -12px;
}
.mouse-tail {
	width: 24px; height: 9px;
	background: #888;
	border-radius: 0 50% 50% 0;
	margin-left: -6px;
	animation: tailWag 0.3s ease-in-out infinite;
}

.cat-ear {
	width: 0; height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 20px solid #f5a623;
	position: absolute;
	top: -15px;
}
.cat-ear-left { left: 5px; }
.cat-ear-right { right: 5px; }
.cat-head {
	width: 40px; height: 35px;
	background: #f5a623;
	border-radius: 50% 50% 40% 40%;
	position: relative;
}
.cat-head::before, .cat-head::after {
	content: '';
	position: absolute;
	width: 6px; height: 6px;
	background: #333;
	border-radius: 50%;
	top: 10px;
}
.cat-head::before { left: 8px; }
.cat-head::after { right: 8px; }
.cat-body {
	width: 35px; height: 25px;
	background: #f5a623;
	border-radius: 50%;
	margin-left: -10px;
}
.cat-tail {
	width: 30px; height: 8px;
	background: #f5a623;
	border-radius: 0 50% 50% 0;
	margin-left: -5px;
	animation: catTailWag 0.4s ease-in-out infinite;
}

.dog-ear {
	width: 12px; height: 20px;
	background: #d4a574;
	border-radius: 50% 50% 0 0;
	position: absolute;
	top: -12px;
}
.dog-ear-left { left: 2px; transform: rotate(-15deg); }
.dog-ear-right { right: 2px; transform: rotate(15deg); }
.dog-head {
	width: 42px; height: 38px;
	background: #d4a574;
	border-radius: 50%;
	position: relative;
}
.dog-head::before, .dog-head::after {
	content: '';
	position: absolute;
	width: 6px; height: 6px;
	background: #333;
	border-radius: 50%;
	top: 12px;
}
.dog-head::before { left: 10px; }
.dog-head::after { right: 10px; }
.dog-body {
	width: 40px; height: 28px;
	background: #d4a574;
	border-radius: 50%;
	margin-left: -12px;
}
.dog-tail {
	width: 28px; height: 10px;
	background: #d4a574;
	border-radius: 0 50% 50% 0;
	margin-left: -6px;
	animation: dogTailWag 0.2s ease-in-out infinite;
}

.snake-head {
	width: 25px; height: 25px;
	background: #4caf50;
	border-radius: 50%;
	position: relative;
}
.snake-head::before, .snake-head::after {
	content: '';
	position: absolute;
	width: 4px; height: 4px;
	background: #333;
	border-radius: 50%;
	top: 8px;
}
.snake-head::before { left: 5px; }
.snake-head::after { right: 5px; }
.snake-body {
	width: 50px; height: 15px;
	background: repeating-linear-gradient(90deg, #4caf50 0px, #4caf50 8px, #388e3c 8px, #388e3c 12px);
	border-radius: 50%;
	margin-left: -5px;
	animation: snakeMove 1s ease-in-out infinite;
}

.fish-fin {
	width: 0; height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 15px solid #2196f3;
	position: absolute;
	top: -12px;
	left: 10px;
}
.fish-head {
	width: 28px; height: 20px;
	background: #2196f3;
	border-radius: 50% 50% 40% 40%;
	position: relative;
}
.fish-head::before, .fish-head::after {
	content: '';
	position: absolute;
	width: 4px; height: 4px;
	background: #fff;
	border-radius: 50%;
	top: 6px;
}
.fish-head::before { left: 6px; }
.fish-head::after { right: 6px; }
.fish-body {
	width: 35px; height: 18px;
	background: #2196f3;
	border-radius: 50%;
	margin-left: -8px;
}
.fish-tail {
	width: 0; height: 0;
	border-left: 15px solid #2196f3;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	margin-left: -5px;
	animation: fishTailWag 0.3s ease-in-out infinite;
}

.animal.elephant {
	height: 50px;
	align-items: flex-end;
}
.elephant-ear {
	width: 12px; height: 18px;
	background: #bdbdbd;
	border-radius: 50%;
	position: absolute;
	top: 8px;
}
.elephant-ear-left { left: -8px; }
.elephant-ear-right { right: -8px; }
.elephant-head {
	width: 35px; height: 30px;
	background: #bdbdbd;
	border-radius: 50%;
	position: relative;
	margin-bottom: 5px;
}
.elephant-head::before, .elephant-head::after {
	content: '';
	position: absolute;
	width: 5px; height: 5px;
	background: #333;
	border-radius: 50%;
	top: 10px;
}
.elephant-head::before { left: 8px; }
.elephant-head::after { right: 8px; }
.elephant-trunk {
	width: 6px; height: 15px;
	background: #bdbdbd;
	border-radius: 50%;
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
	animation: trunkMove 2s ease-in-out infinite;
}
.elephant-body {
	width: 40px; height: 20px;
	background: #bdbdbd;
	border-radius: 50%;
	margin-left: -12px;
	margin-bottom: 0;
}

.animal.giraffe {
	height: 50px;
	align-items: flex-end;
}
.giraffe-horn {
	width: 5px; height: 8px;
	background: #8d6e63;
	border-radius: 50% 50% 0 0;
	position: absolute;
	top: -6px;
}
.giraffe-horn-left { left: 6px; }
.giraffe-horn-right { right: 6px; }
.giraffe-head {
	width: 28px; height: 22px;
	background: repeating-linear-gradient(135deg, #f5a623 0px, #f5a623 5px, #fff8e1 5px, #fff8e1 8px);
	border-radius: 50% 50% 40% 40%;
	position: relative;
	margin-bottom: -5px;
}
.giraffe-head::before, .giraffe-head::after {
	content: '';
	position: absolute;
	width: 4px; height: 4px;
	background: #333;
	border-radius: 50%;
	top: 6px;
}
.giraffe-head::before { left: 6px; }
.giraffe-head::after { right: 6px; }
.giraffe-neck {
	width: 10px; height: 25px;
	background: repeating-linear-gradient(135deg, #f5a623 0px, #f5a623 6px, #fff8e1 6px, #fff8e1 9px);
	margin-left: -4px;
	margin-bottom: 0;
}
.giraffe-body {
	width: 35px; height: 18px;
	background: repeating-linear-gradient(135deg, #f5a623 0px, #f5a623 8px, #fff8e1 8px, #fff8e1 11px);
	border-radius: 50%;
	margin-left: -15px;
	margin-bottom: 0;
}

.tiger-ear {
	width: 10px; height: 15px;
	background: #e65100;
	border-radius: 50% 50% 0 0;
	position: absolute;
	top: -10px;
}
.tiger-ear-left { left: 5px; }
.tiger-ear-right { right: 5px; }
.tiger-head {
	width: 40px; height: 35px;
	background: repeating-linear-gradient(135deg, #e65100 0px, #e65100 6px, #fff8e1 6px, #fff8e1 10px);
	border-radius: 50% 50% 40% 40%;
	position: relative;
}
.tiger-head::before, .tiger-head::after {
	content: '';
	position: absolute;
	width: 6px; height: 6px;
	background: #333;
	border-radius: 50%;
	top: 10px;
}
.tiger-head::before { left: 8px; }
.tiger-head::after { right: 8px; }
.tiger-body {
	width: 45px; height: 30px;
	background: repeating-linear-gradient(135deg, #e65100 0px, #e65100 8px, #fff8e1 8px, #fff8e1 12px);
	border-radius: 50%;
	margin-left: -12px;
}
.tiger-tail {
	width: 30px; height: 10px;
	background: repeating-linear-gradient(90deg, #e65100 0px, #e65100 6px, #fff8e1 6px, #fff8e1 10px);
	border-radius: 0 50% 50% 0;
	margin-left: -6px;
	animation: tigerTailWag 0.25s ease-in-out infinite;
}

@keyframes tailWag {
	0%, 100% { transform: rotate(-20deg); }
	50% { transform: rotate(20deg); }
}
@keyframes catTailWag {
	0%, 100% { transform: rotate(-30deg); }
	50% { transform: rotate(30deg); }
}
@keyframes dogTailWag {
	0%, 100% { transform: rotate(-45deg); }
	50% { transform: rotate(45deg); }
}
@keyframes snakeMove {
	0%, 100% { transform: translateX(0); }
	50% { transform: translateX(5px); }
}
@keyframes fishTailWag {
	0%, 100% { transform: rotate(-20deg); }
	50% { transform: rotate(20deg); }
}
@keyframes trunkMove {
	0%, 100% { transform: translateX(-50%) rotate(-10deg); }
	50% { transform: translateX(-50%) rotate(10deg); }
}
@keyframes tigerTailWag {
	0%, 100% { transform: rotate(-35deg); }
	50% { transform: rotate(35deg); }
}

.category-icon {
	margin-right: 8px;
	color: var(--theme-primary, #3b82f6);
	font-size: 16px;
}

.category-name {
	font-size: 14px;
	font-weight: 700;
	color: #ff0000;
}

.category-desc {
	font-size: 12px;
	color: #999;
	margin-left: 8px;
	font-weight: normal;
}

.more-link {
	font-size: 13px;
	color: #999;
	text-decoration: none;
	padding: 4px 12px;
	border-radius: 4px;
	transition: all 0.3s;
}

.more-link:hover {
	background: var(--theme-primary, #3b82f6);
	color: #ffffff;
}

.site-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	gap: 5px;
}

.site-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 5px;
	/* background: #fff; */
	text-decoration: none;
	color: var(--theme-text, #333333);
	transition: all 0.3s;
	/* border:1px solid #fff; */
}

.site-card:hover {
	background: rgba(59, 130, 246, 0.08);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.site-icon {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	margin-bottom: 6px;
	object-fit: cover;
}

.site-name {
	font-size: 14px;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
	color: #fff;
}

.site-card:hover .site-name {
	color: var(--theme-primary, #3b82f6);
	font-weight: 500;
}

.site-card.keyword-card {
	background: linear-gradient(135deg, rgba(243,156,18,0.05), rgba(231,76,60,0.05));
	border: 1px solid rgba(243,156,18,0.2);
	position: relative;
}

.site-card.keyword-card:hover {
	background: linear-gradient(135deg, rgba(243,156,18,0.1), rgba(231,76,60,0.1));
	border-color: rgba(243,156,18,0.4);
}

.keyword-badge {
	position: absolute;
	top: 2px;
	right: 2px;
	font-size: 10px;
}

.footer {
	background: rgb(55 55 55);
	color: #999;
	padding: 30px 15px;
	margin-top: 30px;
}

.footer-content {
	max-width: 80%;
	margin: 0 auto;
	padding-bottom: 5px;
	border-bottom: 1px solid #3c3c3c;
}

.footer-links{
	text-align: center;
	display: flex;
	justify-content: space-between;
	width: 50%;
	margin: auto;
	border: 1px solid var(--border-color);
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	padding: 24px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 24px;
	max-width: 500px;
	margin: 0 auto 32px;
	border: 1px solid var(--border-color);
}

.footer-links a{
	 text-decoration: none;
	 color: #a3a3a3;
	 border: 1px solid #a3a3a3;
	 border-radius: 5px;
	 padding: 5px 8px;
	 font-size: 13px;
}
.footer-last{
	text-align: center;
}
.footer-copyright{
	margin: 10px 0;
}

.footer-section h4 {
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 15px;
}

.link-list {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.link-list a {
	color: #999;
	text-decoration: none;
	font-size: 13px;
	transition: all 0.3s;
}

.link-list a:hover {
	color: #ffffff;
}

.footer-bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 20px;
	text-align: center;
}

.footer-bottom p {
	font-size: 13px;
	margin-bottom: 8px;
	color: #666;
}

.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 44px;
	height: 44px;
	background: var(--theme-primary, #3b82f6);
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
	z-index: 999;
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background: var(--theme-hover, #60a5fa);
	transform: translateY(-3px);
}

.float-ad {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	z-index: 998;
}

.float-ad img {
	width: 60px;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
	transition: all 0.3s;
}

.float-ad:hover img {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.small-icon-ad {
	position: fixed;
	bottom: 100px;
	right: 20px;
	z-index: 997;
	margin-bottom: 10px;
}

.small-icon-ad img {
	width: 48px;
	height: auto;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	transition: all 0.3s;
}

.small-icon-ad:hover img {
	transform: scale(1.15);
	box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

@media screen and (max-width: 768px) {
	#header {
		min-height: 180px;
		width: 100%;
		background-size: 100% auto;
		background-position: top center;
	}
	#container{
		width: 100%;
		padding:5px;
	}
	.footer{
		padding: 0;
	}
	.footer-content{
		max-width: 100%;
		padding: 0;
	}
	.footer-links{
		width: 100%;
		padding: 20px 0;
	}

	.header-content {
		display: flex;
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}

	.floating-logo {
		width: 35px;
		height: 35px;
	}

	.header-right {
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
		display: none;
	}
	.announcement-icon{
		width: 80%;
	}


	.mobile-menu-btn {
		display: block;
	}

	.site-title {
		font-size: 28px;
		letter-spacing: 4px;
	}

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

	.category-nav {
		display: none;
	}

	.search-area {
		padding-bottom: 20px;
	}

	.search-input {
		height: 40px;
		font-size: 14px;
	}

	.search-btn {
		height: 40px;
		padding: 0 20px;
		font-size: 14px;
	}

	.category-block {
		padding: 10px 2px;
	}

	.site-grid {
		grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
		gap: 5px;
	}

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

	.site-name {
		font-size: 11px;
	}

	.footer-content {
		flex-direction: column;
		gap: 25px;
	}

	.back-to-top {
		bottom: 20px;
		right: 20px;
		width: 40px;
		height: 40px;
	}

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

	.float-ad, .small-icon-ad {
		display: none;
	}
}

@media screen and (max-width: 480px) {
	#header {
		width: 100%;
		min-height: 150px;
	}
	#container{
		width: 100%;
		padding:5px;
	}

	.site-title {
		font-size: 22px;
		letter-spacing: 3px;
	}

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

	.header-link {
		padding: 6px 12px;
		font-size: 12px;
	}

	.site-logo {
		height: 40px;
		width: 40px;
	}

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

	.site-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 3px;
	}

	.site-card {
		padding: 5px;
	}

	.site-icon {
		width: 28px;
		height: 28px;
	}

	.site-name {
		font-size: 10px;
	}

	.search-tabs {
		gap: 3px;
	}

	.search-tabs a {
		padding: 4px 10px;
		font-size: 12px;
	}

	.category-header {
		display: flex;
		gap: 10px;
		text-align: left;
	}
}