/* ========================================================== */
/*   Темная сине-фиолетовая тема - Полная ширина              */
/* ========================================================== */

:root {
	--primary-color: #6366f1;
	--primary-dark: #4f46e5;
	--primary-light: #818cf8;
	--secondary-color: #8b5cf6;
	--accent-color: #a78bfa;
	--gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--gradient-2: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
	--gradient-3: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
	--gradient-dark: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e293b 100%);
	--text-primary: #ffffff;
	--text-secondary: #cbd5e1;
	--text-light: #94a3b8;
	--bg-dark: #0f172a;
	--bg-darker: #020617;
	--bg-light: #1e293b;
	--border-color: rgba(148, 163, 184, 0.2);
	--shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
	--shadow-md: 0 4px 12px rgba(99, 102, 241, 0.3);
	--shadow-lg: 0 10px 30px rgba(99, 102, 241, 0.4);
	--shadow-xl: 0 20px 50px rgba(99, 102, 241, 0.5);
	--shadow-glow: 0 0 30px rgba(139, 92, 246, 0.5);
	--radius: 12px;
	--radius-lg: 20px;
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================================== */
/*   Общие стили - С высокой специфичностью                    */
/* ========================================================== */
html {
	-webkit-overflow-scrolling: touch !important;
}

html,
body,
body.body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
	color: var(--text-primary) !important;
	line-height: 1.7 !important;
	-webkit-font-smoothing: antialiased !important;
	-moz-osx-font-smoothing: grayscale !important;
	background: var(--bg-dark) !important;
	background-image: 
		radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
		radial-gradient(at 100% 100%, rgba(139, 92, 246, 0.15) 0px, transparent 50%) !important;
	min-height: 100vh !important;
}

h1, h2, h3, h4, h5, h6,
h1.home-title,
h2.section-title,
h3.nominees-title {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
	font-weight: 700 !important;
	color: var(--text-primary) !important;
	margin-bottom: 1rem !important;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

h1 { 
	font-size: 3rem; 
	line-height: 1.2; 
	background: var(--gradient-2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

h2 { 
	font-size: 2.5rem; 
	line-height: 1.3; 
}

h3 { 
	font-size: 1.875rem; 
	line-height: 1.4; 
}

p,
.section-subtitle,
.home-subtitle,
div.section-subtitle,
div.home-subtitle {
	font-size: 1.125rem !important;
	line-height: 1.8 !important;
	color: var(--text-secondary) !important;
	margin-bottom: 1.5rem !important;
}

a {
	color: var(--primary-light);
	transition: var(--transition);
	text-decoration: none;
}

a:hover {
	color: var(--accent-color);
	text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/* ========================================================== */
/*   Навигация - Темная с эффектами - Принудительное         */
/* ========================================================== */
.navbar-fixed-top,
nav.navbar-fixed-top,
.navbar.navbar-default.navbar-fixed-top {
	background: rgba(15, 23, 42, 0.8) !important;
	backdrop-filter: blur(20px) !important;
	-webkit-backdrop-filter: blur(20px) !important;
	border-bottom: 1px solid var(--border-color) !important;
	box-shadow: var(--shadow-md) !important;
	transition: var(--transition) !important;
	padding: 0 !important;
	display: flex !important;
	align-items: center !important;
	min-height: 70px !important;
}

.navbar-fixed-top.opaque {
	background: rgba(15, 23, 42, 0.95) !important;
	box-shadow: var(--shadow-lg);
	min-height: 65px !important;
}

.navbar-header {
	display: flex !important;
	align-items: center !important;
	height: 70px !important;
}

.navbar-fixed-top.opaque .navbar-header {
	height: 65px !important;
}

.navbar-collapse {
	display: flex !important;
	align-items: center !important;
}

.navbar-default .navbar-brand {
	font-size: 1.75rem;
	font-weight: 700;
	background: var(--gradient-2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: var(--transition);
	padding: 0 !important;
	letter-spacing: -0.02em;
	display: flex !important;
	align-items: center !important;
	gap: 0.75rem !important;
	height: 100% !important;
	line-height: 1 !important;
	margin: 0 !important;
}

.navbar-default .navbar-brand .fas,
.navbar-default .navbar-brand .fa {
	color: var(--primary-light) !important;
	-webkit-text-fill-color: var(--primary-light) !important;
	font-size: 1.5rem !important;
	filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6));
	animation: trophyGlow 2s ease-in-out infinite;
}

@keyframes trophyGlow {
	0%, 100% { 
		filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6));
		transform: scale(1);
	}
	50% { 
		filter: drop-shadow(0 0 15px rgba(139, 92, 246, 1));
		transform: scale(1.05);
	}
}

.navbar-default .navbar-brand:hover {
	filter: brightness(1.2);
	transform: translateY(-1px);
}

.navbar-default .navbar-brand:hover .fas,
.navbar-default .navbar-brand:hover .fa {
	animation: trophySpin 0.6s ease;
}

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

.navbar-default .navbar-nav {
	display: flex !important;
	align-items: center !important;
	margin: 0 !important;
	height: 100% !important;
}

.navbar-default .navbar-nav > li {
	display: flex !important;
	align-items: center !important;
	height: 100% !important;
}

.navbar-default .navbar-nav > li > a {
	color: var(--text-secondary) !important;
	font-weight: 500;
	font-size: 1rem;
	padding: 0.75rem 1.25rem !important;
	border-radius: var(--radius);
	transition: var(--transition);
	margin: 0 0.5rem;
	position: relative;
	display: flex !important;
	align-items: center !important;
	height: 100% !important;
}

.navbar-default .navbar-nav > li > a:before {
	content: '';
	position: absolute;
	bottom: 0.5rem;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--gradient-2);
	transition: var(--transition);
	transform: translateX(-50%);
	border-radius: 2px;
}

.navbar-default .navbar-nav > li > a:hover {
	color: var(--text-primary) !important;
	background: rgba(99, 102, 241, 0.1);
	transform: translateY(-2px);
}

.navbar-default .navbar-nav > li > a:hover:before {
	width: 70%;
}

.navbar-default .navbar-nav > li > a.purchase {
	background: var(--gradient-2);
	color: white !important;
	margin-left: 1rem;
	padding: 0.75rem 2rem !important;
	border-radius: var(--radius);
	font-weight: 600;
	box-shadow: var(--shadow-md);
}

.navbar-default .navbar-nav > li > a.purchase:before {
	display: none;
}

.navbar-default .navbar-nav > li > a.purchase:hover {
	box-shadow: var(--shadow-glow);
	transform: translateY(-3px) scale(1.05);
	filter: brightness(1.1);
}

.navbar-toggle {
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	padding: 0.5rem;
	transition: var(--transition);
	background: rgba(99, 102, 241, 0.1);
}

.navbar-toggle:hover {
	background: rgba(99, 102, 241, 0.2);
	border-color: var(--primary-color);
	box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}

.navbar-toggle .icon-bar {
	background-color: var(--primary-light);
	transition: var(--transition);
}

/* ========================================================== */
/*   Контейнеры - На всю ширину - Переопределение             */
/* ========================================================== */
.container,
div.container,
.section-white .container,
.section-dark .container,
.section-grey .container {
	max-width: 100% !important;
	width: 100% !important;
	margin: 0 auto !important;
	padding: 0 2rem !important;
}

@media (max-width: 768px) {
	.container,
	div.container {
		padding: 0 1rem !important;
	}
}

/* ========================================================== */
/*   Секции - Темные с градиентами - Переопределение         */
/* ========================================================== */
.section-white,
div.section-white,
section.section-white {
	background: var(--bg-dark) !important;
	padding: 6rem 0 !important;
	position: relative !important;
}

.section-white:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--gradient-dark);
	opacity: 0.5;
	z-index: -1;
}

.section-dark,
div.section-dark,
section.section-dark {
	background: var(--bg-darker) !important;
	padding: 6rem 0 !important;
	position: relative !important;
	background-image: 
		radial-gradient(at 20% 50%, rgba(99, 102, 241, 0.2) 0px, transparent 50%),
		radial-gradient(at 80% 80%, rgba(139, 92, 246, 0.2) 0px, transparent 50%) !important;
}

.section-grey,
div.section-grey,
section.section-grey {
	background: var(--bg-light) !important;
	padding: 6rem 0 !important;
	position: relative !important;
}

h2.section-title,
h2.section-title.white,
.section-title,
h2.text-center {
	font-size: 3rem !important;
	font-weight: 800 !important;
	margin-bottom: 1.5rem !important;
	text-align: center !important;
	background: var(--gradient-2) !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	background-clip: text !important;
	letter-spacing: -0.03em !important;
	position: relative !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 1rem !important;
}

h2.section-title .fas,
h2.section-title .fa,
.section-title .fas,
.section-title .fa {
	color: var(--primary-light) !important;
	-webkit-text-fill-color: var(--primary-light) !important;
	font-size: 2.5rem !important;
	filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.7));
	animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
	0%, 100% { 
		filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.7));
		transform: scale(1);
	}
	50% { 
		filter: drop-shadow(0 0 20px rgba(139, 92, 246, 1));
		transform: scale(1.1);
	}
}

.section-dark h2.section-title.white,
.section-dark .section-title.white {
	color: var(--text-primary) !important;
	-webkit-text-fill-color: var(--text-primary);
	background: none;
	text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.section-subtitle,
div.section-subtitle {
	font-size: 1.25rem !important;
	color: var(--text-secondary) !important;
	line-height: 1.8 !important;
    max-width: none !important;
    width: 100% !important;
    margin: 0 0 3rem !important;
	text-align: center !important;
}

.section-dark .section-subtitle,
.section-dark div.section-subtitle {
	color: var(--text-secondary) !important;
}

.separator_wrapper_blue,
.separator_wrapper_white {
	margin: 2rem 0 3rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	position: relative;
}

.separator_wrapper_blue:before,
.separator_wrapper_blue:after,
.separator_wrapper_white:before,
.separator_wrapper_white:after {
	content: '';
	height: 2px;
	width: 80px;
	background: var(--gradient-2);
	border-radius: 2px;
	box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.separator_wrapper_white:before,
.separator_wrapper_white:after {
	background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.8), transparent);
}

.separator_wrapper_blue .fas,
.separator_wrapper_blue .fa,
.separator_wrapper_white .fas,
.separator_wrapper_white .fa,
.separator_wrapper_blue .icon-star-two,
.separator_wrapper_white .icon-star-two {
	font-size: 1.75rem !important;
	color: var(--primary-light) !important;
	animation: rotateGlow 3s ease-in-out infinite;
	filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.8));
}

.separator_wrapper_white .fas,
.separator_wrapper_white .fa,
.separator_wrapper_white .icon-star-two {
	color: var(--accent-color) !important;
}

@keyframes rotateGlow {
	0%, 100% { 
		transform: rotate(0deg) scale(1);
		filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.8));
	}
	50% { 
		transform: rotate(180deg) scale(1.1);
		filter: drop-shadow(0 0 20px rgba(139, 92, 246, 1));
	}
}

/* ========================================================== */
/*   Кнопки - С градиентами и свечением                       */
/* ========================================================== */
.btn {
	padding: 1rem 2.5rem;
	font-weight: 600;
	font-size: 1.125rem;
	border-radius: var(--radius-lg);
	transition: var(--transition);
	border: none;
	cursor: pointer;
	display: inline-block;
	text-align: center;
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.btn:hover:before {
	width: 400px;
	height: 400px;
}

.btn-white {
	background: var(--gradient-2);
	color: white;
	box-shadow: var(--shadow-md);
}

.btn-white:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-glow);
	filter: brightness(1.1);
}

.btn-white-transparent {
	background: transparent;
	color: var(--text-primary);
	border: 2px solid var(--primary-light);
	box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.btn-white-transparent:hover {
	background: var(--gradient-2);
	border-color: transparent;
	transform: translateY(-3px);
	box-shadow: var(--shadow-glow);
}

.btn-lg {
	padding: 1.25rem 3rem;
	font-size: 1.25rem;
}

/* ========================================================== */
/*   Разделитель секций                                        */
/* ========================================================== */
.section-divider {
	height: 2px;
	background: var(--gradient-2);
	border: 0;
	margin: 4rem 0;
	box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

/* ========================================================== */
/*   Главная секция (Hero) - Креативная                       */
/* ========================================================== */
.home-wrapper,
section#home_wrapper,
section.home-wrapper {
	position: relative !important;
	min-height: 70vh !important;
	max-height: 90vh !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: var(--bg-dark) !important;
	background-image: 
		radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
		linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
	padding: 4rem 2rem !important;
	overflow: hidden !important;
}

.home-wrapper:before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: 
		radial-gradient(circle, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
	background-size: 50px 50px;
	animation: moveBackground 20s linear infinite;
	opacity: 0.3;
}

@keyframes moveBackground {
	0% { transform: translate(0, 0); }
	100% { transform: translate(50px, 50px); }
}

.home-title {
	font-size: 4rem;
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 2rem;
	background: var(--gradient-2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.03em;
	text-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
	position: relative;
	z-index: 1;
	animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
	0%, 100% { 
		filter: brightness(1);
	}
	50% { 
		filter: brightness(1.2);
	}
}

.home-subtitle {
	font-size: 1.5rem;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 3rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	font-weight: 400;
	position: relative;
	z-index: 1;
}

/* ========================================================== */
/*   Фото слайдер - Темный с эффектами                        */
/* ========================================================== */
.photo-slider-container {
	position: relative;
	max-width: 1200px;
	margin: 4rem auto;
	width: 100%;
	padding: 0 2rem;
}

.photo-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-xl);
	background: var(--bg-light);
	border: 1px solid var(--border-color);
	position: relative;
}

.photo-slider:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--gradient-2);
	opacity: 0.1;
	z-index: 0;
	pointer-events: none;
}

.photo-slide {
	display: none;
	width: 100%;
	animation: slideFadeIn 0.6s ease;
	position: relative;
	z-index: 1;
}

.photo-slide.active {
	display: block;
}

@keyframes slideFadeIn {
	from { 
		opacity: 0; 
		transform: scale(1.05);
		filter: blur(5px);
	}
	to { 
		opacity: 1; 
		transform: scale(1);
		filter: blur(0);
	}
}

.photo-slide img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.photo-slider-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	margin-top: 2rem;
}

.photo-slider-btn {
	background: var(--gradient-2);
	color: white;
	border: none;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	font-size: 1.5rem;
	cursor: pointer;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	padding: 0;
	box-shadow: var(--shadow-md);
	position: relative;
	overflow: hidden;
}

.photo-slider-btn:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.4s, height 0.4s;
}

.photo-slider-btn:hover {
	transform: translateY(-3px) scale(1.1);
	box-shadow: var(--shadow-glow);
	filter: brightness(1.2);
}

.photo-slider-btn:hover:before {
	width: 200px;
	height: 200px;
}

.photo-slider-btn:active {
	transform: translateY(-1px) scale(1.05);
}

.photo-slider-counter {
	font-size: 1.125rem;
	color: var(--text-primary);
	font-weight: 600;
	min-width: 80px;
	text-align: center;
	padding: 0.75rem 1.5rem;
	background: rgba(99, 102, 241, 0.2);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-color);
	backdrop-filter: blur(10px);
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 0.5rem !important;
}

.photo-slider-counter .fas,
.photo-slider-counter .fa {
	color: var(--primary-light) !important;
	font-size: 1rem !important;
}

/* ========================================================== */
/*   Таблица номинантов - Темная креативная                   */
/* ========================================================== */
.nominees-section {
	margin: 5rem 0;
	padding: 4rem 0;
	width: 100%;
}

.nominees-title {
	font-size: 2.75rem;
	font-weight: 800;
	margin-bottom: 3rem;
	text-align: center;
	background: var(--gradient-2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.02em;
	position: relative;
	padding-bottom: 1.5rem;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 1rem !important;
}

.nominees-title .fas,
.nominees-title .fa {
	color: var(--primary-light) !important;
	-webkit-text-fill-color: var(--primary-light) !important;
	font-size: 2.25rem !important;
	filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.8));
	animation: awardBounce 2s ease-in-out infinite;
}

@keyframes awardBounce {
	0%, 100% { 
		transform: translateY(0) rotate(0deg);
		filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.8));
	}
	50% { 
		transform: translateY(-5px) rotate(5deg);
		filter: drop-shadow(0 0 20px rgba(139, 92, 246, 1));
	}
}

.nominees-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: var(--gradient-2);
	border-radius: 4px;
	box-shadow: 0 0 20px rgba(99, 102, 241, 0.8);
}

.nominees-table-wrapper {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin: 0 auto;
	max-width: 100%;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-xl);
	border: 1px solid var(--border-color);
	background: var(--bg-light);
	backdrop-filter: blur(10px);
	overflow-y: hidden;
}

.nominees-table-wrapper::-webkit-scrollbar {
	height: 8px;
}

.nominees-table-wrapper::-webkit-scrollbar-track {
	background: rgba(30, 41, 59, 0.5);
	border-radius: 4px;
}

.nominees-table-wrapper::-webkit-scrollbar-thumb {
	background: var(--gradient-2);
	border-radius: 4px;
}

.nominees-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    background: transparent;
    table-layout: fixed;
}

.nominees-table thead {
	background: var(--gradient-2);
	color: #fff;
	position: relative;
}

.nominees-table thead:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: rgba(255, 255, 255, 0.3);
}

.nominees-table th {
	padding: 1.5rem 2rem !important;
	text-align: left !important;
	font-weight: 700 !important;
	font-size: 1rem !important;
	text-transform: uppercase !important;
	letter-spacing: 1px !important;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
	vertical-align: middle !important;
}

/* Ширины столбцов: Номинация — 1/3, Номинант — 2/3 */
.nominees-table th.nominees-col-nomination { width: 33.333% !important; }
.nominees-table th.nominees-col-nominee { width: 66.667% !important; }
.nominees-table td.nominees-nomination { width: 33.333% !important; }
.nominees-table td.nominees-nominee { width: 66.667% !important; }

.nominees-table th .th-content {
	display: inline-flex !important;
	align-items: center !important;
	gap: 0.75rem !important;
}

.nominees-table th .fas,
.nominees-table th .fa {
	font-size: 1.125rem !important;
	opacity: 0.9 !important;
}

.nominees-table tbody tr {
	border-bottom: 1px solid var(--border-color);
	transition: var(--transition);
	background: transparent;
}

.nominees-table tbody tr:last-child {
	border-bottom: none;
}

.nominees-table tbody tr:hover {
	background: rgba(99, 102, 241, 0.15) !important;
	box-shadow: inset 4px 0 0 var(--primary-color), 0 2px 8px rgba(99, 102, 241, 0.2) !important;
}

.nominees-table tbody tr.even {
	background: rgba(30, 41, 59, 0.5);
}

.nominees-table tbody tr.odd {
	background: rgba(15, 23, 42, 0.5);
}

.nominees-table tbody tr.even:hover,
.nominees-table tbody tr.odd:hover {
	background: rgba(99, 102, 241, 0.2);
}

.nominees-table td {
	padding: 1.5rem 2rem;
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--text-secondary);
}

.nominees-nomination {
	font-weight: 600;
	color: var(--primary-light);
}

.nominees-nominee {
	color: var(--text-primary);
	font-weight: 500;
}

/* ========================================================== */
/*   Информация о мероприятии (дата и место)                  */
/* ========================================================== */
.event-info-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	margin: 2.5rem 0 3rem;
	padding: 2rem;
	background: rgba(99, 102, 241, 0.1);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-color);
	backdrop-filter: blur(10px);
}

.event-info-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.5rem;
	background: rgba(99, 102, 241, 0.15);
	border-radius: var(--radius);
	border: 1px solid rgba(99, 102, 241, 0.3);
	transition: var(--transition);
	min-width: 200px;
	justify-content: center;
}

.event-info-item:hover {
	background: rgba(99, 102, 241, 0.25);
	border-color: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.event-info-item .fas,
.event-info-item .fa {
	font-size: 1.5rem !important;
	color: var(--primary-light) !important;
	filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6));
	min-width: 24px;
	text-align: center;
}

.event-info-item .fa-calendar-alt {
	color: var(--accent-color) !important;
}

.event-info-item .fa-map-marker-alt {
	color: var(--primary-light) !important;
}

.event-info-text {
	font-size: 1.125rem !important;
	color: var(--text-primary) !important;
	font-weight: 500 !important;
	letter-spacing: 0.02em;
}

.event-detail-text {
	margin: 2.5rem 0;
	padding: 2rem;
	background: rgba(30, 41, 59, 0.3);
	border-radius: var(--radius-lg);
	border-left: 4px solid var(--primary-color);
	line-height: 1.8;
	color: var(--text-secondary);
	font-size: 1.125rem;
}

.event-detail-text p {
	margin-bottom: 1.25rem;
	color: var(--text-secondary) !important;
}

.event-detail-text p:last-child {
	margin-bottom: 0;
}

/* ========================================================== */
/*   Анимации                                                  */
/* ========================================================== */
@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.wow.fadeIn {
	animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================================== */
/*   Скрытие кнопок и дополнительные стили                     */
/* ========================================================== */
.hidden-btn,
a.btn.hidden-btn,
.btn.hidden-btn,
.btn-margin.hidden-btn {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
}

.padding-top-80 {
	padding-top: 2rem !important;
}

/* ========================================================== */
/*   Адаптивность                                              */
/* ========================================================== */
@media (max-width: 768px) {
	h1 { font-size: 2.5rem; }
	h2 { font-size: 2rem; }
	h2.section-title { font-size: 2.25rem; }
	
	.home-title {
		font-size: 2.75rem;
		line-height: 1.2;
	}

	.home-subtitle {
		font-size: 1.25rem;
	}

	.section-white,
	.section-dark,
	.section-grey {
		padding: 1rem 0;
	}

	.photo-slider-btn {
		width: 48px;
		height: 48px;
		font-size: 1.25rem;
	}

	.nominees-title {
		font-size: 2.25rem;
		margin-bottom: 0.5rem !important;
	}
	
	h2.section-title {
		margin-bottom: 0.5rem !important;
	}
	
	.nominees-title .fas,
	.nominees-title .fa {
		font-size: 1.875rem !important;
	}
	
	h2.section-title .fas,
	h2.section-title .fa,
	.section-title .fas,
	.section-title .fa {
		font-size: 2rem !important;
	}
	
	.navbar-default .navbar-brand .fas,
	.navbar-default .navbar-brand .fa {
		font-size: inherit !important;
	}

	/* Мобильная версия таблицы номинантов */
	.nominees-table thead { display: none !important; }
	.nominees-table, 
	.nominees-table tbody, 
	.nominees-table tr, 
	.nominees-table td { display: block; width: 100%; }
	.nominees-table tbody tr { padding: 1rem 0; }
	.nominees-table td { padding: 0.5rem 1rem !important; position: relative; }
	.nominees-table td:nth-child(1)::before {
		content: 'Номинация';
		display: block;
		font-size: 0.875rem;
		text-transform: uppercase;
		letter-spacing: 0.06em;
		color: var(--text-muted);
		margin-bottom: 0.25rem;
	}
	.nominees-table td:nth-child(2)::before {
		content: 'Номинант';
		display: block;
		font-size: 0.875rem;
		text-transform: uppercase;
		letter-spacing: 0.06em;
		color: var(--text-muted);
		margin-bottom: 0.25rem;
	}
	
	.navbar-header {
		height: 60px !important;
	}
	
	.navbar-fixed-top {
		min-height: 60px !important;
	}
	
	.navbar-collapse {
		background: rgba(15, 23, 42, 0.98) !important;
		backdrop-filter: blur(20px) !important;
		border-top: 1px solid var(--border-color);
		margin-top: 0;
		padding: 1rem 0;
	}
	
	.navbar-default .navbar-nav > li {
		height: auto !important;
	}
	
	.navbar-default .navbar-nav > li > a {
		height: auto !important;
		padding: 1rem 1.25rem !important;
	}

    .nominees-table {
        width: 100% !important;
    }

    .nominees-table th,
    .nominees-table td {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
	
	.event-info-container {
		flex-direction: column;
		gap: 0.75rem;
		padding: 1rem;
		margin-bottom: 0.5rem !important;
	}
	
	.event-info-item {
		min-width: 100%;
		width: 100%;
		justify-content: flex-start;
	}
	
	.event-detail-text {
		padding: 1rem;
		font-size: 1rem;
		margin-top: 0.5rem !important;
		margin-bottom: 0.5rem !important;
	}
}

@media (max-width: 480px) {
	.home-title {
		font-size: 2rem;
		line-height: 1.1;
	}

	.navbar-default .navbar-brand {
		font-size: 1.5rem !important;
	}

    .nominees-table th,
    .nominees-table td {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
    }
}

/* ========================================================== */
/*   Глобальное увеличение размеров шрифтов                   */
/*   (перегружает размеры из старых стилей с px)              */
/* ========================================================== */
html {
	font-size: 18px; /* было 16px по умолчанию */
}

body {
	font-size: 18px !important;
}

/* Базовые текстовые элементы */
ul, ol,
ul li, ol li {
	font-size: 16px !important; /* было 14px */
	line-height: 30px !important; /* немного больше межстрочный */
}

p {
	font-size: 18px !important; /* было 16px */
	line-height: 30px !important;
}

/* Заголовки */
h1 { font-size: 48px !important; }
h2 { font-size: 38px !important; }
h3 { font-size: 32px !important; }
h4 { font-size: 28px !important; }
h5 { font-size: 22px !important; }
h6 { font-size: 20px !important; }

/* Навигация: вернуть исходные размеры шрифта темы */
.navbar-default .navbar-brand { font-size: 18px !important; }
.navbar-default .navbar-nav > li > a { font-size: 14px !important; }
/* Размер иконки в бренде как у текста */
.navbar-default .navbar-brand .fas,
.navbar-default .navbar-brand .fa { font-size: inherit !important; }

/* Более компактные отступы в меню, чтобы всё входило в одну строку */
.navbar-default .navbar-brand { padding: 10px 10px !important; }
.navbar-default .navbar-nav > li > a { padding: 10px 8px !important; margin: 0 !important; }
.navbar-default .navbar-nav > li > a.purchase { margin-left: 8px !important; margin-right: 8px !important; padding: 0 16px !important; }

/* Чуть компактнее общая высота шапки, без потери кликабельности */
.navbar-header { height: 60px !important; }
.navbar-fixed-top { min-height: 60px !important; }

/* ========================================================== */
/*   Компактные вертикальные отступы                          */
/* ========================================================== */
/* Уменьшаем отступы секций */
.section-white,
.section-dark,
.section-grey {
	padding-top: 1.5rem !important;
	padding-bottom: 1.5rem !important;
}

/* Компактные отступы для блоков внутри секций */
.event-info-container {
	margin-bottom: 0.75rem !important;
}

.event-detail-text {
	margin-top: 0.75rem !important;
	margin-bottom: 0.75rem !important;
	padding: 1rem !important;
}

.nominees-section {
	margin-top: 1rem !important;
	margin-bottom: 1rem !important;
}

h2.section-title {
	margin-bottom: 0.5rem !important;
}

.separator_wrapper_blue,
.separator_wrapper_white {
	margin: 0.5rem 0 0.75rem !important;
}

/* Компактные отступы для параграфов и списков */
p,
.section-subtitle {
	margin-bottom: 0.75rem !important;
}

/* ========================================================== */
/*   Отступ первой секции, чтобы заголовок не закрывался     */
/*   фиксированным меню (высота navbar ~60px)                 */
/* ========================================================== */
/* Для всех размеров экранов */
body > section:first-of-type,
body > .section-white:first-of-type,
body > .section-dark:first-of-type,
body > .section-grey:first-of-type,
.section-white:first-child,
.section-dark:first-child,
.section-grey:first-child {
	padding-top: 4rem !important; /* 60px (navbar) + небольшой отступ */
}

@media (max-width: 768px) {
	body > section:first-of-type,
	body > .section-white:first-of-type,
	body > .section-dark:first-of-type,
	body > .section-grey:first-of-type,
	.section-white:first-child,
	.section-dark:first-child,
	.section-grey:first-child {
		padding-top: 3.5rem !important;
	}
}

@media (max-width: 480px) {
	body > section:first-of-type,
	body > .section-white:first-of-type,
	body > .section-dark:first-of-type,
	body > .section-grey:first-of-type,
	.section-white:first-child,
	.section-dark:first-child,
	.section-grey:first-child {
		padding-top: 3.25rem !important;
	}
}

/* ========================================================== */
/*   Логотип над заголовком страницы                          */
/* ========================================================== */
.page-logo-container {
	text-align: center;
	margin-bottom: 1.5rem;
	padding: 0 1rem;
}

.page-logo {
	max-width: 200px;
	height: auto;
	display: inline-block;
	filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.3));
	transition: transform 0.3s ease, filter 0.3s ease;
}

.page-logo:hover {
	transform: scale(1.05);
	filter: drop-shadow(0 6px 16px rgba(99, 102, 241, 0.5));
}

@media (max-width: 768px) {
	.page-logo {
		max-width: 150px;
	}
	.page-logo-container {
		margin-bottom: 1rem;
	}
}

@media (max-width: 480px) {
	.page-logo {
		max-width: 120px;
	}
	.page-logo-container {
		margin-bottom: 0.75rem;
	}
}
