* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}


body {
    background-color: #0a0608;
    color: #f9f9f9;
}

::-webkit-scrollbar {
    width: 5px;
  }

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #8b0000;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #cc0000;
}

a {
    color: #f9f9f9;
    transition: color .2s;
    text-decoration: none;
}

a:hover {
    color: #f9f9f9bd!important;
}


/* Button My Account UserCP */
.btn-starter-pack {
    outline: 0;
    background-color: #cc2200;
    color: #f9f9f9;
    padding: 0px 10px;
    width: 100%;
    display: block;
    margin-top: 2px;
    border: 0;
    transition: .2s;
}

.btn-starter-pack:hover {
    background-color: #cc2200bd;
    color: #f9f9f9;
}


/* Tag Class */
.tag-news, .tag-guides, .changelog-added, .changelog-changes, .changelog-deleted, .changelog-fixed {
	padding: 5px;
    font-family: 'Tanker';
    margin-right: 5px;
}

.tag-news {
    background-color: #8b0000;
}

.tag-guides {
    background-color: #1a0a0a;
    color: #f9f9f9;
}

.changelog-added {
    background-color: #1a3a6e;
}

.changelog-changes {
    background-color: #7a4a00;
}

.changelog-fixed {
    background-color: #8b4500;
}

.changelog-deleted {
    background-color: #8b0000;
}

.admincp-button {
    position: fixed;
    top: 10px;
    right: 10px;
    font-size: 10px;
    background: black;
    border: 2px solid #8b0000 !important;
    color: white;
    font-weight: bold !important;
}

.myaccount-character-block img {
    max-width: 50px;
}

.user-online-svt {
    color: #f9f9f9; 
    font-weight: bold;
}

.user-online-svt .sv-ons-st {
    margin-left: 2px;
    color: #ff4422;
}

/* ===================== NAVBAR LATERAL ===================== */
.navbar-side {
    position: fixed;
    height: 100%;
    width: 200px;
    overflow: auto;
    box-shadow: #8b0000 0px 0px 20px 0px;
    background: linear-gradient(180deg, #1a0505 0%, #0d0208 60%, #080010 100%);
    transition: width 0.3s ease, opacity 0.3s ease;
    border-right: 1px solid #3d0000;
}

.navbar-side img {
    width: 100%;
    margin: 20px 0px;
    filter: drop-shadow(#8b0000 0px 0px 10px);
}

.navbar-side .img-nav {
    transition: all .3s ease-out;
}

.navbar-side .img-nav:hover {
    filter: brightness(.5);
}

.navbar-side-ul {
    list-style: none;
    font-weight: bolder;
    padding: 0;
    margin: 30px 0;
    width: 100%;
}

.navbar-side-link {
    width: 100%;
    padding: 10px 0;
    display: block;
    color: #f9c08a;
    text-align: center;
    margin: 5px 0px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .3s ease-out;
    letter-spacing: 1px;
    font-size: 13px;
}

.navbar-side-link:hover,
.navbar-side-bottom div .register-btn:hover,
.navbar-side-bottom div .login-btn:hover
{
    background: rgba(139, 0, 0, 0.3);
    color: #ff6633;
    box-shadow: inset #8b0000 0 0 20px;
}

.navbar-side-bottom {
    text-align: center;
    width: 100%;
}

.navbar-side-bottom div .register-btn {
    display: block;
    padding: 5px 0px;
    margin-inline: 10px;
    color: #f9f9f9;
    border-radius: 20px;
    text-decoration: none;
    background: linear-gradient(135deg, #8b0000, #cc2200);
    transition: all .3s ease-out;
    border: 1px solid #ff4422;
}


.navbar-side-bottom div .login-btn {
    display: block;
    padding: 5px 0px;
    margin-inline: 10px;
    color: #f9f9f9;
    border-radius: 20px;
    text-decoration: none;
    background: linear-gradient(135deg, #1a1a3e, #2a2a6e);
    transition: all .3s ease-out;
    border: 1px solid #4466cc;
}



.navbar-side.collapsed {
  width: 0;
  opacity: 0;
}

#sidebar-toggle-btn {
    position: fixed;
    z-index: 999;
    color: #f9c08a;
    border: none;
    cursor: pointer;
    background: #1a0505;
    padding: 2px 10px;
    margin: 5px;
    border: 1px solid #3d0000;
}

#sidebar-toggle-btn:hover {
    color: #ff6633;
}

.navbar-side.collapsed ul {
  display: none;
}

#main-content.expanded {
  margin-left: 0px;
  transition: margin-left 0.3s ease;
}

@media screen and (max-width: 768px) {
  .container {
    display: flex;
    flex-direction: column;
  }


  .navbar-side {
      width: 100%;
  }
  
  .navbar-side img {
      display: none;
  }
  .responsive-main {
      display: none;
  }
  .navbar-side.collapsed ~ #main-content {
    margin-left: 0;
  }
  .navbar-side.collapsed ul {
    display: none;
  }
  
  .navbar-side.collapsed .navbar-side-ul {
    display: block;
    text-align: center;
  }

  .navbar-side.collapsed .navbar-side-ul li {
    margin-bottom: 10px;
  }

  .navbar-side.collapsed .navbar-side-ul li:last-child {
    margin-bottom: 0;
  }

  .navbar-side.collapsed .navbar-side-ul li a {
    padding: 10px;
    background-color: #8b0000;
    color: #fff;
    display: block;
  }
}

/*********************/

body main {
    margin-left: 200px;
}

.f-sec {
    height: 100vh;
    background: url(../img/logo.jpg) center no-repeat;
    background-size: cover;
    background-color: #0a0608!important;
    color: white;
    padding: 10px;
}

.f-sec .home-s {
    display: flex;
    margin-inline: 50px;
    justify-content: center;
    flex-direction: column;
}

.f-sec .home-s .f-desc {
    color: #f9c08abd;
    max-width: 500px;
}

/* ===================== SECCIONES ===================== */
.s-sec {
    padding: 20px;
    box-shadow: inset black 0 0 15px;
    background: linear-gradient(135deg, #8b0000, #3d0000)!important;
    border-top: 1px solid #cc2200;
    border-bottom: 1px solid #cc2200;
}

.s-sec .s-sec-body {
    color: #f9f9f9;
    height: 100%;
    padding: 20px;
    background: linear-gradient(180deg, #1a0505 0%, #0d0208 100%);
    border: 1px solid #3d0000;
}

.s-sec .s-sec-body .sv-info-s {
    font-weight: bold;
    color: #ff4422;
}

.s-sec .s-sec-body .info-h-s li {
    transition: all .2s;
}

.s-sec .s-sec-body .info-h-s li:hover {
    font-style: italic;
    font-weight: bold;
    margin-left: 5px;
}

.r-sec {
    padding: 20px;
    background: linear-gradient(180deg, #0d0208 0%, #080010 100%);
}

.r-sec .r-body {
    background: linear-gradient(135deg, #8b0000, #3d0000)!important;
    box-shadow: inset black 0 0 15px;
    padding: 20px;
    border: 1px solid #cc2200;
}

.r-sec .r-body .nav-tabs {
    background: linear-gradient(180deg, #1a0505 0%, #0d0208 100%);
    border-bottom: none;
    padding: 5px;
}

.r-sec .r-body .nav-tabs .nav-item {
    margin-inline: 2px;
}

.r-sec .r-body .nav-tabs .nav-item .nav-link {
    margin: 0;
    border-radius: 0;
    color: #f9c08a;
}

.r-sec .r-body .nav-tabs .nav-item .nav-link.active {
    color: #ff4422!important;
    background-color: rgba(139,0,0,0.3);
}


.alert {
    color: #ff4422;
    background-color: #1a0505!important;
    border-radius: 0;
    border: 1px solid #3d0000;
}

.text-primary {
   color: #ff4422!important;
}

.table {
    --bs-table-bg: #1a0505;
}

.table th {
    border-bottom: none;
    color: #f9c08a;
}

table tr img {
    max-width: 50px;
}

table tr {
    transition: all .2s;
}

table tr:hover {
    --bs-table-bg: #000!important;
    border: #3d0000 1px solid;
}

.table td {
    border-bottom: none;
    color: white;
}

.table td .r-nameplayer {
    color: #f9c08a;
    font-weight: bold;
    text-decoration: none;
    transition: color .2s;
    cursor: pointer;
}

.table td .r-nameplayer:hover {
    color: #ff6633;
}

.text-muted {
    color: #ff4422!important;
}

.r-filterMenu {
    margin-top: 5px;
    padding: 10px;
    background: linear-gradient(135deg, #1a0515, #0d0010);
    display: flex;
    justify-content: center;
    border: 1px solid #3d0030;
}

.card {
    border-radius: 0;
    border: 1px solid #3d0000;
    --bs-card-bg: #120308;
    --bs-body-bg: #120308;
    background-color: #120308;
}

.card-body {
    border-radius: 0;
    --bs-card-bg: #120308;
    --bs-body-bg: #120308;
    background-color: #120308;
    border: none;
}

.rankings-class-filter-selection img {
    max-width: 50px;
}

.card-cs {
    width: 200px;
    height: 240px;
}

.main-modules {
    padding: 20px;
}

.modules-sec {
    padding: 20px;
    color: #f9f9f9;
    background: linear-gradient(135deg, #3d0000, #1a0505)!important;
    border: 1px solid #8b0000;
}

/* Modal */

.modal-content {
    padding: 20px;
    background: linear-gradient(180deg, #1a0505, #0d0208);
    border-radius: 0;
    text-align: center;
    border: 1px solid #8b0000;
}

.modal-content .form-control {
    background-color: rgba(139,0,0,0.15);
    border: 1px solid #3d0000;
    color: #f9f9f9;
    border-radius: 0;
}


.btn-primary {
    background: linear-gradient(135deg, #8b0000, #cc2200);
    border: 1px solid #ff4422;
    border-radius: 0;
    color: #f9f9f9;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #cc2200, #ff3300);
}

/* WebEngine Profile */
/* GUILD PROFILES */

.fixitemsview {padding-right:0px !important; background-color:#0a0608;}
.profiles_guild_card {
	width: 100%;
	background: #000000 url('../img/profiles/guild.jpg') no-repeat;
	background-size: cover;
	overflow: auto;
	-moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    -khtml-border-radius: 10px;
	border: 1px solid #8b0000;
	-moz-box-shadow: 0 0 15px #8b0000;
	-webkit-box-shadow: 0 0 15px #8b0000;
	box-shadow: 0 0 15px #8b0000;
	padding: 40px;
	color: #ffffff;
	text-shadow: 1px 1px 3px #000;
}
	.profiles_guild_card .guild_logo img {
		-moz-box-shadow: 0 0 10px #000;
		-webkit-box-shadow: 0 0 10px #000;
		box-shadow: 0 0 10px #000;
	}
	.profiles_guild_card .guild_name {
		font-family: 'Cinzel', serif;
		font-size: 24px;
		color: #f9c08a;
		font-weight: bold;
	}
	.profiles_guild_card table {
		table-layout: fixed;
	}
	.profiles_guild_card hr {
		    border-top: 1px solid #8b0000;
			margin-top: 30px;
			margin-bottom: 30px;
	}
	.profiles_guild_card .guild_members {
		font-family: 'Cinzel', serif;
		font-size: 24px;
		color: #f9c08a;
		font-weight: bold;
	}
	.profiles_guild_card .guild_members_list {
		margin-top: 30px;
	}

/* PLAYER PROFILES */
.profiles_player_card {
	width: 100%;
	overflow: auto;
	-moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    -khtml-border-radius: 10px;
	border: 1px solid #8b0000;
	-moz-box-shadow: 0 0 15px #8b0000;
	-webkit-box-shadow: 0 0 15px #8b0000;
	box-shadow: 0 0 15px #8b0000;
	padding: 20px;
}


	.DK.profiles_player_card, .BK.profiles_player_card, .BM.profiles_player_card, .DGK.profiles_player_card { background: url('../img/profiles/knight.jpg') no-repeat; background-size: cover; }
	.DW.profiles_player_card, .SM.profiles_player_card, .GM.profiles_player_card, .SW.profiles_player_card { background: url('../img/profiles/wiz.jpg') no-repeat; background-size: cover; }
	.ELF.profiles_player_card, .ME.profiles_player_card, .HE.profiles_player_card, .NE.profiles_player_card { background: url('../img/profiles/elf.jpg') no-repeat; background-size: cover; }
	.SUM.profiles_player_card, .BS.profiles_player_card, .DSM.profiles_player_card, .DS.profiles_player_card { background: url('../img/profiles/sum.jpg') no-repeat; background-size: cover; }
	.DL.profiles_player_card, .LE.profiles_player_card, .EL.profiles_player_card { background: url('../img/profiles/dl.jpg') no-repeat; background-size: cover; }
	.MG.profiles_player_card, .DM.profiles_player_card, .MK.profiles_player_card { background: url('../img/profiles/mg.jpg') no-repeat; background-size: cover; }
	.RF.profiles_player_card, .FM.profiles_player_card, .FB.profiles_player_card { background: url('../img/profiles/rf.jpg') no-repeat; background-size: cover; }
	.GL.profiles_player_card, .ML.profiles_player_card, .SL.profiles_player_card { background: url('../img/profiles/gl.jpg') no-repeat; background-size: cover; }
	.RW.profiles_player_card, .RSM.profiles_player_card, .GRM.profiles_player_card { background: url('../img/profiles/rw.jpg') no-repeat; background-size: cover; }
	.SLR.profiles_player_card, .SLRR.profiles_player_card, .MSLR.profiles_player_card, .SLTR.profiles_player_card { background: url('../img/profiles/sl.jpg') no-repeat; background-size: cover; }
  .LIW.profiles_player_card, .LIM.profiles_player_card, .SHW.profiles_player_card, .LUW.profiles_player_card { background: url('../img/profiles/liw.jpg') no-repeat; background-size: cover; }
	.LEM.profiles_player_card, .WAM.profiles_player_card, .ARM.profiles_player_card, .MYM.profiles_player_card { background: url('../img/profiles/lem.jpg') no-repeat; background-size: cover; }
	.IK.profiles_player_card, .IMK.profiles_player_card, .IM.profiles_player_card, .MYK.profiles_player_card { background: url('../img/profiles/ik.jpg') no-repeat; background-size: cover; }

.profiles_player_content {
	float: right;
	width: 50%;
	color: #fff;
}

.profiles_player_table {
	width: 100%;
}

.profiles_player_table .cname {
	font-family: 'BebasNeueRegular', serif;
	text-align: center;
	font-size: 24px;
	color: #f9c08a;
	font-weight: bold;
}

.profiles_player_table .cclass {
	text-align: center;
	font-size: 11px;
	color: #eee;
}

.profiles_player_table .isoffline {
	color: #ff4422;
}

.profiles_player_table .isonline {
	color: #4488ff;
}

.profiles_player_table_info {
	table-layout: fixed;
	margin-top: 10px;
}
.profiles_player_table_info tr td {
	padding: 3px 10px;
}
.profiles_player_table_info tr td:first-child {
	text-align: right;
}



/* ITEM TOOLTIP */
.item-box {
    background: rgba(0, 0, 0, 0.85);
    text-align: center;
    width: 100%;
    white-space: nowrap;
    min-width: 200px;
    padding-bottom: 10px;
    font-size: 12px;
	padding-bottom:25%;
    border: 1px solid #8b0000;
}
.item-name {
    padding: 4px 8px;
}
.item-serial {
    color: #ffffff !important;
    padding-top: 10px;
}
.item-info {
    color: #ffffff !important;
}
.item-info-section {
    padding-top: 10px;
}
.item-class-req {
    color: #b4b4b4 !important;
}
.item-opt-jog {
    color: #ff99cc !important;
    padding-top: 10px;
}
.item-opt-harmony {
    color: #ffcc00 !important;
    padding-top: 10px;
}
.item-opt-skill {
    color: #9aadd5 !important;
}
.item-opt-luck {
    color: #9aadd5 !important;
}
.item-opt-life {
    color: #9aadd5 !important;
}
.item-opt-exc {
    color: #4d668d !important;
    padding-top: 10px;
}
.item-opt-anc {
    color: #9aadd5 !important;
    padding-top: 10px;
}
.item-opt-socket {
    color: #4d668d !important;
    padding-top: 10px;
}
.item-expiration {
    color: #ff544f !important;
    padding-top: 10px;
}


.profile_item0 {
    position: relative;
    left: -175px;
    top: 305px;
    width: 68px;
    height: 132px;
  }
  .profile_item1 {
    position: relative;
    left: 220px;
    top: 170px;
    width: 68px;
    height: 132px;
  }
  .profile_item2 {
    position: relative;
    left: -110px;
    top: -215px;
    width: 68px;
    height: 100px;
  }
  .profile_item3 {
    position: relative;
    left: -125px;
    top: -200px;
    width: 68px;
    height: 100px;
  }
  .profile_item4 {
    position: relative;
    left: -80px;
    top: -100px;
    width: 68px;
    height: 68px;
  }
  .profile_item5 {
    position: relative;
    left: 160px;
    top: -335px;
    width: 68px;
    height: 68px;
  }
  .profile_item6 {
    position: relative;
    left: 127px;
    top: -235px;
    width: 68px;
    height: 68px;
  }
  .profile_item7 {
    position: relative;
    left: 185px;
    top: -625px;
    width: 164px;
    height: 100px;
  }
  .profile_item8 {
    position: relative;
    left: -215px;
    top: -700px;
    width: 68px;
    height: 68px;
  }
  .profile_item9 {
    position: relative;
    left: 80px;
    top: -745px;
    width: 36px;
    height: 36px;
  }
  .profile_item10 {
    position: relative;
    left: -80px;
    top: -573px;
    width: 36px;
    height: 36px;
  }
  .profile_item11 {
    position: relative;
    left: 127px;
    top: -610px;
    width: 36px;
    height: 36px;
  }

.deidadbuttonfix { width:150px; border-radius:0px; height:38px}
.custom-select {
  position: relative;
  font-family: Arial; 
}

.custom-select input {
	float:right;
}

.custom-select select {
  display: none;
  width:250px;
}

.select-selected {
  background-color: #8b0000;
    width:250px;
}

.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

.select-items div,.select-selected {
  color: #f9c08a;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(139, 0, 0, 0.3) transparent;
  cursor: pointer;
  user-select: none;
}

.select-items {
  position: absolute;
  background-color: #1a0505;
  border: 1px solid #8b0000;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(139, 0, 0, 0.3);
}

:root {
    --item-color-exc: #2ff387;
    --item-color-socket-opt: #cc33cc;
    --item-color-socket: #cc66cc;
    --item-color-normal: #ffffff;
    --item-color-life-opt: #8cb0ea;
    --item-color-improved: #f4cb3f;
    --item-color-anc: #0066cc;
    --item-color-anc-setopt: #ffcc66;
    --item-color-nocolor: #f4cb3f;
    --item-color-fenrir: #8cb0ea;
    --item-color-fenrir-gold: #f4cb3f;
    --item-color-errtel-title: #ffffff;
    --item-color-errtel-opt: #8CB0EA;
    --item-color-errtel1: #ff0000;
    --item-color-errtel2: #8cb0ea;
    --item-color-errtel3: #e6bf3c;
    --item-color-errtel4: #26e027;
    --item-color-errtel5: #5b1659;
    --item-tooltip-bg: #1a0505;
}


/* Paypal */
.paypal-gateway-container {
	width: 100%;
}

.paypal-gateway-content {
	background: #fef2da;
	border: 3px solid #f79433;
	padding: 15px;
	overflow: auto;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-weight: bold;
}

.paypal-gateway-logo {
	width: 100%;
	height: 100px;
	background: #fff9ec url('../img/paypal-logo-200-68.png') no-repeat center;
	background-size: contain;
	margin-bottom: 15px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.paypal-gateway-conversion-rate {
	margin: 0px auto;
	text-align: center;
	color: #000;
	font-size: 18px;
	padding: 10px 0px;
}

.paypal-gateway-form {
	width: 100%;
	margin: 20px auto;
	text-align: center;
}

.paypal-gateway-form div {
	display: inline-block;
	padding: 0px 10px;
	color: #000;
	font-size: 24px;
}

.paypal-gateway-form input[type=text] {
	width: 60px;
	font-size: 24px;
	border: 3px solid #f79433;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	color: #f79433;
}

.paypal-gateway-continue {
	margin: 0px auto;
	text-align: center;
}

.paypal-gateway-continue input[type=submit] {
	background: url('../img/paypal-submit.jpg') no-repeat;
	width: 200px;
	height: 40px;
	border: 0px;
}

.module-requirements {
	font-size: 12px;
	margin-top: 20px;
}

/* Download */
.downloads-card {
    color: #f9f9f9;
    padding: 10px;
    margin-bottom: 5px;
}

.downloads-card .card {
    border-radius: 0;
    color: #f9f9f9;
    box-shadow: 0px 0px 10px 5px #8b0000;
    background: linear-gradient(180deg, #1a0505, #0d0208);
}

.downloads-card .card-body {
    --bs-card-bg: #1a0505;
    --bs-body-bg: #1a0505;
    background-color: #1a0505;
}

.download-description {
	font-size: 11px;
	position: relative;
	top: -7px;
	color: #aa6644;
}

/* Notice Module */
#accordionNews .accordion-item {
    margin: 10px 0px;
    --bs-accordion-bg: #1a0505;
    --bs-accordion-color: #f9f9f9;
    --bs-accordion-border-radius: 0;
    border: 1px solid #3d0000;
}

#accordionNews .news-readmore {
    color: #f9c08a;
}

#accordionNews .news-readmore:hover {
    color: #ff6633!important;
}

#accordionNews .accordion-button {
    color: #f9c08a;
    box-shadow: #8b0000 0px 0px 10px 1px;
    --bs-accordion-btn-bg: #1a0505;
    --bs-accordion-active-bg: #1a0505;
}

#accordionNews .notice-date {
    position: absolute;
    right: 50px;
}

#accordionNews .accordion-button:focus {
    border-color: none;
    box-shadow: #8b0000 0px 0px 10px 2px;
}

#accordionNews .accordion-button:focus-visible {
    outline: 0;
}

/* ===================== COUNTDOWN APERTURA ===================== */
.opening-countdown-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    gap: 18px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(10,0,5,0.75) 100%);
    padding: 40px 20px;
}

.opening-countdown-label {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    font-weight: 900;
    color: #ff4422;
    text-shadow:
        0 0 10px #ff4422,
        0 0 30px #8b0000,
        0 0 60px #3d0000,
        2px 2px 4px #000;
    letter-spacing: 6px;
    text-transform: uppercase;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { text-shadow: 0 0 10px #ff4422, 0 0 30px #8b0000, 0 0 60px #3d0000, 2px 2px 4px #000; }
    50%       { text-shadow: 0 0 20px #ff6633, 0 0 50px #cc2200, 0 0 90px #8b0000, 2px 2px 4px #000; }
}

.opening-date-text {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: #f9c08a;
    letter-spacing: 4px;
    text-shadow: 0 0 10px #f9c08a55, 1px 1px 3px #000;
    text-transform: uppercase;
}

.opening-countdown {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, #1a0505 0%, #0d0208 100%);
    border: 1px solid #8b0000;
    box-shadow:
        0 0 20px rgba(139,0,0,0.6),
        inset 0 0 15px rgba(0,0,0,0.7);
    padding: 18px 28px;
    min-width: 100px;
    position: relative;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.countdown-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff4422, transparent);
}

.countdown-num {
    font-family: 'Cinzel', serif;
    font-size: 62px;
    font-weight: 900;
    color: #ff4422;
    line-height: 1;
    text-shadow:
        0 0 10px #ff4422,
        0 0 25px #cc2200,
        2px 2px 6px #000;
    transition: color 0.3s;
}

.countdown-lbl {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    color: #f9c08a;
    letter-spacing: 3px;
    margin-top: 6px;
    text-shadow: 0 0 6px #f9c08a55;
}

.countdown-sep {
    font-family: 'Cinzel', serif;
    font-size: 50px;
    font-weight: 900;
    color: #8b0000;
    text-shadow: 0 0 15px #cc2200;
    animation: blinkSep 1s step-end infinite;
    margin-bottom: 18px;
}

@keyframes blinkSep {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
}

.opening-launched {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 900;
    color: #f9c08a;
    text-shadow: 0 0 20px #ff4422, 0 0 40px #8b0000, 2px 2px 4px #000;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: pulseGlow 1.5s ease-in-out infinite;
}

@media (max-width: 768px) {
    .opening-countdown-label { font-size: 24px; letter-spacing: 3px; }
    .countdown-block { padding: 12px 16px; min-width: 68px; }
    .countdown-num { font-size: 38px; }
    .countdown-sep { font-size: 32px; }
}
