/* ------------------------------------------------------------------------------
 	Author: WebThemez
/* ------------------------------------------------------------------------------
	Typography
-------------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Outfit:wght@300;400;600;700;900&family=VT323&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,600,700'); 
p {
	font-size: 14px;
	line-height: 22.4px;
	color: #6c7279;
}
h1 {
	font-size: 65px;
	color: #2d3033;
}
h2 {
	font-size: 40px;
	color: #2d3033;
}
h3 {
	font-size: 28px;
	color: #2d3033;
	font-weight: 300;
}
h4 {
	font-size: 22px;
	color: #b1b1b1;
	font-weight: 400;
}
h5 {
	font-size: 14px;
	color: #2d3033;
	text-transform: uppercase;
	font-weight: 700;
}
.btn {
	background-color: #000000;
	color: rgba(255, 255, 255, 0.72);
	font-size: 16px;
	font-weight: 600;
	border: 0;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	display: inline-block;
	text-transform: uppercase;
	border: 1px solid #fff;
	margin-top: 20px;
}
.btn:hover, .btn:focus {
	background-color: #cd003a;
	color: #fff;
}
.btn-large {
	padding: 15px 40px;
	background: #000000;
}
#map-overlay {
    height:400px;
    margin-top:-405px;
    background-color: #010101;
    padding:40px;
    color: #fff;
}
/* ------------------------------------------------------------------------------
	Global Styles
-------------------------------------------------------------------------------*/
a {
	color: #e84545;
}
a:hover, a:focus {
	text-decoration: none;
	-moz-transition: background-color, color, 0.3s;
	-o-transition: background-color, color, 0.3s;
	-webkit-transition: background-color, color, 0.3s;
	transition: background-color, color, 0.3s;
}
body {
	font-family: "Open Sans", Arial, sans-serif;
	font-weight: 400;
	color: #6c7279;
	background: #010101;
}
ul, ol {
	margin: 0;
	padding: 0;
}
ul li {
	list-style: none;
}
.section {
	padding: 100px 0;
}
.no-padding {
	padding: 0;
}
.no-gutter [class*=col-] {
	padding-right: 0;
	padding-left: 0;
}
.space {
	margin-top: 60px;
}
/* ------------------------------------------------------------------------------
	Header
-------------------------------------------------------------------------------*/
#header, #header.fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 9999;
	background-color: rgba(9, 10, 15, 0.95) !important;
	border-bottom: 2px solid var(--retro-cyan, #00f0ff) !important;
	box-shadow: 0 4px 20px rgba(0, 240, 255, 0.25);
	backdrop-filter: blur(10px);
	min-height: auto;
}
#header .header-content, #header.fixed .header-content {
	margin: 0 auto;
	max-width: 1170px;
	padding: 12px 20px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	border-bottom: 0;
}
#header .logo {
	float: none;
	position: static;
	display: inline-flex;
	align-items: center;
	background: transparent;
	padding: 0;
}
#header .logo a, #header.fixed .header-content .logo a {
	padding-top: 0;
	display: inline-block;
	color: #ffffff;
}
.navigation {
	float: none;
	display: flex;
	align-items: center;
}
.navigation .primary-nav {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}
.navigation li {
	display: inline-block;
	margin: 0 4px;
}
.navigation a {
	font-family: 'Press Start 2P', cursive, monospace;
	font-size: 11px !important;
	color: #ffffff !important;
	transition: all 0.2s ease-in-out;
	padding: 8px 12px;
	margin-left: 0;
	text-transform: uppercase;
	position: relative;
}
.navigation a:hover,
.navigation a.active {
	color: #00f0ff !important;
	text-shadow: 0 0 8px #00f0ff;
}
.nav-toggle {
	display: none;
	height: 44px;
	width: 44px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 99999;
	background: transparent;
}
.nav-toggle:before, .nav-toggle:after {
	border-radius: 50%;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-webkit-transition-property: -webkit-transform;
	transition-property: transform;
}
.nav-toggle:before {
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
	-moz-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	color: #f05da3;
}
.nav-toggle:after {
	background-color: transparent;
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-webkit-transform: scale(0);
	transform: scale(0);
	-moz-transition-duration: 0s;
	-o-transition-duration: 0s;
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
	color: #f05da3;
}
.nav-toggle span {
	bottom: auto;
	display: inline-block;
	height: 3px;
	left: 50%;
	position: absolute;
	right: auto;
	top: 50%;
	width: 18px;
	z-index: 10;
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
.nav-toggle span:before, .nav-toggle span:after {
	background-color: #fff;
	content: "";
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-transition: -moz-transform 0.3s;
	-o-transition: -o-transform 0.3s;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}
.nav-toggle span:before {
	-moz-transform: translateY(-6px) rotate(0deg);
	-ms-transform: translateY(-6px) rotate(0deg);
	-webkit-transform: translateY(-6px) rotate(0deg);
	transform: translateY(-6px) rotate(0deg);
}
.nav-toggle span:after {
	-moz-transform: translateY(6px) rotate(0deg);
	-ms-transform: translateY(6px) rotate(0deg);
	-webkit-transform: translateY(6px) rotate(0deg);
	transform: translateY(6px) rotate(0deg);
}
.nav-toggle.close-nav:before {
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-webkit-transform: scale(0);
	transform: scale(0);
}
.nav-toggle.close-nav:after {
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
}
.nav-toggle.close-nav span {
	background-color: rgba(255, 255, 255, 0);
}
.nav-toggle.close-nav span:before, .nav-toggle.close-nav span:after {
	background-color: #fff;
}
.nav-toggle.close-nav span:before {
	-moz-transform: translateY(0) rotate(45deg);
	-ms-transform: translateY(0) rotate(45deg);
	-webkit-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
}
.nav-toggle.close-nav span:after {
	-moz-transform: translateY(0) rotate(-45deg);
	-ms-transform: translateY(0) rotate(-45deg);
	-webkit-transform: translateY(0) rotate(-45deg);
	transform: translateY(0) rotate(-45deg);
}
/* ------------------------------------------------------------------------------
	Banner
-------------------------------------------------------------------------------*/

.banner {
	background-image: url(../images/banner.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	-moz-background-size: cover;
	-o-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
	min-height: 750px;
}
.banner-text {
	margin-top: 45%;
	color: #fff;
	float: left;
	padding: 0;
	border-radius: 15px 0 15px;
	left: 0px;
	text-align: left;
	font-size: 22px;
	font-weight: normal;
}
.banner-text h1 {
	color: ghostwhite;
	font-family: 'Baloo Bhaijaan', cursive;
	font-size: 100px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: left;
	margin: 0;
	padding-bottom: 0;
	font-style: normal;
	text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
}
.banner-text p {
	color: #ffffff;
	font-size: 50px;
	font-weight: 700;
	line-height: normal;
	margin-top: 10px;
	margin-bottom: 11px;
	text-align: left;
	font-style: italic;
	text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
}
/* ==========================================================================
	$intro
========================================================================== */
.intro {
	background-color: #000;
	/* color: #000; */
}
.intro h3 {
	color: #ffffff;
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 35px;
	font-weight: bold;
}
.intro p {
	color: rgba(255, 255, 255, 0.58);
	font-weight: 400;
	font-size: 15px;
}
/* -----------------------------------------------------------------------------
Common Styles
------------------------------------------------------------------------------- */
.section-header{	
text-align: center;	
padding-bottom: 30px;
}
.section-header h2{
	
color: #fff;
	
font-weight: bold;
}
.section-header p{
	
color: #fff;
}
.package h5{
	color:#fff;
}

/* ------------------------------------------------------------------------------
	 Serives
-------------------------------------------------------------------------------*/
.service-section {
	padding: 100px 0;
	color: #fff;
}
.services {
	margin-bottom: 110px;
	background: transparent;
	color: #fff;
} 
#services{
	position: relative;
	background: #fff;
}
#services:before{
	content:'';
	position:absolute;
	width: 500px;
	height: 100%;
	background:#ce0518;
	border-radius: 50%;
	left: -25%;
	z-index: 0;
	top: 0%;
	}
.services .section-header h2{color: #404040;font-weight: bold;}
.services .section-header p{ color: #404040;}
.services-content {
	padding: 30px 30px 20px;
	/* margin-top: 30px; */
	border: 1px solid rgba(60, 60, 60, 0.53);
	/* border-radius: 10px; */
	text-align: center;
	color: #fff;
	background: #fff;
}
.services-content p{
	/* color: rgba(255, 255, 255, 0.81); */
}
.services .icon {
	color: #da1b2d;
	font-size: 50px;
	padding-top: 26px;
	display: inline-block;
	border-radius: 50%;
	height: 90px;
	width: 90px;
	font-weight: 600;
	margin-bottom: 15px;
}
#Playlist{
	padding:100px 0;
	color: #fff;
}

.yt-video {
	text-align: center;
	padding: 15px;
}

.v-footer {
	text-align: center;
	padding: 15px;
}

img.band-member {
	width: 250px;
	height: 250px;
	border-radius: 5%;
	border: 2px solid #ffffff;
	cursor: pointer;
}

.band-member-div h4, .band-member-div h5 {
    color: white;
}

.bio-details {
	display: none;
}

.bio-details-header p, .bio-details-header h2{
    color: ghostwhite;
    text-align: center;
}

.bio-details-text p {
    color: ghostwhite;
    text-align: justify;
}

.bio-details-close {
    color: ghostwhite;
    cursor: pointer;
    text-align: right;
}

.bio-star img {
    width: 20px;
    height: 20px;
}

.bio-summary-element {
    font-size: 18px;
    font-weight: bold;
}

.merch-img img {
	width: 150px;
	height: 170px;
}

.event {
	text-align: center; 
	margin-bottom: 15px; 
	color: black;
}

/* ------------------------------------------------------------------------------
	 gallery
-------------------------------------------------------------------------------*/
.work {
	-moz-box-shadow: 0 0 0 1px #fff;
	/* -webkit-box-shadow: 0 0 0 1px #fff; */
	/* box-shadow: 0 0 0 1px #fff; */
	overflow: hidden;
	position: relative;
}
.work img {
	width: 100%;
	height: 100%;
}
.work .overlay {
	background: rgba(218, 27, 45, 0.9);
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
	-moz-transition: opacity, 0.3s;
	-o-transition: opacity, 0.3s;
	-webkit-transition: opacity, 0.3s;
	transition: opacity, 0.3s;
}
.work .overlay-caption {
	position: absolute;
	text-align: center;
	top: 50%;
	width: 100%;
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.work h5, .work p, .work img {
	-moz-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	-webkit-transition: all, 0.5s;
	transition: all, 0.5s;
}
.work h5, .work p {
	color: #fff;
	margin: 0;
	opacity: 0;
}
.work span {
	font-size: 45px;
}
.work h5 {
	margin-bottom: 5px;
	-moz-transform: translate3d(0, -200%, 0);
	-ms-transform: translate3d(0, -200%, 0);
	-webkit-transform: translate3d(0, -200%, 0);
	transform: translate3d(0, -200%, 0);
}
.work p {
	-moz-transform: translate3d(0, 200%, 0);
	-ms-transform: translate3d(0, 200%, 0);
	-webkit-transform: translate3d(0, 200%, 0);
	transform: translate3d(0, 200%, 0);
}

.work-box {
	padding: 10px;
}

.work-box:hover img {
	-moz-transform: none;
	-ms-transform: none;
	-webkit-transform: none;
	transform: none;
}
.work-box:hover .overlay {
	opacity: 1;
}
.work-box:hover .overlay h5, .work-box:hover .overlay p {
	opacity: 1;
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
/* ------------------------------------------------------------------------------
	 package
-------------------------------------------------------------------------------*/
.packageList {
	padding: 80px 0;
	background: transparent;
	clear: both;
	position: relative;
	width: 100%;
}
h5 {
    font-size: 1.286em;
    margin: 0.3em 0;
    text-transform: capitalize;
    color: #010101;
    font-weight: bold;
    margin-bottom: 18px;
}
ul.list-default {
    list-style-type: none;
    padding: 0;
}
ul.list-default li {
    padding: 0.5em 0 0.5em 2em;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.package {
	/* border: 1px solid rgba(0, 0, 0, 0.1) !important; */
	position: relative;
	border-style: none none solid none !important;
	padding: 1em 0 0.5em;
	padding: 15px;
	border: 1px dashed #ffffff !important;
	margin-bottom: 20px;
	/* border-radius: 15px; */
	/* background: #010101; */
}
.package:hover {
	background-color: #da1b2d;
}
.package:hover h5 {
	/* color: #da1b2d; */
}
.package:hover .price {
}
.package ul.list-default li {
	border: none !important;
	padding: 4px 0;
	color: rgba(255, 255, 255, 0.74);
} 
.package ul.list-default li:before {
	top: 0.3em !important;
}
.price {
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    position: absolute;
    font-size: 1.35em;
    font-weight: 500;
    color: #da1b2d;
    padding: 0.5em;
    margin: -1px -1px -1px 0;
}
.package .price {
	top: 0;
	right: 0;
	bottom: auto;
	font-size: 26px;
	padding: 0.7em;
	font-weight: bold;
}
.package .price small {
	font-size: 0.7em;
	margin-right: 3px;
}
/* ------------------------------------------------------------------------------
	 Teams
-------------------------------------------------------------------------------*/
.person {
	max-width: 270px;
	text-align: center;
}
.person img {
	width: 150px;
	height: 150px;
	margin: auto;
	border-radius: 5%;
	border: 2px solid #ffffff;
}
.person-content {
	margin-top: 20px;
}
.person h4 {
	font-weight: 400;
}
.person h5 {
	color: #eaeaea;
	font-size: 13px;
	font-weight: 400;
	margin-bottom: 20px;
	text-align: center;
}
.social-icons, .footer .footer-share {
	margin-top: 20px;
}
.social-icons li, .footer .footer-share li {
	display: inline-block;
	float: none;
}
.social-icons a, .footer .footer-share a {
	border: 1px solid #da1b2d;
	color: #da1b2d;
	display: block;
	font-size: 14px;
	height: 32px;
	line-height: 32px;
	margin-right: 5px;
	text-align: center;
	width: 32px;
}
.social-icons a:hover {
	background-color: #da1b2d;
	border-color: #da1b2d;
	color: #fff;
}
/* ------------------------------------------------------------------------------
	 Testimonials
-------------------------------------------------------------------------------*/
.testimonials {
	background-color: #da1b2d;
	position: relative;
	text-align: center;
}
.testimonials blockquote {
	border: 0;
	margin: 0;
	padding: 100px 15%;
}
.testimonials h1 {
	color: rgba(255, 255, 255, 0.87);
	font-weight: 300;
	font-size: 16px;
	line-height: 30px;
}
.testimonials p {
	color: #fff;
	display: inline;
	font-size: 14px;
	font-style: normal;
	line-height:22px;
	font-weight: 400;
	margin-top: 30px;
}
.testimonials a {
	color: purple;
}
.flex-control-nav {
	margin-top: 2%;
	bottom: none!important;
	position: relative!important;
	right: 0;
	text-align: center;
	width: 100%!important;
	z-index: 100;
}


#tours {
	background: #da1b2d;
	padding: 80px 0px 0;
	display: table;
	margin: 0 auto;
	width: 100%;
	color: #fff;
}
#tours .section-header p {
	color: #fff;
}
#tours h3 {
	color: #fff;
	text-transform: uppercase;
	font-size: 25px;
	letter-spacing: 2px;
	font-weight: 400;
	margin: 0px 0px 15px;
}

.tour-list {
	padding: 0px 0 70px;
}

.tour-list li {
	border-bottom: 1px solid #222;
	list-style: outside none none;
	display: table;
	width: 100%;
	padding-bottom: 15px;
	padding-top: 10px;
}

.tour-list li:first-child {
	border-top: none;
}

.tour-list li:last-child {
	border-bottom: none;
}

.tour-date {
	font-size: 30px;
	float: left;
	color: #fff;
	font-weight: 700;
}

.tour-date span {
	display: block;
	font-size: 17px;
	margin: -10px 0px 0px;
	font-weight: 400;
	text-align: right;
}

.tour-date span em {
	font-size: 13px;
	font-style: normal;
	margin: 0 -3px;
	display: none;
}

.tour-info {
	margin-left: 20px;
	display: inline-block;
	font-weight: 300;
	margin-top: 7px;
	font-size: 22px;
	color: #FFF;
}

.tour-info a {
	color: #fff;
	font-size: 14px;
	background: #000;
	padding: 4px 12px;
	border-radius: 4px;
}

.tour-ticket {
	margin-left: 54px;
	display: block;
}

.tour-ticket a {
	color: #010101;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 10px;
	background: #fff;
	padding: 4px 10px;
	border-radius: 4px;
}

.album-cover {
	text-align: center; 
	padding: 10px;
}

/* ------------------------------------------------------------------------------
	Contact form
-------------------------------------------------------------------------------*/
.conForm {
	text-align: center;
}
.conForm h5 {
	font-size: 30px;
}
.conForm p {
	text-align: center;
	margin: 7%;
}
.conForm input {
	color: #797979;
	padding: 15px 30px;
	border: none;
	margin-right: 3%;
	margin-bottom: 30px;
	outline: none;
	font-style: normal;
	border: #e0e0e0 1px solid;
	font-size: 15px;
	background: #010101;
}
.conForm input.noMarr {
	margin-right: 0px;
}
.conForm textarea {
	color: #797979;
	padding: 15px 30px;
	margin-bottom: 18px;
	outline: none;
	height: 150px;
	font-style: normal;
	resize: none;
	font-size: 15px;
	border: none;
	border: #e0e0e0 1px solid;
	background: #010101;
}
.conForm .submitBnt {
	background: #da1b2d;
	color: #fff;
	margin-top: 30px;
	padding:15px 30px 15px 30px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 5px;
	border: 0;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	display: inline-block;
	text-transform: uppercase;
}
.conForm .submitBnt:hover {
	background: #c91021;
	color: #ffffff;
}
#success_page{
	color: #00bdbd;
	font-weight: 500;
}
.error_message{
	color: #ff675f;
	padding-bottom: 15px;
	font-weight: 500;
}
#success_page h3{
	font-size:17px;
	color:#5ed07b;
	font-weight: 700;
}

/* ------------------------------------------------------------------------------
	 Footer
-------------------------------------------------------------------------------*/
.footer {
	text-align: left;
}
.footer-top {
	background-color: #181818;
	padding-top: 50px;
}
.footer-bottom {
	background-color: #313454;
	padding: 20px 0;
}
.footer .footer-col {
	margin-bottom: 80px;
}
.footer h5 {
	color: #fff;
}
.footer h5 {
	margin-bottom: 20px;
}
.footer p {
	color: rgba(255, 255, 255, 0.25);
}
.footer a {
	color: rgba(255, 255, 255, 0.50);
}
.footer a:hover {
	color: #e84545;
}
.footer .footer-share {
	margin-top: 0;
}
.footer .footer-share li {
	display: inline-block;
	float: none;
}
.footer .footer-share a {
	border: none;
	font-size: 21px;
	color: rgba(255, 255, 255, 0.25);
}
.footer .fa-heart {
	color: #e84545;
	font-size: 11px;
	margin: 0 2px;
}
@media only screen and (max-width: 1020px) {
    #header .logo a {
    padding-top: 10%;
    display: inherit;
    color: #fff;
}
#header.fixed .header-content .logo a {
    padding-top: 10%;
    color: #fff;
    text-align: center;
}
}
@media only screen and (max-width: 580px) {
.banner{
		min-height:400px;
}
.services .icon{
color:#404040;
}
}

/* ==============================================================================
   RETRO 8-BIT CHIPTUNE DESIGN SYSTEM & OVERHAUL
   ============================================================================== */
:root {
  --retro-bg: #090a0f;
  --retro-card-bg: rgba(16, 18, 27, 0.85);
  --retro-cyan: #00f0ff;
  --retro-pink: #ff007f;
  --retro-yellow: #ffea00;
  --retro-green: #00ff66;
  --retro-purple: #9d4edf;
  --retro-dark: #121420;
  --retro-font-pixel: 'Press Start 2P', cursive, monospace;
  --retro-font-mono: 'VT323', monospace;
  --retro-font-body: 'Outfit', sans-serif;
}

body {
  font-family: var(--retro-font-body);
  background-color: var(--retro-bg) !important;
  color: #d1d5db !important;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(0, 240, 255, 0.12) 0%, transparent 70%),
    radial-gradient(circle at 100% 50%, rgba(255, 0, 127, 0.08) 0%, transparent 60%);
  background-attachment: fixed;
}

/* Typography Overrides */
h1, h2, h3, .retro-heading {
  font-family: var(--retro-font-pixel) !important;
  letter-spacing: 1px;
}

h1 {
  color: #ffffff;
  text-shadow: 0 0 10px var(--retro-cyan), 0 0 20px rgba(0, 240, 255, 0.5);
}

h2 {
  color: var(--retro-cyan) !important;
  text-shadow: 0 0 8px var(--retro-cyan), 3px 3px 0px #000;
  text-transform: uppercase;
}

h3 {
  color: var(--retro-pink) !important;
  text-shadow: 0 0 8px var(--retro-pink), 2px 2px 0px #000;
}

h4 {
  font-family: var(--retro-font-pixel);
  font-size: 16px !important;
  color: var(--retro-yellow) !important;
}

p {
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: #c5cbda !important;
}

/* Header & Navigation Styling */
#header.fixed {
  background-color: rgba(9, 10, 15, 0.95) !important;
  border-bottom: 2px solid var(--retro-cyan) !important;
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.25);
  backdrop-filter: blur(10px);
}

.navigation a {
  font-family: var(--retro-font-pixel);
  font-size: 11px !important;
  color: #ffffff !important;
  transition: all 0.2s ease-in-out;
  padding: 8px 12px;
  position: relative;
}

.navigation a:hover,
.navigation a.active {
  color: var(--retro-cyan) !important;
  text-shadow: 0 0 8px var(--retro-cyan);
}

.navigation a.active::after {
  content: '▶';
  position: absolute;
  left: -2px;
  color: var(--retro-pink);
  font-size: 10px;
}

/* Banner / Hero Section */
.banner {
  background: linear-gradient(180deg, rgba(9, 10, 15, 0.4) 0%, rgba(9, 10, 15, 0.95) 100%), 
              url('../images/otakuthon.jpg') center/cover no-repeat !important;
  padding: 160px 0 100px;
  position: relative;
}

.banner-text h1 {
  font-size: 42px !important;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 3px 3px 0 var(--retro-pink), -3px -3px 0 var(--retro-cyan);
}

.banner-subtitle {
  font-family: var(--retro-font-mono);
  font-size: 28px;
  color: var(--retro-yellow);
  text-shadow: 0 0 10px rgba(255, 234, 0, 0.6);
  display: inline-block;
  background: rgba(18, 20, 29, 0.9);
  padding: 8px 24px;
  border: 2px solid var(--retro-yellow);
  box-shadow: 4px 4px 0 #000;
  margin-bottom: 30px;
}

/* Retro Buttons */
.btn-retro {
  font-family: var(--retro-font-pixel);
  font-size: 12px !important;
  padding: 14px 28px !important;
  background: var(--retro-pink) !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  box-shadow: 4px 4px 0 #000, 0 0 15px rgba(255, 0, 127, 0.4) !important;
  text-transform: uppercase;
  transition: all 0.15s ease-in-out;
  display: inline-block;
  margin: 10px 8px;
  cursor: pointer;
}

.btn-retro:hover {
  background: var(--retro-cyan) !important;
  color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 6px 6px 0 var(--retro-pink), 0 0 20px rgba(0, 240, 255, 0.6) !important;
  transform: translateY(-2px);
}

.btn-retro:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #000 !important;
}

.btn-retro-alt {
  background: transparent !important;
  border: 2px solid var(--retro-cyan) !important;
  color: var(--retro-cyan) !important;
  box-shadow: 4px 4px 0 #000, inset 0 0 10px rgba(0, 240, 255, 0.2) !important;
}

.btn-retro-alt:hover {
  background: var(--retro-cyan) !important;
  color: #000 !important;
}

/* Section Framing & Retro Cards */
.section {
  padding: 80px 0;
  border-bottom: 1px dashed rgba(0, 240, 255, 0.2);
}

.retro-card {
  background: var(--retro-card-bg);
  border: 2px solid var(--retro-cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.15), inset 0 0 15px rgba(0, 240, 255, 0.05);
  border-radius: 4px;
  padding: 30px;
  margin-bottom: 30px;
}

/* Character Select Screen (Band Members) */
.char-select-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.char-card {
  background: rgba(18, 20, 32, 0.9);
  border: 3px solid #333;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 380px;
  width: 100%;
  height: auto !important;
  min-height: auto;
  position: relative;
  box-shadow: 5px 5px 0 #000;
}

.char-card:hover {
  border-color: var(--retro-cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
  transform: none !important;
}

.char-portrait, img.band-member {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 2px solid #ffffff;
  transition: none !important;
  transform: none !important;
}

.char-card:hover .char-portrait,
.char-card:hover img {
  transform: none !important;
  scale: 1 !important;
}

.char-title {
  font-family: var(--retro-font-pixel);
  color: var(--retro-yellow);
  margin: 15px 0 10px;
  font-size: 16px;
}

.char-role {
  font-family: var(--retro-font-mono);
  font-size: 20px;
  color: var(--retro-cyan);
  margin-bottom: 15px;
}

/* Retro HP/MP Stat Bars */
.stat-group {
  margin: 12px 0;
  text-align: left;
}

.stat-label {
  font-family: var(--retro-font-pixel);
  font-size: 9px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.stat-bar-outer {
  height: 14px;
  background: #111;
  border: 1px solid #444;
  padding: 2px;
  box-shadow: inset 0 0 5px #000;
}

.stat-bar-inner {
  height: 100%;
  background: linear-gradient(90deg, var(--retro-pink), var(--retro-yellow));
  box-shadow: 0 0 8px var(--retro-pink);
}

.stat-bar-inner.cyan {
  background: linear-gradient(90deg, var(--retro-cyan), var(--retro-green));
  box-shadow: 0 0 8px var(--retro-cyan);
}

/* Character Bio Details Drawer */
.bio-details {
  background: rgba(12, 14, 24, 0.95);
  border: 3px solid var(--retro-pink);
  box-shadow: 0 0 30px rgba(255, 0, 127, 0.3), inset 0 0 20px rgba(255, 0, 127, 0.1);
  padding: 35px;
  margin-top: 30px;
}

.bio-details-close {
  font-family: var(--retro-font-pixel);
  font-size: 11px !important;
  color: var(--retro-yellow) !important;
  cursor: pointer;
  display: inline-block;
  background: #000;
  padding: 8px 16px;
  border: 1px solid var(--retro-yellow);
  margin-bottom: 20px;
}

.bio-details-close:hover {
  background: var(--retro-yellow);
  color: #000 !important;
}

.bio-summary-element {
  font-family: var(--retro-font-pixel);
  font-size: 10px;
  color: var(--retro-cyan);
}

/* Shop Merchandise Items */
.merch-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.merch-card {
  background: rgba(18, 20, 29, 0.9);
  border: 2px solid var(--retro-cyan);
  padding: 20px;
  text-align: center;
  box-shadow: 4px 4px 0 #000;
  transition: all 0.3s ease;
  max-width: 320px;
  width: 100%;
}

.merch-card:hover {
  border-color: var(--retro-yellow);
  box-shadow: 0 0 20px rgba(255, 234, 0, 0.4), 6px 6px 0 var(--retro-pink);
  transform: translateY(-4px);
}

.merch-card img {
  border: 1px solid #333;
  margin-bottom: 15px;
  max-height: 200px;
  object-fit: contain;
}

.merch-tag {
  font-family: var(--retro-font-pixel);
  font-size: 10px;
  color: var(--retro-yellow);
  margin-bottom: 10px;
  display: block;
}

/* Audio Player Container */
.music-console {
  background: rgba(14, 16, 26, 0.95);
  border: 3px solid var(--retro-cyan);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.25);
  padding: 25px;
  border-radius: 6px;
}

/* Social Icon Badges */
.social-icons li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: #121420;
  border: 1px solid var(--retro-cyan);
  color: var(--retro-cyan) !important;
  font-size: 18px;
  transition: all 0.2s ease;
  margin: 0 4px;
  box-shadow: 3px 3px 0 #000;
}

.social-icons li a:hover {
  background: var(--retro-cyan);
  color: #000 !important;
  box-shadow: 0 0 15px var(--retro-cyan);
  transform: translateY(-2px);
}

/* Footer Styling */
.footer {
  background: #06070a !important;
  border-top: 2px solid var(--retro-cyan);
  padding: 40px 0 20px;
  color: #888;
  font-family: var(--retro-font-pixel);
  font-size: 10px;
}