/* ====================================
   RAID PAGE - MODERN DESIGN V1
   Account Management Style
   ==================================== */

/* CSS Variables */
:root {
	--primary-bg: #0f141a;
	--secondary-bg: #1a2332;
	--border-color: #2a3440;
	--accent-cyan: #00ffaa;
	--text-light: #e6f8ff;
	--text-muted: #a8b3c2;
	--card-hover: #1f2937;
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
	--transition-fast: 0.2s ease;
	--transition-normal: 0.3s ease;
}

/* ====================================
   CONTAINER & LAYOUT
   ==================================== */

.raid-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

/* ====================================
   HEADER
   ==================================== */

.raid-header {
	text-align: center;
	margin-bottom: 48px;
}

.raid-logo {
	font-size: 64px;
	margin-bottom: 16px;
	animation: float 3s ease-in-out infinite;
}

.raid-title {
	font-size: 42px;
	font-weight: 700;
	color: var(--text-light);
	margin: 0 0 12px 0;
	background: linear-gradient(135deg, var(--accent-cyan), #00d4ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 30px rgba(0, 255, 170, 0.3);
}

.raid-subtitle {
	font-size: 16px;
	color: var(--text-muted);
	margin: 0;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

/* ====================================
   NAVIGATION CARDS GRID
   ==================================== */

.raid-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	margin-bottom: 48px;
}

.raid-nav-card {
	background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 32px;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: all var(--transition-normal);
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-md);
}

.raid-nav-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0, 255, 170, 0.05) 0%, transparent 100%);
	opacity: 0;
	transition: opacity var(--transition-normal);
}

.raid-nav-card:hover {
	transform: translateY(-8px);
	border-color: var(--accent-cyan);
	box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 255, 170, 0.3);
}

.raid-nav-card:hover::before {
	opacity: 1;
}

.raid-card-icon {
	font-size: 64px;
	margin-bottom: 20px;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
	transition: transform var(--transition-normal);
}

.raid-nav-card:hover .raid-card-icon {
	transform: scale(1.1) rotate(5deg);
}

.raid-card-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-light);
	margin: 0 0 12px 0;
}

.raid-card-description {
	font-size: 14px;
	color: var(--text-muted);
	margin: 0 0 20px 0;
	line-height: 1.6;
}

.raid-card-arrow {
	font-size: 24px;
	color: var(--accent-cyan);
	margin-top: auto;
	transition: transform var(--transition-fast);
}

.raid-nav-card:hover .raid-card-arrow {
	transform: translateX(8px);
}

/* ====================================
   INFO CARD
   ==================================== */

.raid-info-card {
	background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 32px;
	margin-bottom: 48px;
	box-shadow: var(--shadow-md);
}

.raid-info-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--border-color);
}

.raid-info-icon {
	font-size: 32px;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.raid-info-header h3 {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-light);
	margin: 0;
}

.raid-info-body {
	color: var(--text-light);
}

.raid-info-body p {
	font-size: 15px;
	line-height: 1.8;
	color: var(--text-muted);
	margin: 0 0 20px 0;
}

.raid-info-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.raid-info-list li {
	font-size: 15px;
	color: var(--text-light);
	padding: 12px 0;
	border-bottom: 1px solid rgba(42, 52, 64, 0.5);
	display: flex;
	align-items: center;
}

.raid-info-list li:last-child {
	border-bottom: none;
}

.raid-info-list li::before {
	content: '⚔️';
	margin-right: 12px;
	font-size: 18px;
	flex-shrink: 0;
}

.raid-info-list li strong {
	color: var(--accent-cyan);
	margin-right: 8px;
}

/* ====================================
   QUICK LINKS
   ==================================== */

.raid-quick-links {
	background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 32px;
	box-shadow: var(--shadow-md);
}

.raid-quick-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-light);
	margin: 0 0 20px 0;
	text-align: center;
}

.raid-links-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 16px;
}

.raid-quick-link {
	background: rgba(26, 35, 50, 0.5);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 16px;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	transition: all var(--transition-fast);
	color: var(--text-light);
	font-size: 14px;
	font-weight: 600;
}

.raid-quick-link:hover {
	background: rgba(26, 35, 50, 0.8);
	border-color: var(--accent-cyan);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 255, 170, 0.2);
}

.quick-link-icon {
	font-size: 28px;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* ====================================
   ANIMATIONS
   ==================================== */

@keyframes fadeInScale {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

.fade-in-scale {
	animation: fadeInScale 0.5s ease-out;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

/* Tablet */
@media (max-width: 1024px) {
	.raid-container {
		padding: 32px 16px;
	}
	
	.raid-header {
		margin-bottom: 40px;
	}
	
	.raid-title {
		font-size: 36px;
	}
	
	.raid-logo {
		font-size: 56px;
	}
	
	.raid-cards-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-bottom: 40px;
	}
	
	.raid-nav-card {
		padding: 28px;
	}
}

/* Mobile Large */
@media (max-width: 768px) {
	.raid-container {
		padding: 24px 16px;
	}
	
	.raid-header {
		margin-bottom: 32px;
	}
	
	.raid-title {
		font-size: 32px;
	}
	
	.raid-subtitle {
		font-size: 14px;
	}
	
	.raid-logo {
		font-size: 48px;
	}
	
	.raid-cards-grid {
		gap: 16px;
		margin-bottom: 32px;
	}
	
	.raid-nav-card {
		padding: 24px;
	}
	
	.raid-card-icon {
		font-size: 56px;
	}
	
	.raid-card-title {
		font-size: 20px;
	}
	
	.raid-info-card,
	.raid-quick-links {
		padding: 24px;
		margin-bottom: 32px;
	}
	
	.raid-links-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
}

/* Mobile Small */
@media (max-width: 480px) {
	.raid-container {
		padding: 20px 12px;
	}
	
	.raid-header {
		margin-bottom: 24px;
	}
	
	.raid-title {
		font-size: 28px;
	}
	
	.raid-subtitle {
		font-size: 13px;
	}
	
	.raid-logo {
		font-size: 40px;
	}
	
	.raid-cards-grid {
		gap: 12px;
		margin-bottom: 24px;
	}
	
	.raid-nav-card {
		padding: 20px;
	}
	
	.raid-card-icon {
		font-size: 48px;
	}
	
	.raid-card-title {
		font-size: 18px;
	}
	
	.raid-card-description {
		font-size: 13px;
	}
	
	.raid-info-card,
	.raid-quick-links {
		padding: 20px;
		margin-bottom: 24px;
	}
	
	.raid-info-header h3 {
		font-size: 20px;
	}
	
	.raid-info-body p,
	.raid-info-list li {
		font-size: 14px;
	}
	
	.raid-links-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	
	.raid-quick-link {
		padding: 14px;
	}
}

/* ====================================
   ACCESSIBILITY
   ==================================== */

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Focus states for keyboard navigation */
.raid-nav-card:focus {
	outline: 2px solid var(--accent-cyan);
	outline-offset: 2px;
}

.raid-quick-link:focus {
	outline: 2px solid var(--accent-cyan);
	outline-offset: 2px;
}
