/**
* Theme: Gantz FluxCP Premade4 for Hercules and rAthena
* Developer: https://gantzservices.com
* ROMISC Gantz Services
* RaYShiN#3646
*/


@font-face {
  font-family: 'GothamCondensedMedium';
  src: url('../fonts/GothamCondensed-Medium.otf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham-Bold';
  src: url('../fonts/Gotham-Bold.otf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham-Book';
  src: url('../fonts/Gotham-Book.otf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham-Medium';
  src: url('../fonts/Gotham-Medium.otf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'TrajanPro-Bold';
  src: url('../fonts/TrajanPro-Bold.otf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'TrajanPro-Regular';
  src: url('../fonts/TrajanPro-Regular.ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'TrajanPro-3';
  src: url('../fonts/trajan-pro-3.otf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Raleway-Bold';
  src: url('../fonts/Raleway-Bold.ttf');
  font-weight: normal;
  font-style: normal;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --themeTextColor: #2e2e2e;
  --themeColor: #3f7ff3;
  --themeHover: #3f7ff3;
}

.text-color{
	color: var(--themeColor);
}

.text-hover{
	color: var(--themeHover);
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: var(--themeColor);
  text-decoration: none;
}

a:hover {
  color: var(--themeHover);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Jost", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #2b2c2f;
	visibility: hidden;
}
  
.preloader:before {
	content: "";
	position: fixed;
	border: 6px solid #fff;
	border-bottom-color: #2b2c2f; 
	border-radius: 50%;
	width: 50px;
	height: 50px;
	top: calc(50% - (50px /2));
	left: calc(50% - (50px /2));
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}
	100% {
	transform: rotate(360deg);
}
}

#msgIndicator{
	position: fixed;
	text-align: center;
	width: 275px;
	top: calc(50% + 50px);
	left: calc(50% - (275px / 2));
	z-index: 9999;
	visibility: hidden;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 40px;
  z-index: 996;
  background: grey;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Server Status
--------------------------------------------------------------*/

.server-status {
  font-family: 'Lucida Sans Console',sans-serif;
	font-size: 14px;
	color: #bababa;
}

.status-value {
  color: #0dcaf0!important;
	background: #1a1d20;
	padding: 3px 10px;
	border-radius: 5px;
	border: 1px solid #343a40;
  margin-right: 10px;
}

.btn-sign-in{
  background: #ff6600;
  border-radius: 3px;
  padding: 0px 10px;
  color: #fff;
  text-decoration: none;
}

.btn-sign-in:hover {
  background: #fb7b26;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.3s;
  z-index: 997;
  background: rgba(0, 0, 0, 0.3);
  top: 38px;
}

#header.header-scrolled, #header.header-inner-pages {
  background: rgba(0, 0, 0, 0.7);
  top: 0px;
  padding: 0;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 70px;
}

.magic-circle {
  position: absolute;
  top: 130px;
	background: url('../img/magic-circle-arcane.png') no-repeat;
  width: 70vw;
	height: 70vw;
	margin-left: 15vw;
	background-position: top center;
	background-size: 100%;
  opacity: 0.6;
	-webkit-animation: rotate 120s linear infinite;
	animation: rotate 120s linear infinite;
  z-index: 1;
}

@media (max-width: 576px) {
  .magic-circle {
    width: 100vw;
    height: 100vw;
    margin-left: 0;
    -webkit-animation: none;
    animation: none;
  }   
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } 
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } 
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  font-family: 'Gotham-Book';
  font-size: 11pt;
  font-weight: 500;
  color: #8392b3;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #fff;
  background: rgba(255, 255, 255, 0.1)
}

.navbar .getstarted {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid var(--themeColor);
  font-weight: 600;
}

.navbar .getstarted:hover {
  color: #fff;
  background: var(--themeColor);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  min-width: 100%;
  left: 0px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: rgba(0,0,0,0.3);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul a {
  padding: 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #fff;
}

.navbar .dropdown ul li a:hover {
	font-weight: 400;
  display: block;
  background: rgba(255,255,255,0.2);
	color: #fff;
	padding-left: 25px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #fff;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
	top: 30px;
	right: 10px;
}

.logo-mobile {
  background: #000;
  border-bottom: 1px solid #25416a;
	padding: 10px !important;
}

.logo-mobile:hover {
  background: #000 !important;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0;
  padding: 0;
  background-color: transparent;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #fff
}

.navbar-mobile .getstarted {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: rgba(255,255,255,0.2);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a:hover {
  color: #3775fb;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #fff;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.dropdown-item:focus, .dropdown-item:hover {
	color: #fff;
	background-color: var(--themeHover);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 82vh; /* reduced hero height */
  background: url('../img/main-bg.jpg') top center no-repeat;
  background-size: cover;
}

#hero .main-char-bg {
  width: 100%;
  height: 100vh; /* keep original artwork position/scale; hero clips excess */
  background: url('../img/main-bg-char.png') top center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 8;
}

#hero .container {
  padding-top: 72px;
}

#hero .slogan {
  margin-top: 20vh;
}

#hero .download a:hover, #hero .featurevideo a:hover  {
  opacity: 0.85;
}

@media (max-width: 991px) {
  #hero {
    height: 82vh;
    text-align: center;
  }
  #hero .main-char-bg {
    height: 100vh;
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
#main {
  position: relative;
  z-index: 9;
}

section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  margin: 0 auto !important;
  padding-bottom: 80px;
}

.section-title .news-title {
  background: url('../img/news-title.png') no-repeat center;
  width: 100%;
  height: 114px;
  display: block;
}

.section-title .hof-title {
  background: url('../img/hall-famers-title.png') no-repeat center;
  width: 100%;
  height: 114px;
  display: block;
}

.section-title .event-title {
  background: url('../img/event-title.png') no-repeat center;
  width: 100%;
  height: 114px;
  display: block;
}

@media (max-width: 575px) {
  .section-title .news-title {
    background: url('../img/news-title-mobile.png') no-repeat center;
    background-size: contain;
  }

  .section-title .hof-title {
    background: url('../img/hall-famers-title-mobile.png') no-repeat center;
    background-size: contain;
  }

  .section-title .event-title {
    background: url('../img/event-title-mobile.png') no-repeat center;
    background-size: contain;
  }
}

@media (max-width: 425px) {
  .section-title {
    padding-bottom: 50px;
  }
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--themeColor);
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--themeHover);
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}


/* --------------------------------
 News & Updates Section
-------------------------------- */
.newsupdates {
  background: #fff;
  background-size: cover;
}

.newsupdates .banners-container {
  background: url('../img/banners/banner-bg.png') no-repeat;
	max-width: 793px;
	max-height: 407px;
	background-size: contain;
	padding-bottom: 20px;
  padding-left: 85px;
}

.newsupdates .banners {
  max-width: 694px;
	max-height: 396px;
  margin-left: 10px;
  background: #faf6f7;
  border: 1px solid #c5c5c5;
}

@media (max-width: 1199px) {
  .newsupdates .banners {
    margin-left: 0px;
  }

  .newsupdates .banners-container{
    padding-left: 70px;
  }
}

@media (max-width: 991px) {
  .newsupdates .banners {
    margin-left: 20px;
  }
}

@media (max-width: 767px) {
  .newsupdates .banners {
    margin-left: 0px;
  }
}

@media (max-width: 575px) {
  .newsupdates .banners {
    margin-left: 5px;
  }
}

@media (max-width: 525px) {
  .newsupdates .banners-container{
    padding-left: 0px;
    padding-bottom: 0px;
    background: none;
  }
}

.news-header {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dashed #000;
}

/* owl nav */
.owl-carousel .owl-nav{
  overflow: hidden;
  height: 0px;
  margin-top: 0px;
}

.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
  background: #2caae1;
}

.owl-theme .owl-dots {
  margin: 0 auto!important;
  /* background: rgba(0,0,0,0.5);
	width: 100%; */
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 5px;
}

.owl-carousel .item {
  text-align: center;
}
.owl-carousel .nav-btn{
  height: 25px;
  position: absolute;
  width: 26px;
  cursor: pointer;
  top: 48% !important;
}

.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled{
  pointer-events: none;
  opacity: 0.2;
}

.owl-carousel .prev-slide{
  background: url('../img/nav-icon.png') no-repeat scroll 0 0;
  height: 25px;
  left: 7px;
}
.owl-carousel .next-slide{
  background: url('../img/nav-icon.png') no-repeat scroll -30px 0;
  height: 25px;
  right: 7px;
}
.owl-carousel .prev-slide:hover{
  background-position: 0px -30px;
}
.owl-carousel .next-slide:hover{
  background-position: -30px -30px;
}

.owl-carousel .owl-item{
  transition: .4s ease all;
  transform: scale(1);
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
	color: #fff;
	background-color: #000;
}

.nav-pills .nav-link {
  color: #000;
}

.news {
  font-family: 'Montserrat';
}

.news .news-content {
  font-family: 'Montserrat';
	font-size: 11pt;
}

.news-content td.news-category {
  font-size: 10pt;
}

.news-content td.news-category.news {
	color: #42bad5;
}

.news-content td.news-category.events {
	color: #fd511e;
}

.news-content td.news-category.updates {
	color: #37d68d;
}

.news-content td.title a {
  color: #000;
}

.news-content td.title a:hover {
  color: #40abef;
}

.news-content tr:hover {
	left: 10px;
	position: relative;
  transition: 0.3s ease-in-out;
}

.news-content td.date span {
  color: #bbb7b7;
}

/*--------------------------------------------------------------
# famers Server Stats Desc
--------------------------------------------------------------*/
.famers {
  background: url("../img/hall-of-famers-bg.jpg") top center;
  background-size: cover;
  padding: 80px 0;
}

.famers h3 {
  font-family:sans-serif;
  color: #fff;
  font-size: 40pt;
  font-weight: 700;
}

.famers p {
  color: #fff;
}

.event-title{
	text-transform: uppercase;
	font-size: 16pt;
  font-family: 'TrajanPro-Regular';
}

.countdown-bg {
  background: url('../img/countdown-bg.png') no-repeat center;
  margin-bottom: 10px;
  filter: invert(1);
}

.countdown-bg span{
	font-family: 'Gotham-Book';
	font-size: 10pt;
	color: #fff;
  text-align: center;
  text-transform: uppercase;
}

/* ------------------------
	GvG Champ and Castle Owners
--------------------------*/
.agit-castle {
  max-width: 425px;
  min-height: 200px;
  width: 100%;
}

.gvg-champ {
  background: url('../img/gvg-champ-flag.png') no-repeat top center;
}

.gvg-champ img {
  margin-top: 50px;
}

.flag {
  background: url('../img/flag.png') no-repeat center;
  height: 67px;
}

.flag img {
  margin-top: 20px;
}

/* ------------------------
	PVP Ladder
--------------------------*/

.pvp-rankings {
	margin: 0px 30px;
	max-width: 425px;
	width: 100%;
}

.pvp-ladder th {
	font-family: 'Gotham-Book';
	font-size: 10pt;
	color: #ebebeb;
}

.pvp-ladder {
	width: 100%;
	overflow: hidden;
}

.pvp-ladder table {
	max-width: 420px;
	width: 100%;
}

.pvp-ladder td {
	color: #fff;
	font-family: 'Gotham-Book';
	font-size: 10pt;
}

.pvp-ladder tr {
	line-height: 24px;
}

.pvp-ladder tr:nth-child(2) {
	background: url(../img/r1.png) no-repeat;
  background-size:contain;
}


.pvp-ladder tr:nth-child(3) {
	background: url(../img/r2.png) no-repeat;
  background-size:contain;
}

.pvp-ladder tr:nth-child(4) {
	background: url(../img/r3.png) no-repeat;
  background-size:contain;
}

.pvp-ladder tr:nth-child(2) td, .pvp-ladder tr:nth-child(3) td, .pvp-ladder tr:nth-child(4) td  {
	color: #fff !important;	
}


/* ------------------------
	In-Game Events
--------------------------*/
.event-content {
  margin: 0 auto;
}

#eventtimers {
  background-color: #fff;
  margin: 0 auto;
}

.event-item {
	margin: 15px 0;
}

.event-item .event-container {
	background: url('../img/events-bg.png') left center no-repeat, #f0f0f0;
  transition: background-color ease-in-out 0.3s;
	padding: 20px;
  border: 1px solid #bfbfc0;
}

#eventtimers .event-item .event-container:hover {
  background-color: #ebe9e9;
  color: #287af6;
}

#eventtimers .event-item time {
  padding-bottom: 5px;
  display: inline-block;
}

#eventtimers .event-item h4 {
	font-family:'Gotham-Medium';
  font-size: 20pt;
  font-weight: 100;
  text-transform: uppercase;
  margin-bottom: 5px;
}

#eventtimers .event-item h4 span {
  font-style: italic;
  color: #707070;
  font-weight: normal;
  font-size: 16px;
}

#eventtimers .event-item p {
  color: #fff;
  margin-bottom: 0;
}



/* ------------------------
	Action
--------------------------*/

.action-now{
	position:relative;
	text-align:center;
	padding:100px 0px 100px;
	background-size:cover;
  background: #17253f;
}

.action-now .pattern-layer{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6)), url('../img/bg-create.jpg') center fixed;
	background-repeat:no-repeat;
}

.action-now h2{
	position:relative;
	color:#ffffff;
	font-weight:700;
	line-height:1.4em;
}

.action-now h2 span{
	font-weight:400;
}

.action-now .buttons-box{
	position:relative;
	text-align:center;
	margin-top:25px;
}

.action-now .buttons-box .theme-btn{
	margin:0px 10px;
	cursor:pointer;
}

.action-now .buttons-box .theme-btn:hover{
  background: transparent !important;
  color: #fff !important;
}

/* ------------------------
	Server Quick Info
--------------------------*/
.subheading {
  font-family: 'TrajanPro-Regular';
  font-size: 28pt;
  margin-top: -30pt;
}
.subheading-highlight {
  color: #3f7ff3
}

.heading-desc {
  font-family: 'Gotham-Book';
  font-size: 11pt;
  text-transform: uppercase;
}

.server-info, .server-info tr,  .server-info td{
  border: 1px solid #d6d6d6;
  font-family: 'Montserrat';
  font-size: 11pt;
  padding: 25px;
  color: #696464;
}

.server-info tr th {
  background: #f6f6f6;
  border: 1px solid #d6d6d6;
  font-size: 13pt;
  text-align: center;
  padding: 25px;
}

.info-people {
  margin-top: -100px;
  margin-left: -75px;
}

/* @media (max-width: 575.98px) {
  .server-info{
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
} */

/* ------------------------
	Footer
--------------------------*/
.footer-social {
  background: #2c2c2c;
  padding: 20px 0;
}

.btn-social {
	height: 3rem;
	width: 3rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border-radius: 100%;
  border: 1px solid #464646;
}

.footer {
  background: #1a1a1a;
  padding: 60px 0;
}

.footer .nav-link {
  font-family: 'Gotham-Book';
	text-transform: uppercase;
	font-size: 10pt;
	color: #b7b7b7;
	border-right: 1px solid #817f7f;
	padding: 0 1rem;
	line-height: 9pt;
	margin-bottom: 15px;
}

@media (max-width: 991.98px){	
  .footer .nav-link {
    border: 0;
  }
}

.footer .nav-link:first-child {
	padding: 0 1rem 0 0;
}

.footer .nav-link:last-child {
	border: 0;
}

@media (max-width: 767.98px){	
	.footer .nav-link:first-child {
		padding: 0 1rem;
	}

	.footer .nav-link {
		border: 0;
	}
	
}

.footer .nav-link:hover {
	color: #fff;
}

.footer p {
  font-family: 'Gotham-Book';
	font-size: 10pt;
	color: #757575;
}

.footer p.social-title {
	font-size: 11pt !important;
	color: #a3bfbf !important;
}

.social-links ul {
	list-style: none;
	float: right;
}

.social-links ul li {
	display: inline-block;
	margin: 0 2px;
}




/* --------------------------------
 Flux Pages Design Styles
-------------------------------- */

#submenu {
	color: var(--themeTextColor);
	background: none;
	font-size: 10pt;
}

#submenu a{ 
	color: var(--themeColor);
}

#submenu a:hover {
	text-decoration: none;
	color: var(--themeTextColor);
}

.admin-menu {
	color: var(--themeTextColor);
	background: none;
	font-size: 10pt;
}

.admin-menu a{
	color: var(--themeColor);
}

.admin-menu a:hover {
	text-decoration: none;
	color: var(--themeTextColor);
}

.admin-menu a:after {
	content: ' / ';
	color: var(--themeTextColor);
	text-decoration: none;
}

.toggler a {
	color: var(--themeColor);
}

.pages .page-num {
	color: var(--themeColor);
}

.pages .current-page {
	color: #cc9808 !important;
	font-weight: bold;
}

.pages .page-prev, .pages .page-next {
	color: var(--themeTextColor);
}

.horizontal-table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.horizontal-table > .table-bordered {
    border: 0; 
}


.vertical-table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.horizontal-table > .table-bordered {
    border: 0;
}   

.global-container {
	max-width: 1120px;
	font-family: 'Gotham-Book';
	border-radius: 5px;
	margin: 50px auto;
	color: var(--themeTextColor);
	font-size: 9pt;
	padding: 50px 15px;
  position: relative;
  z-index: 9;
}

.global-container h2,h3 {
	font-size: 25pt;
	text-decoration-color: var(--themeTextColor);
	width: unset;
	margin: 20px 0px;
	padding: 5px 0;
	font-family: 'Gotham';
	color: var(--themeTextColor);
	text-transform: none;
}

.global-container p {
	font-family: 'Gotham-Book';
	font-size: 10pt;
}

.customborder-bottom {
	padding-bottom: 15px;
	border-bottom: 2px solid var(--themeTextColor);
}

.fs-medium {
	font-size: 90% !important;
}

.fs-small {
	font-size: 75% !important;
}

.security-code {
	background-color: #b7b7b7;
	height: auto;
	border: #8e8e8e;
}

.reg-label {
	font-family: 'Inter-Bold' !important;
	font-size: 9pt !important;
	color: var(--themeTextColor) !important;
}

.birthdate select {
	background-color: #212529!important;
	color: #fff!important;
	padding: 0.4rem 1rem!important;
	-moz-box-shadow: inset 0 0 7px #141414;
	-webkit-box-shadow: inset 0 0 7px #141414;
	box-shadow: inset 0 0 7px #141414;
}

h3 {
	font-size: 30pt;
}

.global-container a {
	color: var(--themeColor);
}


.global-container:empty {
	display: none;
}



.horizontal-table td {
	padding: 5px 10px;
	background: #fff;
}

	

.horizontal-table th, .horizontal-table td {
	font-size: 9pt;
	border: 1px solid var(--themeTextColor);
}



.horizontal-table th {
	padding: 5px 10px;
	background-color: transparent;
}



.vertical-table td {
	padding: 5px 10px;
	background: #fff;
}

	

.vertical-table th, .vertical-table td {

	font-size: 9pt;
	border: 1px solid var(--themeTextColor);
}


.vertical-table th {
	padding: 5px 10px;
	background-color: transparent;
}


.generic-form {
	border: 1px solid var(--themeColor);
	background: none;
}


.generic-form-table td p {
	color: var(--themeColor);
}

.search-form label, .search-form2 label {
	color: var(--themeColor);
}


.sortable {
	color: #38a6e8;
	text-decoration: underline;
}


.sortable:hover {
	color: #fff;
}


#pagemenu {
	color: var(--themeTextColor);
}


#pagemenu a{
	color: var(--themeColor);
}

.character-stats .stat-name {
	color: var(--themeColor);
}

.character-stats .stat-value {
	color: var(--themeTextColor);
}


.generic-form-table th label , .generic-form-table td div, .horizontal-table td, .horizontal-table th, .vertical-table th, .vertical-table td{
	color: var(--themeTextColor)
}

/* ===== UmadRO Features Page ===== */
.umadro-features-page{padding:45px 0 70px;min-height:760px;background:linear-gradient(rgba(245,248,252,.92),rgba(245,248,252,.92)),url('../img/main-bg.jpg') center top/cover fixed no-repeat;color:#202633}
.umadro-features-page .content-wrap{max-width:1050px;margin:0 auto;padding:0 18px}
.umadro-feature-hero{margin-bottom:26px}.umadro-feature-kicker{font-size:11px;font-weight:800;letter-spacing:2.5px;color:#0999d4}.umadro-feature-hero h2{font-size:30px;font-weight:900;letter-spacing:1px;margin:6px 0;color:#172333}.umadro-feature-hero p{font-size:13px;color:#697383;margin:0}
.umadro-stat-card,.umadro-feature-card,.umadro-episode-card{background:rgba(255,255,255,.96);border:1px solid #d9e0e7;border-radius:8px;box-shadow:0 4px 12px rgba(28,45,65,.12)}
.umadro-stat-card{text-align:center;padding:20px 12px;height:100%}.umadro-stat-card small{display:block;font-size:9px;font-weight:800;letter-spacing:1px;color:#7b8490}.umadro-stat-card strong{display:block;font-size:31px;line-height:1.1;margin:7px 0 4px;color:#08a9df}.umadro-stat-row>div:nth-child(2) strong{color:#e13a43}.umadro-stat-row>div:nth-child(3) strong{color:#f1a400}.umadro-stat-card span{font-size:9px;text-transform:uppercase;color:#9aa1aa;font-weight:700}
.umadro-episode-card{margin:18px 0;padding:22px;display:flex;justify-content:space-between;gap:25px;align-items:center}.umadro-card-title{font-size:14px;font-weight:900;color:#172333;margin-bottom:7px}.umadro-episode-card p{font-size:12px;color:#66707d;margin:0;max-width:650px}.umadro-episode-tags{min-width:230px;display:grid;grid-template-columns:1fr 1fr;gap:7px}.umadro-episode-tags span{background:#edf7fc;border-left:3px solid #08a9df;padding:7px 9px;font-size:10px;font-weight:800;color:#33404e}
.umadro-feature-grid{margin-top:0}.umadro-feature-card{height:100%;padding:20px 22px;min-height:205px}.umadro-feature-card h3{font-size:13px;font-weight:900;letter-spacing:.3px;border-bottom:1px solid #edf0f3;padding-bottom:12px;margin-bottom:14px;color:#1d2938}.umadro-feature-card h3 b{color:#08a9df;margin-right:5px}.umadro-feature-card ul{margin:0;padding-left:18px}.umadro-feature-card li{font-size:12px;margin:9px 0;color:#4d5967}.umadro-feature-card li::marker{color:#08a9df}.umadro-feature-card dl{display:grid;grid-template-columns:1fr 1fr;gap:8px 18px;margin:0;font-size:12px}.umadro-feature-card dt{color:#6b7581}.umadro-feature-card dd{font-weight:800;color:#283442;margin:0;text-align:right}
@media(max-width:767px){.umadro-features-page{padding-top:25px}.umadro-episode-card{display:block}.umadro-episode-tags{min-width:0;margin-top:16px}.umadro-feature-hero h2{font-size:25px}}

/* UmadRO 3D animated-style hero preview approved */
#hero {
  height: 82vh;
  min-height: 620px;
  background: url('../img/hero-3d-animated.png') center top / cover no-repeat;
  position: relative;
  overflow: hidden;
}
#hero .magic-circle,
#hero .main-char-glow,
#hero .featurevideo {
  display: none !important;
}
#hero .main-char-bg {
  width: 100%;
  height: 100%;
  background: none !important;
  position: relative;
  z-index: 8;
}
#hero .container {
  height: 100%;
  padding-top: 0;
}
#hero .container > .col-md-6 {
  height: 100%;
  padding-top: 0 !important;
  position: relative;
}
#hero .download {
  position: absolute;
  left: 50%;
  bottom: 5.5%;
  transform: translateX(-50%);
  margin-top: 0 !important;
  width: 290px;
  height: 72px;
}
#hero .download a {
  display: block;
  width: 100%;
  height: 100%;
}
#hero .download img {
  width: 100%;
  height: 100%;
  opacity: 0;
}
@media (max-width: 991px) {
  #hero { height: 82vh; min-height: 540px; background-position: center top; }
  #hero .main-char-bg { height: 100%; }
  #hero .download { width: 230px; height: 60px; bottom: 5%; }
}

/* FIX: restore animated hero effects over approved 3D artwork */
#hero .magic-circle {
  display: block !important;
  top: 55px;
  left: 50%;
  margin-left: 0;
  width: min(64vw, 900px);
  height: min(64vw, 900px);
  transform: translateX(-50%);
  transform-origin: 50% 50%;
  opacity: .28;
  z-index: 2;
  mix-blend-mode: screen;
  animation: umadroHeroCircle 55s linear infinite;
}
@keyframes umadroHeroCircle {
  from { transform: translateX(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) rotate(360deg); }
}
#hero .main-char-glow { display: none !important; }
#hero .featurevideo { display: none !important; }

/* animated mist/smoke layer */
#hero::before,
#hero::after {
  content: "";
  position: absolute;
  left: -12%;
  width: 124%;
  pointer-events: none;
  z-index: 6;
}
#hero::before {
  bottom: -5%;
  height: 34%;
  background:
    radial-gradient(ellipse at 18% 70%, rgba(255,255,255,.72) 0 12%, transparent 39%),
    radial-gradient(ellipse at 52% 78%, rgba(255,255,255,.58) 0 14%, transparent 43%),
    radial-gradient(ellipse at 84% 68%, rgba(255,255,255,.70) 0 12%, transparent 40%);
  filter: blur(18px);
  opacity: .72;
  animation: umadroMistA 8s ease-in-out infinite alternate;
}
#hero::after {
  bottom: -10%;
  height: 28%;
  background:
    radial-gradient(ellipse at 34% 60%, rgba(220,245,255,.55) 0 13%, transparent 42%),
    radial-gradient(ellipse at 72% 72%, rgba(255,255,255,.60) 0 15%, transparent 44%);
  filter: blur(24px);
  opacity: .60;
  animation: umadroMistB 11s ease-in-out infinite alternate;
}
@keyframes umadroMistA { from { transform: translateX(-2%) scale(1); } to { transform: translateX(3%) scale(1.06); } }
@keyframes umadroMistB { from { transform: translateX(3%) scale(1.04); } to { transform: translateX(-3%) scale(1); } }

/* restore the real clickable Download artwork above the mist */
#hero .download { z-index: 12; bottom: 4.5%; }
#hero .download img {
  opacity: 1 !important;
  visibility: visible !important;
  object-fit: contain;
  animation: umadroDownloadGlow 1.65s ease-in-out infinite alternate;
}

@media (max-width: 991px) {
  #hero .magic-circle { width: 92vw; height: 92vw; top: 90px; }
}

/* ===== FINAL UmadRO hero/cloud fix =====
   Keep the complete 3D logo visible. The old white mist overlays on #hero
   are disabled; a low cloud bank is placed at the content transition only. */
#hero {
  height: 700px !important;
  min-height: 700px !important;
  margin-bottom: 0 !important;
  overflow: hidden !important;
  background-image: url('../img/hero-3d-animated.png') !important;
  background-size: 100% auto !important;
  background-position: center -88px !important;
  background-repeat: no-repeat !important;
  background-color: #dff3ff !important;
}

/* Remove the white/fog sheets that were sitting over the UmadRO letters. */
#hero::before,
#hero::after {
  content: none !important;
  display: none !important;
}

/* Keep the clickable download button fully above the transition. */
#hero .main-char-bg { z-index: 8 !important; }
#hero .download {
  z-index: 20 !important;
  bottom: 18px !important;
}
#hero .download img {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Cloud-shaped transition belongs to the NEXT section, not over the logo. */
#main-cont {
  position: relative !important;
  z-index: 10 !important;
  background: #fff;
}
#main-cont::before {
  content: "";
  position: absolute;
  left: -4%;
  top: -50px;
  width: 108%;
  height: 82px;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 5% 78%,  rgba(255,255,255,.98) 0 24%, transparent 48%),
    radial-gradient(ellipse at 18% 72%, rgba(248,253,255,.98) 0 27%, transparent 51%),
    radial-gradient(ellipse at 34% 80%, rgba(255,255,255,.98) 0 25%, transparent 49%),
    radial-gradient(ellipse at 50% 70%, rgba(244,251,255,.98) 0 28%, transparent 52%),
    radial-gradient(ellipse at 66% 80%, rgba(255,255,255,.98) 0 25%, transparent 49%),
    radial-gradient(ellipse at 82% 72%, rgba(248,253,255,.98) 0 27%, transparent 51%),
    radial-gradient(ellipse at 96% 79%, rgba(255,255,255,.98) 0 24%, transparent 48%);
  filter: blur(7px);
  animation: umadroLowCloudDrift 10s ease-in-out infinite alternate;
}
@keyframes umadroLowCloudDrift {
  from { transform: translateX(-1%); }
  to   { transform: translateX(1%); }
}
#main-cont > * { position: relative; z-index: 1; }

@media (max-width: 1200px) {
  #hero {
    height: 620px !important;
    min-height: 620px !important;
    background-size: cover !important;
    background-position: center top !important;
  }
  #hero .download { bottom: 16px !important; }
}
@media (max-width: 991px) {
  #hero {
    height: 560px !important;
    min-height: 560px !important;
    background-position: center top !important;
  }
  #hero .download { width: 230px !important; height: 60px !important; bottom: 12px !important; }
  #main-cont::before { top: -38px; height: 64px; }
}

/* ===== UmadRO NO-CUT FINAL FIX =====
   The previous content boundary was still crossing the logo. This override
   keeps the entire artwork visible before the next white content section. */
#hero {
  height: 900px !important;
  min-height: 900px !important;
  overflow: hidden !important;
  margin: 0 !important;
  background-image: url('../img/hero-3d-animated.png') !important;
  background-size: 100% auto !important;
  background-position: center -90px !important;
  background-repeat: no-repeat !important;
  background-color: #d9efff !important;
}

/* absolutely no white/fog overlay crossing the logo */
#hero::before,
#hero::after,
#main-cont::before,
#main-cont::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

/* full logo is part of the hero artwork; keep button safely above its bottom */
#hero .main-char-bg {
  height: 100% !important;
  z-index: 8 !important;
}
#hero .download {
  z-index: 30 !important;
  bottom: 105px !important;
}
#hero .download img {
  opacity: 1 !important;
  visibility: visible !important;
}

#main-cont {
  position: relative !important;
  z-index: 10 !important;
  margin-top: 0 !important;
  background: #fff !important;
}

@media (max-width: 1200px) {
  #hero {
    height: 820px !important;
    min-height: 820px !important;
    background-size: cover !important;
    background-position: center top !important;
  }
  #hero .download { bottom: 75px !important; }
}

@media (max-width: 991px) {
  #hero {
    height: 700px !important;
    min-height: 700px !important;
    background-position: center top !important;
  }
  #hero .download {
    width: 230px !important;
    height: 60px !important;
    bottom: 55px !important;
  }
}

/* ===== UmadRO FINAL FADED CLOUD -> WHITE TRANSITION ===== */
/* Keep the hero/logo/button clear, then dissolve the scenery smoothly into white. */
#hero {
  overflow: visible !important;
  margin-bottom: 0 !important;
}
#hero::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -1px !important;
  width: 100% !important;
  height: 190px !important;
  z-index: 12 !important;
  pointer-events: none !important;
  filter: none !important;
  opacity: 1 !important;
  animation: none !important;
  background:
    radial-gradient(ellipse 18% 38% at 5% 62%, rgba(255,255,255,.90) 0 52%, transparent 70%),
    radial-gradient(ellipse 22% 42% at 20% 70%, rgba(255,255,255,.92) 0 52%, transparent 71%),
    radial-gradient(ellipse 20% 40% at 38% 63%, rgba(255,255,255,.88) 0 52%, transparent 72%),
    radial-gradient(ellipse 23% 43% at 56% 70%, rgba(255,255,255,.92) 0 52%, transparent 72%),
    radial-gradient(ellipse 20% 39% at 74% 63%, rgba(255,255,255,.90) 0 52%, transparent 71%),
    radial-gradient(ellipse 23% 42% at 93% 70%, rgba(255,255,255,.94) 0 52%, transparent 71%),
    linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,.20) 25%, rgba(255,255,255,.72) 64%, #fff 100%) !important;
}
#hero::after { content:none !important; display:none !important; }

/* The next section begins white, directly under the fade, with no hard seam. */
#main-cont {
  margin-top: 0 !important;
  background: #fff !important;
  position: relative !important;
  z-index: 13 !important;
}
#main-cont::before,
#main-cont::after { content:none !important; display:none !important; }

/* clickable download button remains visible above the transition */
#hero .download { z-index: 30 !important; }
#hero .download img { opacity: 1 !important; visibility: visible !important; }
test

/* ===== UmadRO REFERENCE CLOUD TRANSITION FINAL ===== */
#hero { overflow:hidden !important; margin-bottom:0 !important; }
#hero::after {content:"" !important;display:block !important;position:absolute !important;left:-5% !important;bottom:-2px !important;width:110% !important;height:270px !important;pointer-events:none !important;z-index:11 !important;filter:blur(13px) !important;background:linear-gradient(to bottom,rgba(255,255,255,0) 0%,rgba(255,255,255,.08) 12%,rgba(255,255,255,.28) 32%,rgba(255,255,255,.62) 58%,rgba(255,255,255,.9) 78%,#fff 100%) !important;}
#hero::before {content:"" !important;display:block !important;position:absolute !important;left:-4% !important;bottom:-4px !important;width:108% !important;height:250px !important;pointer-events:none !important;z-index:12 !important;filter:blur(3px) !important;background:radial-gradient(ellipse 10% 34% at 2% 72%,rgba(255,255,255,.98) 0 52%,transparent 72%),radial-gradient(ellipse 13% 43% at 11% 66%,rgba(255,255,255,.96) 0 52%,transparent 73%),radial-gradient(ellipse 11% 35% at 22% 75%,rgba(255,255,255,.98) 0 53%,transparent 73%),radial-gradient(ellipse 15% 46% at 34% 67%,rgba(255,255,255,.96) 0 52%,transparent 74%),radial-gradient(ellipse 12% 38% at 47% 74%,rgba(255,255,255,.98) 0 53%,transparent 73%),radial-gradient(ellipse 15% 45% at 59% 66%,rgba(255,255,255,.96) 0 52%,transparent 74%),radial-gradient(ellipse 12% 38% at 72% 74%,rgba(255,255,255,.98) 0 53%,transparent 73%),radial-gradient(ellipse 15% 46% at 84% 65%,rgba(255,255,255,.96) 0 52%,transparent 74%),radial-gradient(ellipse 12% 39% at 96% 72%,rgba(255,255,255,.98) 0 53%,transparent 73%),linear-gradient(to bottom,rgba(255,255,255,0) 0%,rgba(255,255,255,.1) 20%,rgba(255,255,255,.48) 52%,rgba(255,255,255,.9) 78%,#fff 100%) !important;}
#main-cont {position:relative !important;z-index:13 !important;margin-top:0 !important;border:0 !important;box-shadow:none !important;background:#fff !important;}
#main-cont::before,#main-cont::after{content:none !important;display:none !important;}
#hero .download{z-index:30 !important;bottom:105px !important;}#hero .download img{opacity:1 !important;visibility:visible !important;}

/* ===== UmadRO DOWNLOAD BUTTON FRONT + BRIGHT ANIMATED ===== */
#hero .download {
  z-index: 120 !important;
  bottom: 125px !important;
  transform: translateX(-50%) translateZ(0) scale(1.03) !important;
  filter: none !important;
  isolation: isolate !important;
}
#hero .download a {
  position: relative !important;
  z-index: 121 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}
#hero .download img {
  position: relative !important;
  z-index: 122 !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  filter:
    brightness(1.22)
    saturate(1.28)
    drop-shadow(0 0 5px rgba(255,255,255,.98))
    drop-shadow(0 0 12px rgba(95,235,255,.98))
    drop-shadow(0 0 24px rgba(0,160,255,.92))
    drop-shadow(0 0 42px rgba(0,95,255,.70)) !important;
  animation: umadroDownloadFrontPulse 1.25s ease-in-out infinite alternate !important;
  transform-origin: center center !important;
  will-change: transform, filter;
}
#hero .download a::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 22px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(85,225,255,.35) 0%, rgba(0,135,255,.20) 45%, transparent 72%);
  filter: blur(10px);
  animation: umadroDownloadHalo 1.25s ease-in-out infinite alternate;
}
@keyframes umadroDownloadFrontPulse {
  0% {
    transform: scale(1.00) translateY(0);
    filter:
      brightness(1.10) saturate(1.15)
      drop-shadow(0 0 4px rgba(255,255,255,.85))
      drop-shadow(0 0 9px rgba(80,220,255,.80))
      drop-shadow(0 0 18px rgba(0,145,255,.72)) !important;
  }
  100% {
    transform: scale(1.075) translateY(-2px);
    filter:
      brightness(1.42) saturate(1.45)
      drop-shadow(0 0 7px rgba(255,255,255,1))
      drop-shadow(0 0 17px rgba(115,245,255,1))
      drop-shadow(0 0 34px rgba(0,175,255,.98))
      drop-shadow(0 0 56px rgba(0,100,255,.82)) !important;
  }
}
@keyframes umadroDownloadHalo {
  from { opacity: .45; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1.08); }
}
@media (max-width: 1200px) {
  #hero .download { bottom: 105px !important; }
}
@media (max-width: 991px) {
  #hero .download { bottom: 88px !important; }
}
@media (prefers-reduced-motion: reduce) {
  #hero .download img, #hero .download a::before { animation: none !important; }
}

/* ===== UmadRO DOWNLOAD BUTTON: ABOVE CLOUDS + SOLID COLOR ===== */
#hero .download {
  z-index: 9999 !important;
  bottom: 150px !important;
  transform: translateX(-50%) scale(1.06) !important;
  isolation: isolate !important;
  opacity: 1 !important;
}
#hero .download a {
  position: relative !important;
  z-index: 10000 !important;
  display: block !important;
  border-radius: 14px !important;
  background: linear-gradient(180deg, #35c8ff 0%, #058ee8 48%, #0562d8 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    inset 0 -3px 0 rgba(0,55,165,.55),
    0 0 0 2px rgba(120,245,255,.95),
    0 0 14px rgba(0,210,255,.95),
    0 0 30px rgba(0,120,255,.75) !important;
  overflow: hidden !important;
  animation: umadroSolidButtonPulse 1.4s ease-in-out infinite alternate !important;
}
#hero .download img {
  position: relative !important;
  z-index: 10001 !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  filter: brightness(1.08) saturate(1.12) contrast(1.08) !important;
  animation: none !important;
}
#hero .download a::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 10002 !important;
  pointer-events: none !important;
  border-radius: inherit !important;
  background: linear-gradient(110deg, transparent 0 35%, rgba(255,255,255,.48) 48%, transparent 61% 100%) !important;
  transform: translateX(-145%) !important;
  animation: umadroButtonShine 2.2s ease-in-out infinite !important;
  filter: none !important;
}
#hero .download a::after {
  content: "" !important;
  position: absolute !important;
  inset: -16px !important;
  z-index: -1 !important;
  pointer-events: none !important;
  border-radius: 24px !important;
  background: radial-gradient(ellipse at center, rgba(0,210,255,.42) 0%, rgba(0,125,255,.20) 48%, transparent 72%) !important;
  filter: blur(8px) !important;
}
@keyframes umadroSolidButtonPulse {
  from { transform: scale(1); box-shadow: inset 0 1px 0 rgba(255,255,255,.85), inset 0 -3px 0 rgba(0,55,165,.55), 0 0 0 2px rgba(120,245,255,.9), 0 0 12px rgba(0,210,255,.8), 0 0 24px rgba(0,120,255,.55); }
  to { transform: scale(1.045); box-shadow: inset 0 1px 0 rgba(255,255,255,1), inset 0 -3px 0 rgba(0,55,165,.62), 0 0 0 2px rgba(180,255,255,1), 0 0 18px rgba(0,225,255,1), 0 0 38px rgba(0,130,255,.85); }
}
@keyframes umadroButtonShine {
  0%, 35% { transform: translateX(-145%); }
  65%, 100% { transform: translateX(145%); }
}
@media (max-width:1200px){ #hero .download{bottom:135px !important;} }
@media (max-width:991px){ #hero .download{bottom:110px !important;} }
@media (prefers-reduced-motion:reduce){ #hero .download a,#hero .download a::before{animation:none !important;} }


/* ===== UmadRO Download Button: slightly smaller + lower ===== */
#hero .download {
    width: 235px !important;
    max-width: 235px !important;
    bottom: 62px !important;
    z-index: 100 !important;
}
#hero .download a,
#hero .download img {
    width: 100% !important;
    max-width: 235px !important;
    height: auto !important;
}
@media (max-width: 1200px) {
    #hero .download {
        width: 215px !important;
        max-width: 215px !important;
        bottom: 55px !important;
    }
}
@media (max-width: 991px) {
    #hero .download {
        width: 195px !important;
        max-width: 195px !important;
        bottom: 48px !important;
    }
}


/* ===== UmadRO FINAL: Download button ABOVE cloud/mist effects ===== */
/* Cloud layers stay behind the clickable button. */
#hero::before,
#hero::after {
    z-index: 12 !important;
    pointer-events: none !important;
}

/* Force the download container into its own top stacking layer. */
#hero .download {
    position: absolute !important;
    z-index: 9999 !important;
    isolation: isolate !important;
    width: 225px !important;
    max-width: 225px !important;
    bottom: 48px !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    mix-blend-mode: normal !important;
}

/* Button and image must not inherit any cloud transparency/filter. */
#hero .download a {
    position: relative !important;
    z-index: 10000 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
}

#hero .download img {
    position: relative !important;
    z-index: 10001 !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter:
      saturate(1.45)
      contrast(1.18)
      brightness(1.08)
      drop-shadow(0 0 5px rgba(0,220,255,.95))
      drop-shadow(0 0 13px rgba(0,145,255,.80)) !important;
}

/* Keep animation on the button itself, never on opacity. */
#hero .download {
    animation: umadroFrontButtonPulse 1.8s ease-in-out infinite !important;
}
@keyframes umadroFrontButtonPulse {
    0%,100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.035); }
}

@media (max-width:1200px) {
    #hero .download {
        width: 210px !important;
        max-width: 210px !important;
        bottom: 44px !important;
    }
}
@media (max-width:991px) {
    #hero .download {
        width: 190px !important;
        max-width: 190px !important;
        bottom: 38px !important;
    }
}


/* ===== UmadRO FINAL: NO CLOUD OVERLAY + DOWNLOAD FULLY IN FRONT ===== */

/* Completely disable the CSS cloud/smoke overlays that were covering the button. */
#hero::before,
#hero::after {
    content: none !important;
    display: none !important;
    background: none !important;
    filter: none !important;
    opacity: 0 !important;
    animation: none !important;
}

/* Remove transition pseudo-elements from the content section too. */
#main-cont::before,
#main-cont::after {
    content: none !important;
    display: none !important;
    background: none !important;
    filter: none !important;
    opacity: 0 !important;
}

/* Keep the hero clean and let the existing artwork/background show naturally. */
#hero {
    overflow: visible !important;
}

/* Real clickable Download button: fully above everything. */
#hero .download {
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    bottom: 28px !important;
    width: 220px !important;
    max-width: 220px !important;
    height: auto !important;
    z-index: 2147483640 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    isolation: isolate !important;
    animation: umadroSolidFrontPulse 1.8s ease-in-out infinite !important;
}

#hero .download a {
    display: block !important;
    position: relative !important;
    z-index: 2147483641 !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
}

#hero .download img {
    display: block !important;
    position: relative !important;
    z-index: 2147483642 !important;
    width: 100% !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    mix-blend-mode: normal !important;
    filter:
        saturate(1.65)
        contrast(1.28)
        brightness(1.12)
        drop-shadow(0 0 4px rgba(0,240,255,1))
        drop-shadow(0 0 10px rgba(0,150,255,.95)) !important;
}

@keyframes umadroSolidFrontPulse {
    0%,100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.025);
    }
}

@media (max-width:1200px) {
    #hero .download {
        width: 205px !important;
        max-width: 205px !important;
        bottom: 24px !important;
    }
}
@media (max-width:991px) {
    #hero .download {
        width: 185px !important;
        max-width: 185px !important;
        bottom: 20px !important;
    }
}


/* ===== UmadRO: soft image-to-white transition like reference #2 ===== */
/* No cloud shapes — only a smooth feathered fade from the hero into white. */
#hero {
    overflow: visible !important;
    margin-bottom: 0 !important;
}

/* Keep hero cloud pseudo effects disabled. */
#hero::before,
#hero::after {
    content: none !important;
    display: none !important;
}

/* White content starts normally, but its top fade overlaps the hero. */
#main-cont {
    position: relative !important;
    z-index: 20 !important;
    margin-top: 0 !important;
    background: #fff !important;
    border: 0 !important;
    box-shadow: none !important;
}

/* Soft narrow fade band that removes the hard straight boundary. */
#main-cont::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    top: -115px !important;
    width: 100% !important;
    height: 118px !important;
    pointer-events: none !important;
    z-index: 21 !important;
    opacity: 1 !important;
    filter: none !important;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.00) 0%,
        rgba(255,255,255,0.05) 16%,
        rgba(255,255,255,0.14) 31%,
        rgba(255,255,255,0.30) 48%,
        rgba(255,255,255,0.55) 66%,
        rgba(255,255,255,0.80) 82%,
        rgba(255,255,255,0.96) 94%,
        #ffffff 100%
    ) !important;
}

#main-cont::after {
    content: none !important;
    display: none !important;
}

/* Keep the clickable Download button fully above the fade. */
#hero .download {
    z-index: 2147483640 !important;
    opacity: 1 !important;
    visibility: visible !important;
}
#hero .download a,
#hero .download img {
    position: relative !important;
    z-index: 2147483641 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Slightly shorter fade on smaller screens. */
@media (max-width: 1200px) {
    #main-cont::before {
        top: -95px !important;
        height: 98px !important;
    }
}
@media (max-width: 991px) {
    #main-cont::before {
        top: -75px !important;
        height: 78px !important;
    }
}

/* ===== FIX: full-width seamless hero -> white fade (removes side rectangles) ===== */
#main-cont::before {
    left: 50% !important;
    right: auto !important;
    width: 100vw !important;
    max-width: none !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.00) 0%,
        rgba(255,255,255,0.05) 16%,
        rgba(255,255,255,0.14) 31%,
        rgba(255,255,255,0.30) 48%,
        rgba(255,255,255,0.55) 66%,
        rgba(255,255,255,0.80) 82%,
        rgba(255,255,255,0.96) 94%,
        #ffffff 100%
    ) !important;
}

/* ===== 2026-08-13 FIX: remove center white rectangle / side seams ===== */
/* The content wrapper is only 1120px wide. It must NOT paint its own white box. */
#main-cont {
    background: transparent !important;
    position: relative !important;
    z-index: 20 !important;
    margin-top: 0 !important;
}

/* Paint the solid-white section across the ENTIRE viewport, behind the content. */
#main-cont::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 50% !important;
    width: 100vw !important;
    max-width: none !important;
    transform: translateX(-50%) !important;
    background: #fff !important;
    pointer-events: none !important;
    z-index: -1 !important;
}

/* One full-screen-width feathered fade; no boxed left/right edges. */
#main-cont::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    top: -150px !important;
    width: 100vw !important;
    height: 152px !important;
    max-width: none !important;
    transform: translateX(-50%) !important;
    pointer-events: none !important;
    z-index: 1 !important;
    filter: none !important;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,.03) 12%,
        rgba(255,255,255,.10) 26%,
        rgba(255,255,255,.24) 42%,
        rgba(255,255,255,.45) 58%,
        rgba(255,255,255,.68) 72%,
        rgba(255,255,255,.86) 84%,
        rgba(255,255,255,.96) 93%,
        #fff 100%
    ) !important;
}

/* Keep the download button above the fade. */
#hero .download,
#hero .download a,
#hero .download img {
    z-index: 100 !important;
}
