/* 4 Column Helmet Layout Styles */
.helmet-column {
	background: linear-gradient(135deg, #001122 0%, #002244 100%);
	border: 2px solid #89ede9;
	border-radius: 15px;
	padding: 15px;
	margin: 0 5px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow: hidden;
	height: 100%;
}

/* 7 Column Weapon Layout Styles */
.helmet-column.weapon-column {
	padding: 8px;
	margin: 0 5px;
	min-width: 120px;
}

.helmet-column.weapon-column .category-header {
	padding: 8px 12px;
	margin-bottom: 10px;
}

.helmet-column.weapon-column .category-header h4 {
	font-size: 0.9em;
}

/* Responsive weapon column styles */
@media (max-width: 1200px) {
	.helmet-column.weapon-column {
		padding: 6px;
		margin: 0 1px;
	}
	
	.helmet-column.weapon-column .category-header {
		padding: 6px 8px;
		margin-bottom: 8px;
	}
	
	.helmet-column.weapon-column .category-header h4 {
		font-size: 0.8em;
	}
}

@media (max-width: 768px) {
	.helmet-column.weapon-column {
		padding: 4px;
		margin: 0;
	}
	
	.helmet-column.weapon-column .category-header {
		padding: 4px 6px;
		margin-bottom: 6px;
	}
	
	.helmet-column.weapon-column .category-header h4 {
		font-size: 0.7em;
	}
}

.helmet-column::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(74, 144, 164, 0.1) 0%, rgba(26, 42, 58, 0.2) 100%);
	z-index: 1;
}

.helmet-column .category-header {
	position: relative;
	z-index: 2;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #001122 0%, #002244 100%);
	border: 2px solid #62a5e7;
	border-radius: 10px;
	padding: 15px;
}

.helmet-column .category-header h4 {
	margin: 0;
	font-size: 1.2em;
	font-weight: 600;
	color: #F0F8FF;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.vertical-layout {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
}

.vertical-layout .armor-item {
	width: 80px;
	height: 80px;
	background-color: #001122;
	border: 2px solid #62a5e7;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow: hidden;
}

.vertical-layout .armor-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(74, 144, 164, 0.1) 0%, rgba(26, 42, 58, 0.3) 100%);
	z-index: 1;
}

.vertical-layout .armor-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 15px rgba(74, 144, 164, 0.4);
	border-color: #00BFFF;
}

.vertical-layout .armor-item:hover::before {
	background: linear-gradient(135deg, rgba(135, 206, 235, 0.2) 0%, rgba(26, 42, 58, 0.4) 100%);
}

.vertical-layout .armor-item img {
	width: 38px;
	height: 53px;
	object-fit: contain;
	border-radius: 7px;
	position: relative;
	z-index: 2;
}

/* Responsive column layout */
@media (max-width: 1200px) {
	.helmet-column {
		padding: 12px;
		margin: 0 3px;
	}
	
	.vertical-layout .armor-item {
		width: 70px;
		height: 70px;
	}
	
	.vertical-layout .armor-item img {
		width: 33px;
		height: 46px;
	}
}

@media (max-width: 768px) {
	.helmet-column {
		padding: 8px;
		margin: 0 2px 20px 2px;
	}
	
	.helmet-column .category-header {
		padding: 8px;
		margin-bottom: 12px;
	}
	
	.helmet-column .category-header h4 {
		font-size: 1.1em;
	}
	
	.vertical-layout .armor-item {
		width: 60px;
		height: 60px;
	}
	
	.vertical-layout .armor-item img {
		width: 45px;
		height: 45px;
	}
}

@media (max-width: 576px) {
	.helmet-column {
		padding: 6px;
		margin: 0 1px 15px 1px;
	}
	
	.vertical-layout .armor-item {
		width: 50px;
		height: 50px;
	}
	
	.vertical-layout .armor-item img {
		width: 35px;
		height: 35px;
	}
}

/* Enhanced Navbar Styles */
.navbar-custom {
	background: linear-gradient(135deg, #000000 0%, #001122 100%);
	border: none;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	padding: 15px 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 9999;
}

.navbar-container {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.navbar-nav-container {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.navbar-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}

.nav-item {
	margin: 0;
}

.nav-link {
	color: #ffffff !important;
	font-size: 1.1em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 12px 20px !important;
	border-radius: 8px;
	transition: all 0.3s ease;
	text-decoration: none !important;
	position: relative;
	background: transparent;
	border: 2px solid transparent;
}

.nav-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, #002244 0%, #003355 100%);
	border-radius: 6px;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
}

.nav-link:hover {
	color: #00BFFF !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(74, 144, 164, 0.4);
	border-color: #0080FF;
}

.nav-link:hover::before {
	opacity: 1;
}

.nav-link:active,
.nav-link:focus {
	color: #00BFFF !important;
	outline: none;
	box-shadow: 0 0 0 3px rgba(74, 144, 164, 0.3);
}

/* Mobile Toolbar Navigation */
@media (max-width: 768px) {
	.navbar-custom {
		padding: 8px 0;
		background: linear-gradient(135deg, #000000 0%, #001122 100%);
		border-bottom: 2px solid #0080FF;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
	}
	
	.navbar-container {
		padding: 0 10px;
	}
	
	.navbar-nav {
		display: flex;
		justify-content: space-around;
		align-items: center;
		gap: 5px;
		flex-wrap: nowrap;
		width: 100%;
		padding: 0;
		margin: 0;
	}
	
	.nav-item {
		flex: 1;
		margin: 0;
	}
	
	.nav-link {
		font-size: 0.8em;
		padding: 8px 4px !important;
		margin: 0;
		text-align: center;
		border-radius: 6px;
		min-height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: linear-gradient(135deg, #001122 0%, #002244 100%);
		border: 1px solid #62a5e7;
		transition: all 0.2s ease;
	}
	
	.nav-link:hover {
		background: linear-gradient(135deg, #002244 0%, #003355 100%);
		border-color: #00BFFF;
		transform: translateY(-1px);
		box-shadow: 0 3px 8px rgba(220, 20, 60, 0.3);
	}
}

@media (max-width: 576px) {
	.navbar-custom {
		padding: 6px 0;
	}
	
	.navbar-container {
		padding: 0 5px;
	}
	
	.nav-link {
		font-size: 0.7em;
		padding: 6px 2px !important;
		min-height: 36px;
		letter-spacing: 0.3px;
	}
	
	.navbar-nav {
		gap: 3px;
	}
}

@media (max-width: 480px) {
	.nav-link {
		font-size: 0.65em;
		padding: 5px 1px !important;
		min-height: 32px;
	}
	
	.navbar-nav {
		gap: 2px;
	}
}

/* Body padding for fixed navbar */
body {
	padding-top: 80px;
}

@media (max-width: 768px) {
	body {
		padding-top: 60px;
	}
}

@media (max-width: 576px) {
	body {
		padding-top: 50px;
	}
}

@media (max-width: 480px) {
	body {
		padding-top: 45px;
	}
}

/* Sancaktar2 Genel Özellikler Styles */
.features-grid {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	align-items: stretch;
	margin: 30px 0;
}

.features-column {
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
	min-width: 280px;
	max-width: 320px;
	height: auto;
}

.feature-item {
	background: linear-gradient(135deg, #001122 0%, #002244 100%);
	border: 2px solid #62a5e7;
	border-radius: 8px;
	padding: 12px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	flex: 1;
}

.feature-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(74, 144, 164, 0.4);
	border-color: #00BFFF;
	background: linear-gradient(135deg, #002244 0%, #003355 100%);
}

.feature-icon {
	color: #ffffff;
	font-size: 1.2em;
	font-weight: bold;
	text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
	flex-shrink: 0;
}

.feature-text {
	color: #ffffff;
	font-size: 0.95em;
	font-weight: 500;
	line-height: 1.3;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive features grid */
@media (max-width: 1200px) {
	.features-grid {
		gap: 15px;
	}
	
	.features-column {
		min-width: 250px;
		max-width: 300px;
	}
	
	.feature-item {
		padding: 10px 14px;
	}
	
	.feature-text {
		font-size: 0.9em;
	}
}

@media (max-width: 768px) {
	.features-grid {
		gap: 10px;
		margin: 20px 0;
	}
	
	.features-column {
		min-width: 200px;
		max-width: 100%;
	}
	
	.feature-item {
		padding: 8px 12px;
		gap: 10px;
	}
	
	.feature-icon {
		font-size: 1.1em;
	}
	
	.feature-text {
		font-size: 0.85em;
	}
}

@media (max-width: 576px) {
	.features-grid {
		flex-direction: column;
		align-items: center;
	}
	
	.features-column {
		min-width: 100%;
		max-width: 100%;
	}
	
	.feature-item {
		padding: 6px 10px;
		gap: 8px;
	}
	
	.feature-icon {
		font-size: 1em;
	}
	
	.feature-text {
		font-size: 0.8em;
	}
}

/* Information Panels Styles */
.info-panels-container {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin: 30px 0;
	flex-wrap: wrap;
}

.info-panel {
	border: 2px solid #89ede9;
	border-radius: 8px;
	padding: 15px 20px;
	background: linear-gradient(135deg, #001122 0%, #002244 100%);
	min-width: 200px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.info-panel:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
	border-color: #00BFFF;
}

.info-panel-title {
	font-size: 1.1em;
	font-weight: bold;
	color: #F0F8FF;
	margin-bottom: 8px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.info-panel-content {
	font-size: 0.9em;
	color: #F0F8FF;
	line-height: 1.4;
}

/* Responsive info panels */
@media (max-width: 768px) {
	.info-panels-container {
		gap: 15px;
		margin: 20px 0;
	}
	
	.info-panel {
		min-width: 150px;
		padding: 12px 15px;
	}
	
	.info-panel-title {
		font-size: 1em;
	}
	
	.info-panel-content {
		font-size: 0.8em;
	}
}

@media (max-width: 576px) {
	.info-panels-container {
		gap: 10px;
		margin: 15px 0;
	}
	
	.info-panel {
		min-width: 120px;
		padding: 10px 12px;
	}
	
	.info-panel-title {
		font-size: 0.9em;
	}
	
	.info-panel-content {
		font-size: 0.75em;
	}
}

/* Navigation Tabs Buttons Styling */
.nav-tabs {
	border: none;
	margin: 20px 0;
}

.nav-tabs li {
	margin: 0 5px;
}

.nav-tabs li a {
	background: linear-gradient(135deg, #001122 0%, #002244 100%);
	border: 2px solid #0080FF;
	border-radius: 8px;
	color: #ffffff !important;
	font-size: 1.1em;
	font-weight: 600;
	padding: 12px 20px;
	text-decoration: none !important;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow: hidden;
}

.nav-tabs li a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(74, 144, 164, 0.1) 0%, rgba(26, 42, 58, 0.2) 100%);
	z-index: 1;
	transition: opacity 0.3s ease;
}

.nav-tabs li a:hover {
	background: linear-gradient(135deg, #002244 0%, #003355 100%);
	border-color: #00BFFF;
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(74, 144, 164, 0.4);
}

.nav-tabs li a:hover::before {
	opacity: 0.8;
}

.nav-tabs li a:focus,
.nav-tabs li a:active {
	background: linear-gradient(135deg, #002244 0%, #003355 100%);
	border-color: #00BFFF;
	color: #ffffff !important;
	outline: none;
	box-shadow: 0 0 0 3px rgba(74, 144, 164, 0.3);
}

.nav-tabs li.active a,
.nav-tabs li a.active {
	background: linear-gradient(135deg, #0080FF 0%, #2e6b8a 100%);
	border-color: #00BFFF;
	color: #ffffff !important;
	box-shadow: 0 4px 15px rgba(74, 144, 164, 0.6);
}

.nav-tabs li.active a::before,
.nav-tabs li a.active::before {
	background: linear-gradient(135deg, rgba(135, 206, 235, 0.2) 0%, rgba(74, 144, 164, 0.3) 100%);
	opacity: 1;
}

/* Responsive Navigation Tabs */
@media (max-width: 768px) {
	.nav-tabs {
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.nav-tabs li {
		margin: 5px;
	}
	
	.nav-tabs li a {
		font-size: 1em;
		padding: 10px 16px;
	}
}

@media (max-width: 576px) {
	.nav-tabs li a {
		font-size: 0.9em;
		padding: 8px 14px;
	}
}

/* Opening Date Banner Styles */
.opening-banner {
	position: fixed;
	bottom: -5px;
	left: 0;
	right: 0;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
	border-top: 2px solid #4a90e2;
	border-left: none;
	border-right: none;
	border-bottom: none;
	border-radius: 8px 8px 0 0;
	padding: 2px 15px 0px 15px;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	text-align: center;
}

.opening-banner-content {
	margin: 2px auto 0 auto;
	max-width: 100%;
}

.opening-title {
	color: #ffffff;
	font-size: 2em;
	font-weight: bold;
	margin-bottom: -2px;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
	letter-spacing: 1px;
}

.opening-subtitle {
	color: #F0F8FF;
	font-size: 1.5em;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.discord-link {
	color: #F0F8FF;
	text-decoration: none;
	transition: all 0.3s ease;
}

.discord-link:hover {
	color: #87CEEB;
	text-shadow: 0 0 10px rgba(135, 206, 235, 0.8);
	transform: scale(1.05);
}

.discord-icon {
	font-size: 1.2em;
}

/* Discord Widget Styles */
.discord-widget {
	position: fixed;
	bottom: 120px;
	left: 20px;
	z-index: 999;
}

.discord-widget .ipsWidget {
	background: transparent;
	border: none;
	box-shadow: none;
}

.discord-widget .ipsPad {
	background: transparent;
}

.discord-widget img {
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease;
}

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

/* Body padding for fixed banner */
body {
	padding-bottom: 80px;
}

/* Mobile responsive - hide banner and discord widget on mobile */
@media (max-width: 768px) {
	.opening-banner {
		display: none;
	}
	
	.discord-widget {
		display: none;
	}
	
	body {
		padding-bottom: 0;
	}
}
