/*---------------------------------

	 .:: RedDragonElite ::.
	[ https://rd-elite.com ]

----------------------------------*/

* { box-sizing:border-box }
*:before, *:after { box-sizing:inherit }

/* Basic styles */
html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  font-family: @font-family-base;
  /* We dont want an Scrollbar since it looks buggy if you open an Modal */
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}

html::-webkit-scrollbar {
  /* We dont want an Scrollbar since it looks buggy if you open an Modal */
  width: 0px; /* For Chrome, Safari, and Opera */
}

:root {
    --neon-red: #ff1744;
    --dark-background: #121212;
    --card-background: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;

	/* Erweitertes Neon-Farbspektrum */
	--neon-blood-ruby-red: #8B0000;     /* Dunkles Blutrubin */
	--neon-matrix-green: #00FF66;       /* Matrix-Neongrün */
	--neon-purple-green: #8A2BE2;       /* Violettes Neongrün */
	--neon-electric-blue: #00FFFF;      /* Elektrisches Blau */
	--neon-hot-pink: #FF1493;           /* Leuchtendes Pink */
	--neon-acid-green: #39FF14;         /* Säure-Neongrün */
	--neon-orange: #FF4500;             /* Neon-Orange */
	--dark-background: rgba(18,18,18,0.9);	
	--neon-red: #ff1744;
	--dark-background: rgba(18,18,18,0.9);
	--loader-background: rgba(18,18,18,0.8);
}

body {
	background-color: var(--dark-background);
	color: var(--text-primary);
	font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	margin: 0;
	padding: 0;
	/* overflow-x: hidden; */
	overflow-x: auto;  /* Erlaubt horizontales Scrollen */
	overflow-y: auto;  /* Erlaubt vertikales Scrollen */
}

.neon-border {
	border: 2px solid transparent;
	border-image: linear-gradient(45deg, var(--neon-red), transparent 50%);
	border-image-slice: 1;
	box-shadow: 0 0 15px rgba(255, 23, 68, 0.3);
}

.header {
	background: linear-gradient(135deg, rgba(18,18,18,0.9), rgba(30,30,30,0.9));
	padding: 2rem 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, rgba(255,23,68,0.1), transparent 50%);
	z-index: 1;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1rem;
	padding: 2rem;
}

.feature-card {
	background-color: var(--card-background);
	border-radius: 12px;
	padding: 1.5rem;
	transition: transform 0.3s ease;
}

.feature-card:hover {
	transform: scale(1.05);
	box-shadow: 0 0 20px rgba(255, 23, 68, 0.2);
}

.demo-notice {
	background-color: rgba(255, 23, 68, 0.1);
	border-left: 4px solid var(--neon-red);
	padding: 1rem;
	margin: 1rem 0;
}

/* body {
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
  line-height: 1.42857143;
  color: #555;
  background-color: #f7f7f7;
  -webkit-font-smoothing antialiased
  overflow: hidden;
    cursor: url('/Core/Assets/cursor.png');
  /* First attempt to remove Scrollbar 
  wich endet up in No Scrollbar 
  and not Scrollable -.- xD
  overflow-x: hidden;
  overflow-y: scroll; */
} */

a { text-decoration: none }

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Ruby red text effects */
.red-text.accent-4 {
	color: #8B0000 !important; /* Dark ruby red */
	text-shadow: 0 0 10px rgba(220, 20, 60, 0.7);
	animation: neon-flicker 1.5s infinite alternate;
}

h3, h4, h5 {
	color: #8B0000;
	text-shadow: 0 0 10px rgba(220, 20, 60, 0.7);
}

.white-text {
	color: #e0e0e0;
	text-shadow: 0 0 5px rgba(220, 20, 60, 0.5);
}

.green-text {
	color: #006400 !important; /* Dark green */
	text-shadow: 0 0 10px rgba(220, 20, 60, 0.7);
}

.red-text {
	color: #8B0000 !important; /* Dark ruby red */
	text-shadow: 0 0 10px rgba(220, 20, 60, 0.7);
}

.blue-text {
	color: #00008B !important; /* Dark blue */
	text-shadow: 0 0 10px rgba(220, 20, 60, 0.7);
}

/* Neon flicker animation */
@keyframes neon-flicker {
	0%, 18%, 22%, 25%, 53%, 57%, 100% {
		text-shadow: 0 0 10px rgba(220, 20, 60, 0.7);
	}
	20%, 24%, 55% {
		text-shadow: none;
	}
}
		
/********************
*
* DROPDOWN STYLES
*
********************/

.dropdown-content{
   width: max-content !important;
   height:auto !important; 
   padding-top:0px;
}

/***********************
*
* MAIN HEADER STYLE 
*
***********************/

.fixedheader {
  position: fixed;
  top: 0;
  left: 0;
  margin: auto;
  width: 100%;
  pointer-events:auto; 
  z-index: 50;
}

header {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 7rem;
    padding: 0 10px;
    position: fixed;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    top: 0;
    width: 100%
}

.site-logo {
    transition: color 200ms cubic-bezier(.55, 0, .1, 1);
    color: #30acff;
    font-size: 3rem;
}

.ok-header__logo:hover {color: #546edb}

/* okayNav styles */
body.okayNav-loaded {
  overflow-x: hidden;
}
.okayNav:not(.loaded) {
  visibility: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.okayNav ul {
  /* We want two navigations - one hidden and one visible */
  float: right;
}
.okayNav a {
  /* Links general styling */
  color: #2e2e33;
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
  z-index: 1;
}
.okayNav__nav--visible {
  overflow: hidden;
  white-space: nowrap;
}
.okayNav__nav--visible li {
  display: inline-block;
}
.okayNav__nav--visible a {
  /* Link styling for the visible part of the nav */
  /* display: block;
  transition: color 200ms cubic-bezier(0.55, 0, 0.1, 1); */
  padding: 5px 5px;
}
.okayNav__nav--visible a:hover {
  /* color: #546edb; */
}
/* Link styling for the off-screen part of the nav */
.okayNav__nav--invisible {
  position: fixed;
  top: 70px;
  bottom: 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}
.okayNav__nav--invisible a {
  background: #fff;
  width: 240px;
  display: block;
  padding: 15px;
}
.okayNav__nav--invisible.nav-left {
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.okayNav__nav--invisible.nav-right {
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.okayNav__nav--invisible.transition-enabled {
  transition: -webkit-transform 400ms cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 400ms cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 400ms cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 400ms cubic-bezier(0.55, 0, 0.1, 1);
}
.okayNav__nav--invisible.nav-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
/* Kebab icon */
.okayNav__menu-toggle {
  position: relative;
  transition: -webkit-transform 400ms cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 400ms cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 400ms cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 400ms cubic-bezier(0.55, 0, 0.1, 1);
  cursor: pointer;
  width: 40px;
  height: 20px;
  float: left;
  z-index: 1;
  top: 15px;
}
.okayNav__menu-toggle.okay-invisible {
  position: absolute;
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.okayNav__menu-toggle span {
  display: block;
  position: absolute;
  margin: auto;
  height: 4px;
  width: 4px;
  background: #2e2e33;
  border-radius: 50%;
  left: 0;
  right: 0;
  pointer-events: none;
}
.okayNav__menu-toggle span:nth-child(1) {
  top: 0;
}
.okayNav__menu-toggle span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.okayNav__menu-toggle span:nth-child(3) {
  bottom: 0;
}
.okayNav__menu-toggle.icon--active {
  /* Kebab icon when off-screen nav is open */
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.okayNav__menu-toggle.icon--active span {
  background: #546edb;
}

/********************
*
* MATERIAL ALERT BOXES
*
********************/


/*temp strong style | How to use: <strong> */
strong{
    /* font-weight: bolder !important; */
	font-weight: 500 !important;
}

/* How to use: class="strong" */
.strong{
    /* font-weight: bolder !important; */
    /* font-size:large; */
	font-weight: bold;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;  
    -webkit-font-smoothing antialiased;	
}

/* Making Small text available in Class instead of <small> Tag. | How to use: class="small" */
.small {
    font-size:small;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;  
    -webkit-font-smoothing antialiased;	
}

.xsmall {
    font-size:x-small;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    -webkit-font-smoothing antialiased;  	
}

/* START OF ANIMATED TEXT CPEN CSS */

.animatedtitle {
    font-family: Michroma;
	text-align: center;
	color: #990000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 15vh;
	letter-spacing: 1px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto; 
    -webkit-font-smoothing antialiased; 	
}
h1anim {
	background-image: url(url(https://dl.dropbox.com/s/r2s8s2r17wi0xm6/flame.png?dl=0);
	background-size: cover;
	color: transparent;
	-moz-background-clip: text;
	-webkit-background-clip: text;
	text-transform: uppercase;
	font-size: 60px;
	line-height: .75;
	margin: 2px 0;
    -webkit-font-smoothing antialiased;	
}

/* END OF ANIMATED TEXT CPEN CSS */
/* START WELL HOLLOW TRANSPARENT CARD */
.well-hollow {
  min-height: auto;
  min-width: auto;
  padding: 19px;
  z-index: 80;
  top: 0px;
  right: 0px;
  background: rgba(0, 0, 0, 0.6);
  margin-bottom: 0 px;
  border: 0.5px solid #752525;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
/* END WELL HOLLOW */

/********************
*
* ANIMATION STYLES
*
********************/

/* START WELCOME / MoveINS ANIMATION  */

.movein-anim--left{
  display: block;
  /* font-size: 20px;
  font-weight: 200; */
  letter-spacing: 1px;
  
  animation-name: moveInLeft;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  
  /*animation-delay: 3s;*/
}

.movein-anim--right{
  display: block;
  /* font-size: 12px;
  font-weight: 200; */
  letter-spacing: 1px;
  
  animation: moveInRight 1s ease-in-out;
}

@keyframes moveInLeft{
  0%{
    opacity: 0;
    transform: translateX(-100px);
  }
  
  80%{
    opacity: 1;
    transform: translateX(10px);
  }
    
  100%{
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes moveInRight{
  0%{
    opacity: 0;
    transform: translateX(100px);
  }
  
  80%{
    opacity: 1;
    transform: translateX(-10px);
  }
    
  100%{
    opacity: 1;
    transform: translateX(0);
  }
}

.move-anim--flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes flipInX {
  0% {
  -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  opacity: 0;
  }
  40% {
  -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  }
  60% {
  -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  opacity: 1;
  }
  80% {
  -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
  -webkit-transform: perspective(400px);
  transform: perspective(400px);
  }
  }
  @keyframes flipInX {
  0% {
  -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  opacity: 0;
  }
  40% {
  -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  }
  60% {
  -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  opacity: 1;
  }
  80% {
  -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
  -webkit-transform: perspective(400px);
  transform: perspective(400px);
  }
  }

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}

/* Add animation to "page navigation" */
.animate-top {
  position: relative;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 1s;
  animation-name: animatetop;
  animation-duration: 1s
}

@-webkit-keyframes animatetop {
  from { top:-100px; opacity:0 } 
  to { top:0px; opacity:1 }
}

@keyframes animatetop { 
  from{ top:-100px; opacity:0 } 
  to{ top:0; opacity:1 }
}

/* START WELCOME / MoveINS ANIMATION  */

.movein-anim--left{
  display: block;
  /* font-size: 20px;
  font-weight: 200; */
  letter-spacing: 1px;
  
  animation-name: moveInLeft;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  
  /*animation-delay: 3s;*/
}

.movein-anim--right{
  display: block;
  /* font-size: 12px;
  font-weight: 200; */
  letter-spacing: 1px;
  
  animation: moveInRight 1s ease-in-out;
}

@keyframes moveInLeft{
  0%{
    opacity: 0;
    transform: translateX(-100px);
  }
  
  80%{
    opacity: 1;
    transform: translateX(10px);
  }
    
  100%{
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes moveInRight{
  0%{
    opacity: 0;
    transform: translateX(100px);
  }
  
  80%{
    opacity: 1;
    transform: translateX(-10px);
  }
    
  100%{
    opacity: 1;
    transform: translateX(0);
  }
}

.BounceInA {
  animation: bounceIn 1s ease-in-out;
  width: auto;
}
@keyframes bounceIn {
  0% {
    transform: translateY(-1000px);
  }
  60% {
    transform: translateY(200px);
  }
  100% {
    transform: translateY(0px);
  }
}
 
/********************
*
* GAMECORE STYLES
*
********************/

/* Neue Styles für die Gameplay-Systeme */
.mission-overlay {
    position: fixed;
    top: 80px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    padding: 15px;
    border-radius: 8px;
    z-index: 1000;
}

.combat-ui {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    padding: 15px;
    border-radius: 8px;
    z-index: 1000;
}

.damage-indicator {
    position: absolute;
    color: red;
    font-weight: bold;
    animation: floatUp 1s ease-out;
    pointer-events: none;
}

@keyframes floatUp {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(-50px); opacity: 0; }
}

.shop-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    padding: 15px;
}

.shop-item {
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.property-info {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 4px;
    margin: 10px 0;
}

.property-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}