/* Theme Name: Opal Sohbet Teması
Theme URI: www.QBilisim.com
Author: QBilisim
Author URI: Geliştirici Web Sayfası
Description: Qbilisim.com tema "Opal" serisi.
Version: v1 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #ff6b35;
	--secondary: #1a2238;
	--accent: #ff8c42;
	--white: #ffffff;
	--light-gray: #f4f4f4;
	--dark-navy: #0d1b2a;
	--blue: #2563eb;
	--success: #10b981;
	--danger: #ef4444;
}

body {
	font-family: 'Poppins', sans-serif;
	background: linear-gradient(135deg, #0d1b2a 0%, #1a2238 50%, #0d1b2a 100%);
	color: #fff;
	line-height: 1.6;
	overflow-x: hidden;
	padding-bottom: 100px;
	min-height: 100vh;
}

/* Zoom kontrolleri - Sadece orta boy ekranlar için (dizüstü) */
@media (min-width: 1024px) and (max-width: 1399px) {
	body {
		zoom: 0.85; /* Scale yerine zoom kullanımı - daha stabil ve sorunsuz */
	}

	/* Radio player için özel düzeltme */
	.fixed-radio-player {
		zoom: 1.176; /* 1 / 0.85 = 1.176 - zoom'u tersine çevirir */
	}
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Animated SVG Background */
.animated-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	opacity: 0.05;
	pointer-events: none;
}

/* Top Bar */
.top-bar {
	background: rgba(255, 107, 53, 0.95);
	backdrop-filter: blur(10px);
	padding: 8px 0;
	position: relative;
	z-index: 1001;
}

.top-bar-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	gap: 10px;
}

.top-bar-left {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}

.top-bar-left a,
.top-bar-left span {
	color: white;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: all 0.3s;
	font-size: 12px;
	white-space: nowrap;
}

.top-bar-left a:hover {
	opacity: 0.8;
	transform: translateY(-2px);
	cursor: pointer;
}

.top-social {
	display: flex;
	gap: 6px;
}

.social-icon {
	width: 28px;
	height: 28px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	transition: all 0.3s;
	text-decoration: none;
	font-size: 12px;
}

.social-icon:hover {
	background: white;
	color: var(--primary);
	transform: translateY(-3px) rotate(360deg);
	cursor: pointer;
}

/* Navbar */
.navbar {
	background: rgba(26, 34, 56, 0.95);
	backdrop-filter: blur(10px);
	padding: 15px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 5px 30px rgba(255, 107, 53, 0.3);
	border-bottom: 3px solid var(--primary);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: #fff;
	font-size: 28px;
	font-weight: 900;
	transition: all 0.3s;
}

.logo i {
	color: var(--primary);
	font-size: 36px;
	animation: rotate 3s linear infinite;
}

@keyframes rotate {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1;
	font-size: 28px;
}

.logo-text span {
	font-size: 12px;
	color: var(--primary);
	font-weight: 500;
	letter-spacing: 2px;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 5px;
	align-items: center;
}

.nav-menu li a {
	color: #fff;
	text-decoration: none;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 14px;
	border-radius: 8px;
	transition: all 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
	background: var(--primary);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
	cursor: pointer;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: none;
	background: var(--primary);
	border: none;
	width: 45px;
	height: 45px;
	border-radius: 8px;
	color: white;
	font-size: 20px;
	cursor: pointer;
	transition: all 0.3s;
}

.mobile-menu-toggle:hover {
	background: var(--accent);
	transform: scale(1.05);
	cursor: pointer;
}

.mobile-nav {
	display: none;
	background: rgba(26, 34, 56, 0.98);
	backdrop-filter: blur(10px);
	padding: 20px;
	border-top: 2px solid var(--primary);
	margin-top: 10px;
}

.mobile-nav.active {
	display: block;
	animation: slideDown 0.3s ease;
}

@keyframes slideDown {
	from { opacity: 0; transform: translateY(-20px); }
	to { opacity: 1; transform: translateY(0); }
}

.mobile-nav a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px;
	color: white;
	text-decoration: none;
	border-radius: 8px;
	margin-bottom: 8px;
	transition: all 0.3s;
}

.mobile-nav a:hover {
	background: var(--primary);
	padding-left: 25px;
}

/* Hero Section */
.hero-section {
	padding: 30px 0;
	position: relative;
	overflow: hidden;
}

.hero-content {
	display: grid;
	grid-template-columns: 380px 1fr 380px;
	gap: 40px;
	align-items: start;
	position: relative;
	z-index: 2;
}

.hero-left-sidebar {
	position: sticky;
}

.hero-main {
	animation: fadeInUp 1s;
}

.hero-title {
	font-size: 48px;
	font-weight: 900;
	margin-bottom: 20px;
	color: var(--white);
	line-height: 1.2;
	text-align: center;
}

.hero-title span {
	color: var(--primary);
}

.hero-subtitle {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 30px;
	text-align: center;
}

/* Chat Entry Form */
.chat-entry-box {
	background: white;
	border-radius: 25px;
	padding: 40px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	margin-bottom: 30px;
}

.chat-entry-box .form-title {
	font-size: 24px;
	margin-bottom: 25px;
	color: var(--secondary);
	display: flex;
	align-items: center;
	gap: 12px;
}

.form-group {
	margin-bottom: 20px;
	position: relative;
}

.form-control {
	width: 100%;
	padding: 18px 55px 18px 22px;
	border: 2px solid #e0e0e0;
	border-radius: 15px;
	font-size: 16px;
	transition: all 0.3s;
	background: #f8f8f8;
	color: var(--secondary);
	font-family: 'Poppins', sans-serif;
}

.form-control:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
	background: white;
}

.form-icon {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--primary);
	font-size: 20px;
}

.chat-submit-btn {
	width: 100%;
	padding: 18px;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	color: white;
	border: none;
	border-radius: 15px;
	font-weight: 700;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.3s;
}

.chat-submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
	cursor: pointer;
}

.online-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	margin-top: 20px;
}

.stat-badge {
	padding: 12px;
	background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
	border-radius: 12px;
	text-align: center;
	color: var(--secondary);
	font-weight: 600;
	font-size: 14px;
}

.stat-badge i {
	color: var(--primary);
	margin-right: 5px;
}
.online-stats a {
	color: #1a2137;
	text-decoration: none;
}
.online-stats a:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}
/* Left Sidebar Widgets */
.sidebar-widget {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 107, 53, 0.3);
	border-radius: 20px;
	padding: 25px;
	margin-bottom: 25px;
}

.widget-title-small {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--white);
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--primary);
}

/* Program Schedule */
.program-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	margin-bottom: 12px;
	border-left: 4px solid var(--primary);
	transition: all 0.3s;
}

.program-item:hover {
	background: rgba(255, 107, 53, 0.2);
	transform: translateX(5px);
	cursor: pointer;
}

.program-time {
	font-size: 14px;
	font-weight: 700;
	color: var(--primary);
}

.program-name {
	font-size: 14px;
	color: var(--white);
}

/* Hero SVG Illustration */
.hero-illustration {
	width: 100%;
	height: 300px;
	margin: 5px;
}

/* Right Sidebar - Rules */
.rules-widget {
	background: white;
	border-radius: 25px;
	padding: 35px;
	margin-bottom: 25px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.rules-widget .widget-title-white {
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 25px;
	color: var(--secondary);
	display: flex;
	align-items: center;
	gap: 10px;
}

.rule-item {
	display: flex;
	align-items: start;
	gap: 15px;
	padding: 15px;
	background: linear-gradient(135deg, #f8f8f8, #ffffff);
	border-radius: 12px;
	margin-bottom: 12px;
	border-left: 4px solid var(--primary);
}

.rule-number {
	width: 35px;
	height: 35px;
	background: var(--primary);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	flex-shrink: 0;
}

.rule-text {
	color: var(--secondary);
	font-size: 14px;
	line-height: 1.6;
}

/* Online Users Widget */
.online-users {
	background: linear-gradient(135deg, var(--primary), var(--accent));
	border-radius: 20px;
	padding: 25px;
	margin-bottom: 25px;
	position: relative;
	overflow: hidden;
}

.online-users::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.user-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border-radius: 12px;
	margin-bottom: 10px;
	position: relative;
	z-index: 1;
}

.user-avatar {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: white;
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	position: relative;
}

.status-dot {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 12px;
	height: 12px;
	background: var(--success);
	border: 2px solid white;
	border-radius: 50%;
}

.user-info .user-name {
	font-size: 14px;
	margin-bottom: 2px;
}

.user-info .user-room {
	font-size: 12px;
	opacity: 0.9;
}

/* Blog Section */
.blog-section {
	padding: 20px 0;
	position: relative;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-title-main {
	font-size: 48px;
	font-weight: 900;
	margin-bottom: 15px;
	color: var(--white);
}

.section-title-main span {
	color: var(--primary);
}

.section-subtitle-main {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.blog-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.4s;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.blog-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
	cursor: pointer;
}
.blog-card img {
	width: 100%;
	height: 100%;
}
.blog-thumbnail {
	height: 220px;
	position: relative;
	overflow: hidden;
}

.blog-thumbnail svg {
	width: 100%;
	height: 100%;
}

.blog-category {
	position: absolute;
	top: 15px;
	left: 15px;
	padding: 8px 18px;
	background: var(--primary);
	color: white;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
}

.blog-body {
	padding: 25px;
}

.blog-meta {
	display: flex;
	gap: 15px;
	margin-bottom: 12px;
	font-size: 12px;
	color: #888;
}

.blog-card-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--secondary);
}

.blog-excerpt {
	color: #666;
	margin-bottom: 15px;
	font-size: 14px;
	line-height: 1.6;
}

.read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--primary);
	font-weight: 600;
	text-decoration: none;
	font-size: 14px;
}

.read-more:hover {
	gap: 12px;
	cursor: pointer;
}
.pageler {
	margin-top: 20px;
	padding: 17px;
	background: #293145;
	border: 1px solid #ff6b3559;
	border-radius: 10px;
}
.pageler .page-numbers {
	background: var(--primary);;
	padding: 5px 10px;
	border-radius: 5px;
	color: white;
	text-decoration: none;
}
.pageler .page-numbers:hover {
	background: var(--primary);;
	color: #7ED957;
}
.pageler .current {
	background:white;
	color: var(--primary);
}
/* Article Section */
.article-section {
	padding: 80px 0;
	position: relative;
	background: rgba(255, 255, 255, 0.02);
}

.article-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	opacity: 0.05;
}

.article-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 300px 1fr 300px;
	gap: 40px;
	align-items: start;
}

.article-sidebar {
	position: sticky;
	top: 120px;
}

.sidebar-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 107, 53, 0.3);
	border-radius: 20px;
	padding: 25px;
	margin-bottom: 25px;
}

.sidebar-card-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--primary);
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--primary);
}

.info-item {
	padding: 12px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	margin-bottom: 12px;
	color: white;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s;
}

.info-item:hover {
	background: rgba(255, 107, 53, 0.2);
	transform: translateX(5px);
	cursor: pointer;
}

.info-item i {
	color: var(--primary);
	font-size: 16px;
}
.info-item a {
	color: white;
	text-decoration: none;
}
.article-container {
	position: relative;
	z-index: 1;
	color: #262d42;
}

.article-content {
	background: white;
	border-radius: 30px;
	padding: 60px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Başlıklar */
.article-content h1 {
	font-size: 36px;
	font-weight: 900;
	color: var(--secondary);
	margin-bottom: 20px;
	line-height: 1.3;
}

.article-content h2 {
	font-size: 28px;
	font-weight: 800;
	color: var(--primary);
	margin: 40px 0 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.article-content h3 {
	font-size: 22px;
	font-weight: 700;
	color: var(--secondary);
	margin: 30px 0 15px;
}

.article-content h4 {
	font-size: 18px;
	font-weight: 600;
	color: var(--secondary);
	margin: 20px 0 10px;
}

.article-content h5 {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary);
	margin: 15px 0 8px;
}

.article-content h6 {
	font-size: 14px;
	font-weight: 600;
	color: #666;
	margin: 10px 0 6px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Paragraflar */
.article-content p {
	font-size: 15px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 18px;
}

/* Listeler */
.article-content ul,
.article-content ol {
	margin: 15px 0 20px 40px;
	color: #444;
	font-size: 15px;
	line-height: 1.8;
}

.article-content li {
	margin-bottom: 8px;
}

/* Bağlantılar */
.article-content a {
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s ease;
}

.article-content a:hover {
	color: var(--secondary);
	text-decoration: underline;
}

/* Alıntılar */
.article-content blockquote {
	border-left: 5px solid var(--primary);
	padding-left: 20px;
	margin: 25px 0;
	font-style: italic;
	color: #444;
	background: #f9f9ff;
	border-radius: 8px;
}

/* Görseller */
.article-content img {
	max-width: 100%;
	border-radius: 20px;
	margin: 25px 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Tablolar */
.article-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 25px 0;
	font-size: 15px;
}

.article-content th,
.article-content td {
	padding: 12px 15px;
	border: 1px solid #ddd;
	text-align: left;
}

.article-content th {
	background-color: var(--primary);
	color: white;
	font-weight: 700;
}

.article-content tr:nth-child(even) {
	background-color: #f8f8f8;
}
.yorum{
	color: #100F0D;
	padding: 10px;
	border-radius: 10px;
	margin-top: 10px;
}
.yorum a{
	color: #C1FF72;
}
.yorum li{
	margin-bottom: 10px;
	padding: 10px;
	border: 1px solid #2F748E;
	list-style-type: none;
	border-radius: 5px
}
.yorum textarea{
	width: 100%;
	height: 100px;
	border-radius: 5px
}
.yorum input[type=text]{
	width: 100%;
	border-radius: 5px;
	background: #F3F5F9;
	border: none;
}
.yorum input[type=submit]{
	background: #101d25;
	color: #f7f9fa;
	border-radius: 10px;
	text-align: center;
	padding: 10px;
	border: none;
}
.yorum input[type=submit]:hover {
	background: #81cdb7;
	color: #2B3465;
}
.yorum .comment-form-url{
	display: none
}

/* Widget Section (3 Columns) */
.widget-section {
	padding: 80px 0;
	background: var(--secondary);
	position: relative;
	overflow: hidden;
}

.widget-bg-svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	opacity: 0.05;
}

.widget-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	position: relative;
	z-index: 1;
}

.footer-widget {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 107, 53, 0.3);
	border-radius: 20px;
	padding: 30px;
}

.footer-widget .widget-footer-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 25px;
	color: var(--primary);
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--primary);
}

.widget-list {
	list-style: none;
}

.widget-list li {
	margin-bottom: 15px;
}

.widget-list li a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s;
	padding: 10px;
	border-radius: 8px;
}

.widget-list li a:hover {
	color: white;
	background: rgba(255, 107, 53, 0.2);
	padding-left: 15px;
}

/* Fixed Radio Player */
.fixed-radio-player {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	backdrop-filter: blur(20px);
	padding: 12px 0;
	box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
	z-index: 9999;
	animation: slideUp 0.5s ease;
}

@keyframes slideUp {
	from { transform: translateY(100%); }
	to { transform: translateY(0); }
}

.player-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	flex-wrap: wrap;
}

.player-info {
	display: flex;
	align-items: center;
	gap: 12px;
}

.player-cover {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	animation: spin 10s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.player-track {
	color: white;
}

.player-track .track-name {
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 2px;
}

.player-track .track-artist {
	font-size: 12px;
	opacity: 0.9;
}

.player-controls {
	display: flex;
	align-items: center;
	gap: 10px;
}

.player-btn {
	width: 40px;
	height: 40px;
	background: white;
	border: none;
	border-radius: 50%;
	color: var(--primary);
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.player-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
	cursor: pointer;
}

.player-volume {
	display: flex;
	align-items: center;
	gap: 8px;
	color: white;
}

.volume-slider {
	width: 80px;
	height: 4px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 5px;
	outline: none;
	cursor: pointer;
}

.player-live {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	color: white;
	font-size: 12px;
	white-space: nowrap;
}

.live-dot {
	width: 6px;
	height: 6px;
	background: #10b981;
	border-radius: 50%;
	animation: pulse 1.5s infinite;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.5); opacity: 0.5; }
}

/* Footer */
.footer {
	background: var(--dark-navy);
	padding: 40px 0 20px;
	border-top: 3px solid var(--primary);
}

.footer-bottom {
	text-align: center;
	color: rgba(255, 255, 255, 0.5);
	font-size: 14px;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.yukari {
	display: none;
	position: fixed;
	bottom: 0;
	right: 0;
	border: none;
	padding: 15px 25px;
	margin-bottom: 10px;
	margin-right: 10px;
	background: rgba(255, 107, 53, 0.95);
	color: white;
	font-size: 20px;
	border-radius: 50%;
	z-index: 20;
}
.yukari:hover {
	cursor: pointer;
}
/* Responsive */
@media (max-width: 1200px) {
	.hero-content {
		grid-template-columns: 1fr;
	}

	.hero-left-sidebar {
		position: static;
	}

	.blog-grid,
	.widget-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.article-wrapper {
		grid-template-columns: 1fr;
	}

	.article-sidebar {
		position: static;
	}

	.article-content {
		padding: 40px;
	}
}

@media (max-width: 768px) {
	
	.top-bar-left a,
	.top-bar-left span {
		font-size: 11px;
		gap: 3px;
	}
	.top-social {
		display: flex;
		gap: 20px;
		margin: 0 auto;
	}
	.top-bar-left {
		display: none;
	}

	.social-icon {
		width: 26px;
		height: 26px;
		font-size: 11px;
	}

	.nav-menu {
		display: none;
	}

	.mobile-menu-toggle {
		display: block;
	}

	.logo-text {
		font-size: 20px;
	}

	.logo-text span {
		font-size: 10px;
	}

	.logo i {
		font-size: 28px;
	}
	.hero-main {
		order: -1;
	}
	.hero-title {
		font-size: 28px;
	}

	.hero-subtitle {
		font-size: 14px;
	}

	.chat-entry-box {
		padding: 25px;
	}

	.chat-entry-box .form-title {
		font-size: 20px;
	}

	.form-control {
		padding: 14px 45px 14px 18px;
		font-size: 14px;
	}

	.chat-submit-btn {
		padding: 14px;
		font-size: 16px;
	}

	.blog-grid,
	.widget-grid {
		grid-template-columns: 1fr;
	}

	.article-content {
		padding: 25px;
	}

	.article-content h1 {
		font-size: 26px;
	}

	.article-content h2 {
		font-size: 22px;
	}

	.article-content h3 {
		font-size: 18px;
	}

	.article-content h4 {
		font-size: 16px;
	}

	.article-content p {
		font-size: 14px;
	}

	.player-content {
		gap: 5px;
	}
	.player-track {
		display: none;
	}
	.player-cover {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}

	.player-track .track-name {
		font-size: 12px;
	}

	.player-track .track-artist {
		font-size: 11px;
	}

	.player-btn {
		width: 35px;
		height: 35px;
		font-size: 14px;
	}

	.player-volume {
		display: none;
	}

	.player-live {
		font-size: 10px;
		padding: 4px 8px;
	}

	.section-title-main {
		font-size: 32px;
	}

	.section-subtitle-main {
		font-size: 14px;
	}

	body {
		padding-bottom: 70px;
		zoom: 0.9;
	}
}
/* Footer */
.footer {
	background: var(--secondary);
	padding: 60px 0 30px;
	margin-top: 80px;
	border-top: 3px solid var(--primary);
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-widget h4 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--primary);
}

.footer-about {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	font-size: 14px;
}

.social-links {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.social-btn {
	width: 40px;
	height: 40px;
	background: rgba(255, 107, 53, 0.2);
	border: 2px solid var(--primary);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	transition: all 0.3s;
}

.social-btn:hover {
	background: var(--primary);
	color: white;
	transform: translateY(-3px);
	cursor: pointer;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s;
}

.footer-links a:hover {
	color: var(--primary);
	padding-left: 5px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 30px;
	text-align: center;
	color: rgba(255, 255, 255, 0.5);
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 1200px) {
	.hero-content {
		grid-template-columns: 1fr;
	}

	.hero-left-sidebar {
		position: static;
	}

	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.nav-menu {
		display: none;
	}

	.hero-title {
		font-size: 36px;
	}

	.blog-grid {
		grid-template-columns: 1fr;
	}

	.footer-content {
		grid-template-columns: 1fr;
	}
}