body {
  background: url("../../images/background/background2a.png") no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  
  font-family: 'Lato', sans-serif;
}

:root{
    --bg: #f6f7fb;
    --card: #ffffff;
    --card2: #ffffff;
    --border: #e6e8f0;
    --text: #1f2937;
    --muted: #4b5563;
    --muted2: #6b7280;
    --accent: #635bff;
    --accent2: #4b44d6;
    --good: #0f9d58;
    --shadow: 0 8px 24px rgba(17, 24, 39, .10);
    --radius: 14px;
}


.stripe-wrap{
    max-width: 980px;
    margin: 0 auto;
    padding: 24px 16px;
    color: var(--text);
}

.stripe-hero{
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px 18px;
    margin-bottom: 16px;
}

.stripe-hero h2{
    margin: 0 0 8px 0;
    font-size: 22px;
    letter-spacing: .2px;
    color: var(--text);
}
.stripe-hero p{
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
    font-size: 14px;
}

.stripe-grid{
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 16px;
}
@media (max-width: 900px){
    .stripe-grid{ grid-template-columns: 1fr; }
}

.best-option {
    background: linear-gradient(90deg, #f8fbff, #ffffff);
    border-left: 4px solid #d6f700ff;
}

.best-badge {
    display: inline-block;
    margin-bottom: 6px;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #1f5fbf;
    background: #e8f1ff;
    border-radius: 6px;
}

.paybtn-best {
    background: linear-gradient(90deg, #4da3ff, #7bbcff);
    color: #fff;
    font-weight: bold;
}

.vip-badge {
    display: inline-block;
    margin-bottom: 6px;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    background: #f2f2f2;
    border-radius: 6px;
}

.card{
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px;
}

.card h3{
    margin: 0 0 10px 0;
    font-size: 16px;
    color: var(--text);
}


.small{
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
}

.badges{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.badge{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #f3f4ff;
    color: var(--muted);
    font-size: 12px;
}
.badge strong{ color: var(--text); font-weight: 700; }

.region-switch{
    display: flex;
    gap: 10px;
    margin-top: 12px;
}
.region-btn{
    flex: 1;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #f3f4f6;
    color: var(--text);
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    transition: transform .08s ease, background .2s ease, border-color .2s ease;
}
.region-btn:hover{ transform: translateY(-1px); background: #eef2ff; border-color: #c7c9d6; }
.region-btn.active{
    background: #e8e7ff;
    border-color: rgba(99,91,255,.45);
}

.table-wrap{
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--card);
    box-shadow: var(--shadow);
}

table{
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}
th, td{
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: middle;
    color: var(--text);
}
th{
    background: #f3f4f6;
    font-size: 13px;
    letter-spacing: .2px;
}
tr:hover td{
    background: #fafbff;
}

.price{
    color: var(--text);
    font-weight: 800;
}
.points{
    color: var(--good);
    font-weight: 900;
}

.paycell{
    width: 210px;
    text-align: right;
    white-space: nowrap;
}

.paybtn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 180px;
    border: none;
    border-radius: 12px;
    padding: 10px 14px;
    background: var(--accent);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    transition: transform .08s ease, background .2s ease;
}
.paybtn:hover{ transform: translateY(-1px); background: var(--accent2); }
.paybtn:active{ transform: translateY(0px); }


	#payment-wrapper {
		margin-top: 35px;
		margin-bottom: 35px;
	}

	.pay-card {
		background: #ffffff;
		border-radius: 10px;
		border: 1px solid #e5e5e5;
		padding: 22px 26px;
		margin-bottom: 22px;
		transition: box-shadow .15s, transform .15s;
	}

	.pay-card:hover {
		box-shadow: 0 6px 18px rgba(0,0,0,0.12);
		transform: translateY(-2px);
	}

	.pay-card a.tile-link {
		display: block;
		color: #333;
		text-decoration: none;
	}

	.pay-card .logo {
		height: 46px;
		margin-bottom: 12px;
	}

	.pay-card .title {
		font-size: 18px;
		font-weight: 600;
		margin-bottom: 4px;
		color: #222;
	}

	.pay-card .subtitle {
		font-size: 14px;
		color: #555;
		line-height: 1.45;
	}

	.pay-card .badge-soft {
		display: inline-block;
		font-size: 11px;
		padding: 4px 7px;
		border-radius: 6px;
		background: #f2f2f2;
		color: #444;
		margin-left: 8px;
	}

hr.sep{
    border: none;
    border-top: 1px solid var(--border);
    margin: 12px 0;
}

.fx-feniks {
  position: fixed;
  bottom: 30vh;          /* wysokość lotu */
  left: -250px;          /* start poza ekranem */
  width: 200px;          /* rozmiar feniksa */
  pointer-events: none;
  opacity: 0;
  z-index: 10;           /* nad tłem */
}

.fx-feniks img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 12px orange);
}

/* animacja lotu */
@keyframes fly-feniks {
  0%   { transform: translateX(0) scaleX(1); opacity: 0; }
  5%   { opacity: 1; }
  50%  { transform: translateX(120vw) scaleX(1); opacity: 1; }
  51%  { transform: translateX(120vw) scaleX(-1); opacity: 1; } /* zawrotka */
  95%  { opacity: 1; }
  100% { transform: translateX(0) scaleX(-1); opacity: 0; }
}

.img-responsive {
	width: 100%;
}

.container {
	/*background-color: #ffffff !important;*/
	width: 80% !important;
}

/* #7D1935 / bordowy
   #e4e4e4 / szary
   #f9780e  / pomarancz
   #37b7ce // jasny niebieski
   #004159 // ciemno niebieski
 */

.carousel {
	margin-top: 20px !important;
	/*width: 750px !important;*/
	width: 90%;
	position: relative;
	padding: 0;
	border-radius: 10px;
	overflow: hidden;
	background: #000;
	box-shadow: 0 0 14px 2px rgba(0,0,0,.55);
}

.carousel-fire-video {
	position: absolute;
	inset: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
	opacity: .78;
	mix-blend-mode: screen;
	pointer-events: none;
}

.carousel-inner {
	position: relative;
	z-index: 1;
	border-radius: 10px;
	overflow: hidden;
	background: #000;
}

.carousel-indicators,
.carousel-control-prev,
.carousel-control-next {
	z-index: 4;
}

.carousel-item  img {
	border-radius: 0;
	border: 0;
	padding: 0;
	box-shadow: none;
}

/* overlay */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* wyszarzenie */
  z-index: 9999; /* na wierzchu */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* spinner */
.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #f3f3f3; /* szare tło */
  border-top: 6px solid #f00712; /* niebieski pasek */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.item-shop {
	border-radius: 5px;
	border: 1px solid #7D1935;
	width: auto;
	height: auto;
	background-color: #e2e2e2;
	text-align: center;
	padding: 15px;
}

.item-shop .opis {
	border-radius: 5px;
	background-color: #ffffff;
	border: 1px solid #000000;
	padding: 5px;
	text-align: center;
}

.centred {
	margin-left: auto;
	margin-right: auto;
	float: none;
}

.btn-file {
    position: relative;
    overflow: hidden;
}
.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: white;
    cursor: inherit;
    display: block;
}

#topmenu {
	background-color: #e4e4e4;
}

#stopka {
	color: #ffffff !important;
}

.trhover:hover {
	background-color: #FFD700;
}

.trgold {
	background-color: #FFD700 !important;
}

.scrollToTop{
	width:100px; 
	height:130px;
	padding:10px; 
	text-align:center; 
	background: whiteSmoke;
	font-weight: bold;
	color: #444;
	text-decoration: none;
	position:fixed;
	top:75px;
	right:-10px;
	display: none;
	background: url('../../images/icons/up-arrow.png') no-repeat 0px 20px;
		z-index: 999;
}

@media screen and (max-width: 1024px) {
    .scrollToTop {
        display: none !important;
    }
}

@media screen and (max-width: 1024px) {
    #scrollToTop {
        display: none !important;
    }
}

.scrollToTop:hover{
	text-decoration:none;
}

#lastnews {
	background-color: #eff1f4;
	padding: 10px;
}
#lastnewcontent {
	background-color: #ffffff;
	padding: 10px;
}

 
 #tableindex  {
	background: #ffffff !important;
	border-radius: 5px;
 }
 
 
 .tableindex {
	 background: #ffffff !important;
	 border-radius: 5px;
 }
 
 .promoted-guild {
	 background-color: #FFD700 !important;
 }
 .card-header-white {
	 background-color: #ffffff !important;
 }
 
 .rozwijane {
	 text-decoration: none !important;
	 color: #000000 !important;
 }

.navbar {
    background-color: #111 !important;
    border: 2px solid #F9780E;
    border-radius: 12px;
    padding: 10px 20px;
    box-shadow: 0 0 20px rgba(249, 120, 14, 0.3);
    transition: all 0.3s ease;
}

.navbar-brand {
    color: #f9780e !important;
    font-size: 1.5rem;
    font-family: 'Metamorphous', cursive;
    transition: color 0.3s ease;
}

.navbar-brand:hover {
    color: #fff !important;
}

.navbar-nav .nav-link {
    color: #fff !important;
    padding: 8px 16px;
    font-weight: bold;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.navbar-nav .nav-link:hover {
    color: #F9780E !important;
    background-color: rgba(255, 255, 255, 0.05);
}

.navbar-nav .active > .nav-link,
.navbar-nav .show > .nav-link {
    color: #F9780E !important;
}

.navbar-toggler {
    background-color: #F9780E;
    border: none;
    border-radius: 6px;
}

.dropdown-menu {
    background-color: #1a1a1a;
    border: 1px solid #f9780e;
    border-radius: 10px;
    padding: 5px 0;
    min-width: 220px;
    box-shadow: 0 0 15px rgba(249, 120, 14, 0.2);
}

.dropdown-item {
    color: #ffffff;
    padding: 8px 16px;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: #F9780E;
    color: #000;
    font-weight: bold;
}

.bottomenu {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottomenu:hover {
    color: #37b7ce;
}

.navbar img {
    margin-right: 8px;
    transition: transform 0.2s ease;
}

.navbar img:hover {
    transform: scale(1.1);
}



.rama {
	border: 1px solid #e4e4e4;
	background-color: #ffffff;
	padding: 20px;
	border-radius: 5px;
}

.blink_me {
  animation: blinker 5s linear infinite;
}

@keyframes blinker {  
  50% { opacity: 0; }
}

#wartograc {
	/* background-color: #e4e4e4; */
	
	/* background: url("../../images/background/minibackground.jpg") no-repeat center center fixed; */
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
		
	


	padding: 5px 5px 40px 5px;
}
.nav-item {
	cursor: pointer;
}

.btn-primary {
	background-color: #000000;
	border: 2px solid #f9780e;
	
}


.btn-primary:hover {
	background-color: #F9780E;
	color: #000000;
	border: 2px solid #000000;
}

.page-item.active .page-link {
	background-color: #004159 !important;
	border: 1px solid #37b7ce !important;
	color: #ffffff;
}

.page-link {
	color: #37b7ce !important;
}



#cookieinfo * {
    margin: 0px;
    padding: 0px;
}

#cookieinfo {
    position: fixed;
    font-size: 12px;
    font-family: Arial, Verdana, sans-serif;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: #323334;
    padding: 20px;
    box-shadow: 0px -1px 3px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

#cookieinfo h6 {
    font-size: 16px;
    font-weight: bold;
    color: #cdd7da;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 1);
    margin-bottom: 7px;
}

#cookieinfo p {
    font-size: 12px;
    color: #afb4bc;
    line-height: 1.5em;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 1);
}

#cookieinfo a {
    display: block;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 22px;
    height: 22px;
    border-radius: 11px;
    line-height: 22px;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    background-color: #ff6000;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.75);
}

#cookieinfo a:hover {
    background-color: #ff7925;
}



/* ===========================
   CASINO ROLLER (blocks left->right)
   =========================== */

.casino-roller {
  max-width: 760px;
  margin: 0 auto;
}

.casino-heading-cell h5 {
  margin: 0;
  color: #7a0c12;
  font-weight: 900;
  letter-spacing: .5px;
  font-size: 0;
}

.casino-heading-cell h5::before {
  content: "Casino (5 FREE ROLLS PER DAY)";
  font-size: 1.25rem;
}

.casino-machine {
  position: relative;
  padding: 18px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,0) 28%),
    linear-gradient(135deg, #8f0f16 0%, #d71920 42%, #8a0e15 100%);
  border: 3px solid #3a080b;
  box-shadow:
    inset 0 0 0 2px rgba(255,215,94,.35),
    inset 0 -18px 30px rgba(0,0,0,.28),
    0 16px 32px rgba(0,0,0,.34);
}

.casino-machine__sign {
  position: relative;
  width: min(440px, 86%);
  margin: 0 auto 14px;
  padding: 12px 44px;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffcf3f, #b76d00);
  border: 3px solid #2d0507;
  color: #fff8cd;
  text-align: center;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 2px;
  text-shadow: 0 2px 0 #56080c, 0 0 12px rgba(255,255,255,.6);
  box-shadow: 0 8px 0 #5b0a0f, 0 0 22px rgba(255,198,42,.35);
}

.casino-machine__lights {
  position: absolute;
  inset: 4px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  pointer-events: none;
}

.casino-machine__lights span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff0a6;
  box-shadow: 0 0 12px #ffd340, 0 0 20px rgba(255,220,80,.55);
  animation: casinoBulb 1.05s steps(2, end) infinite;
}

.casino-machine__lights span:nth-child(even) {
  justify-self: end;
  animation-delay: .5s;
}

.casino-machine__body {
  position: relative;
  padding: 18px 52px 18px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f7a51e, #d47a08 56%, #864307);
  border: 2px solid rgba(50,10,0,.72);
  box-shadow: inset 0 7px 18px rgba(255,255,255,.34), inset 0 -12px 24px rgba(0,0,0,.22);
}

.casino-machine__lever {
  position: absolute;
  top: 38px;
  right: 12px;
  width: 28px;
  height: 120px;
  border-radius: 999px;
  background: linear-gradient(90deg, #5a2d05, #f6c65b, #6d3300);
  transform: rotate(8deg);
  transform-origin: bottom center;
  box-shadow: 0 4px 0 rgba(0,0,0,.25);
}

.casino-machine__lever span {
  position: absolute;
  top: -18px;
  left: 50%;
  width: 42px;
  height: 42px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff6b8 0 9%, #ff4e45 22%, #b50010 72%);
  border: 2px solid #5b070b;
  box-shadow: 0 0 16px rgba(255,70,60,.55);
}

.casino-machine.is-spinning .casino-machine__lever {
  animation: casinoLever .55s ease-in-out;
}

.casino-roller__viewport {
  position: relative;
  height: 210px;
  border-radius: 10px;
  border: 4px solid #3c1702;
  background:
    linear-gradient(90deg, rgba(0,0,0,.55), transparent 14%, transparent 86%, rgba(0,0,0,.55)),
    linear-gradient(180deg, #fff7db, #f5c36c 42%, #7a3a08);
  box-shadow: inset 0 0 20px rgba(0,0,0,.38), 0 8px 16px rgba(0,0,0,.22);
  overflow: hidden;
}

/* fade edges */
.casino-roller__viewport::before,
.casino-roller__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  width: 70px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}
.casino-roller__viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(60,23,2,.95), rgba(60,23,2,0));
}
.casino-roller__viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(60,23,2,.95), rgba(60,23,2,0));
}

/* center marker */
.casino-roller__marker {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  border-radius: 999px;
  background: rgba(255, 241, 140, .98);
  z-index: 4;
  box-shadow: 0 0 16px rgba(255,220,70,.75);
}
.casino-roller__marker::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 16px solid rgba(255, 241, 140, .98);
}
.casino-roller__marker::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 16px solid rgba(255, 241, 140, .98);
}

/* moving track */
.casino-roller__track {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 10px;
  padding: 0 30px;
  will-change: transform;
}


.casino-block--0  { background: linear-gradient(180deg, #353535, #181818); }
.casino-block--5  { background: linear-gradient(180deg, #184b2f, #0d2619); }
.casino-block--10 { background: linear-gradient(180deg, #18405f, #0b2030); }
.casino-block--15 { background: linear-gradient(180deg, #664614, #2e1e08); }
.casino-block--25 { background: linear-gradient(180deg, #6b1422, #300912); }

.casino-roller__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.casino-roller__actions .btn {
  min-width: 160px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .4px;
  box-shadow: 0 4px 0 rgba(0,0,0,.28);
}

.casino-roller__counters {
  margin-top: 10px;
  text-align: center;
  color: #ffe9a6;
  text-shadow: 0 1px 0 rgba(0,0,0,.45);
}

.casino-roller__msg {
  margin-top: 10px;
  text-align: center;
  font-weight: 900;
  font-size: 17px;
  color: #fff2a6 !important;
  text-shadow: 0 2px 0 rgba(0,0,0,.45);
}

.casino-roller__sub {
  min-height: 18px;
  text-align: center;
  color: rgba(255,255,255,.78);
  font-size: 12px;
}

.casino-roller.is-spinning .casino-roller__viewport {
  box-shadow: inset 0 0 20px rgba(0,0,0,.38), 0 0 0 3px rgba(255,222,80,.24), 0 8px 18px rgba(0,0,0,.3);
}
.casino-roller.is-win .casino-block.is-hit {
  outline: 4px solid rgba(255,231,89,.9);
  box-shadow: 0 0 26px rgba(255,212,48,.75), inset 0 0 18px rgba(255,255,255,.18);
}

.casino-confetti {
  position: fixed;
  inset: 0;
  z-index: 100000000;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: scale(.96);
}

.casino-confetti.is-visible {
  animation: casinoConfettiPop 3s ease-out both;
}

.casino-confetti img {
  width: min(360px, 86vw);
  max-height: 82vh;
  object-fit: contain;
}

/* === Base block === */
.casino-block {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 150px;
  border-radius: 10px;

  background: linear-gradient(180deg, #2a2a2a, #121212);
  color: #fff4c2;

  border: 3px solid #3c1702;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 8px 16px rgba(0,0,0,.28);

  user-select: none;
}

/* === Item layout (vertical) === */
.casino-block__item {
  display: flex;
  flex-direction: column;           /* vertical layout */
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 10px;
  text-align: center;
}

/* === Item image (bigger, centered) === */
.casino-block__img {
  width: 64px;                      /* bigger icon */
  height: 64px;

  image-rendering: pixelated;       /* Tibia-friendly */
  object-fit: contain;

  filter: drop-shadow(0 3px 4px rgba(0,0,0,0.25));
}

/* === Text under image === */
.casino-block__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
  align-items: center;
}

/* === Item name === */
.casino-block__name {
  font-size: 13px;
  font-weight: 700;
  color: #fff4c2;

  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* === Item count === */
.casino-block__count {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.72);
}

/* highlight */
.casino-block.is-hit {
  outline: 3px solid #f1c40f;
  transform: translateY(-1px);
}

.casino-block--miss {
  color: #ffb5b5;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.casino-block--miss {
  color: #ffb5b5;
  font-weight: bold;
  letter-spacing: 1px;
}

@keyframes casinoBulb {
  0%, 100% { opacity: 1; filter: brightness(1.2); }
  50% { opacity: .35; filter: brightness(.7); }
}

@keyframes casinoLever {
  0%, 100% { transform: rotate(8deg); }
  45% { transform: rotate(25deg); }
}

@keyframes casinoConfettiPop {
  0% { opacity: 0; transform: scale(.9); }
  12% { opacity: 1; transform: scale(1); }
  78% { opacity: 1; transform: scale(1.02); }
  100% { opacity: 0; transform: scale(1.04); }
}

@media (max-width: 575.98px) {
  .casino-machine {
    padding: 12px;
  }

  .casino-machine__sign {
    width: 100%;
    padding: 10px 28px;
    font-size: 18px;
  }

  .casino-machine__body {
    padding: 12px;
  }

  .casino-machine__lever {
    display: none;
  }

  .casino-block {
    min-width: 168px;
    height: 132px;
  }

  .casino-block__name {
    max-width: 142px;
  }
}

.casino-miss-icon {
  margin-right: 6px;
}

  /* Layout */
  .wiki-wrap { margin-top: 10px; }
  .wiki-sidebar { position: sticky; top: 12px; }
  .wiki-sidebar .nav-link { border-radius: .75rem; margin-bottom: 8px; background: #11151b; color: #e9ecef; border: 1px solid rgba(255,255,255,0.08); }
  .wiki-sidebar .nav-link.active { background: #171b22; border-color: rgba(255,255,255,0.16); }

  /* Accordion cards (podobne do Twoich) */
  #wikiAccordion .card {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: .75rem;
    background: #11151b;
    color: #e9ecef;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
    overflow: hidden;
  }
  #wikiAccordion .card + .card { margin-top: 12px; }
  #wikiAccordion .card-header {
    background: linear-gradient(180deg, #171b22, #141925);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: .75rem 1rem;
  }
  #wikiAccordion .card-header .toggle {
    display:flex; align-items:center; justify-content:space-between;
    width:100%; text-decoration:none; color:#e9ecef; font-weight:600; padding:.25rem 0;
  }
  #wikiAccordion .card-header .toggle::after {
    content:"▸"; transition: transform .2s ease; font-size:1.1rem; opacity:.85;
  }
  #wikiAccordion .card-header .toggle:not(.collapsed)::after { transform: rotate(90deg); }
  #wikiAccordion .card-body { background:#0f1319; color:#cfd6df; }

  /* Klikane termy */
  .wiki-term{
    color: #f1d600;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline dotted;
  }
  .wiki-term:hover{ opacity: .9; }

  /* Badge w modalu */
  .wiki-badge{
    display:inline-block;
    padding:.15rem .5rem;
    border-radius: 999px;
    background: rgba(241,214,0,.12);
    border: 1px solid rgba(241,214,0,.25);
    color: #f1d600;
    font-size: 12px;
    margin-left: 8px;
  }

  #wikiModalBody hr{
    border: 0;
    border-top: 1px solid rgba(255,255,255,.75);
    margin: 18px 0;
  }

  /* */

  .wiki-items-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:12px;
}

.wiki-item-card{
  border:1px solid rgba(255,255,255,0.08);
  border-radius:.75rem;
  background:#11151b;
  color:#e9ecef;
  box-shadow:0 6px 18px rgba(0,0,0,.25);
  overflow:hidden;
  cursor:pointer;
  transition:transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.wiki-item-card:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,0.14);
  box-shadow:0 10px 24px rgba(0,0,0,.32);
}

.wiki-item-thumb{
  height:120px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.03);
  overflow:hidden;
}

.wiki-item-thumb img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  image-rendering:pixelated;
}

.wiki-item-content{ padding:12px; }
.wiki-item-title{ font-weight:700; margin:0 0 6px; font-size:15px; }
.wiki-item-short{ margin:0; font-size:13px; opacity:.9; line-height:1.35; }

  /* Search */
  .wiki-search { background:#11151b; border:1px solid rgba(255,255,255,0.08); color:#e9ecef; border-radius:.75rem; }

  /* Mini galeria w treści modala */
.wiki-gallery{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}

.wiki-thumb{
  width:140px;
  height:140px;
  border-radius:12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  padding:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
}

.wiki-thumb:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.18);
  box-shadow:0 10px 24px rgba(0,0,0,.32);
}

.wiki-thumb img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  image-rendering:pixelated;
}

/* Lekki lightbox (overlay) */
.wiki-lightbox{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.72);
  display:none;
  align-items:center;
  justify-content:center;
  z-index: 20000; /* nad bootstrap modal/backdrop */
  padding: 18px;
}

.wiki-lightbox.show{ display:flex; }

.wiki-lightbox-inner{
  position:relative;
  max-width:min(92vw, 980px);
  max-height:90vh;
  background:#0f1319;
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  box-shadow:0 18px 50px rgba(0,0,0,.55);
  padding: 14px;
}

.wiki-lightbox-inner img{
  display:block;
  max-width:100%;
  max-height: calc(90vh - 60px);
  object-fit: contain;
  image-rendering: pixelated;
}

.wiki-lightbox-close{
  position:absolute;
  top:10px;
  right:10px;
  width:34px;
  height:34px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:#e9ecef;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  line-height:1;
}
.wiki-lightbox-close:hover{ background: rgba(255,255,255,.10); }

.account-created-modal .modal-dialog{
  max-width: 540px;
}

.account-created-content{
  overflow: hidden;
  border: 1px solid rgba(122, 22, 31, .35);
  border-radius: 8px;
  background: #fffaf3;
  box-shadow: 0 22px 55px rgba(17, 8, 6, .38);
}

.account-created-header{
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255,255,255,.16);
  background:
    linear-gradient(135deg, rgba(95, 12, 22, .96), rgba(159, 36, 28, .94) 52%, rgba(210, 139, 37, .92));
  color: #fff;
}

.account-created-mark{
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,.75);
  border-radius: 8px;
  background: rgba(255,255,255,.14);
  color: #fff7d6;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.account-created-kicker{
  margin-bottom: 2px;
  color: #ffe7a5;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.account-created-header .modal-title{
  margin: 0;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.05;
}

.account-created-close{
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: none;
  opacity: .86;
}

.account-created-close:hover{
  color: #fff;
  opacity: 1;
}

.account-created-body{
  padding: 24px 22px 18px;
  color: #241815;
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,248,232,.92));
}

.account-created-lead{
  margin: 0 0 18px;
  color: #2b1915;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.account-created-actions{
  display: grid;
  gap: 10px;
}

.account-created-action{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 15px;
  border: 1px solid rgba(111, 32, 27, .18);
  border-radius: 8px;
  background: #ffffff;
  color: #2c1b17;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(72, 28, 18, .08);
  transition: transform .12s ease, border-color .16s ease, box-shadow .16s ease;
}

.account-created-action:hover{
  color: #2c1b17;
  text-decoration: none;
  transform: translateY(-1px);
  border-color: rgba(176, 49, 33, .38);
  box-shadow: 0 12px 24px rgba(72, 28, 18, .14);
}

.account-created-action-primary{
  background: linear-gradient(135deg, #fff7df, #ffffff);
  border-color: rgba(214, 149, 42, .52);
}

.account-created-step{
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #7c1725;
  color: #fff7d6;
  font-weight: 900;
}

.account-created-action strong{
  display: block;
  color: #1f130f;
  font-size: 15px;
  line-height: 1.2;
}

.account-created-action small{
  display: block;
  margin-top: 2px;
  color: #77635b;
  font-size: 12px;
  line-height: 1.2;
}

.account-created-note{
  margin: 18px 0 0;
  color: #7c1725;
  font-weight: 900;
  text-align: center;
}

.account-created-footer{
  padding: 14px 22px 20px;
  border-top: 0;
  background: #fff8e8;
  justify-content: center;
}

.account-created-exit{
  min-width: 128px;
  border: 1px solid rgba(124, 23, 37, .25);
  border-radius: 8px;
  background: #2d1b16;
  color: #fff;
  font-weight: 800;
}

.account-created-exit:hover{
  background: #7c1725;
  color: #fff;
}

.account-created-legacy{
  display: none;
}

@media (max-width: 575px){
  .account-created-modal .modal-dialog{
    margin: 12px;
  }

  .account-created-header{
    padding: 18px 48px 18px 18px;
  }

  .account-created-header .modal-title{
    font-size: 22px;
  }

  .account-created-body{
    padding: 20px 16px 14px;
  }
}

.avatar-preview{
  width: 200px;
  height: 200px;
  display: block;
  margin: 12px auto 6px;
  object-fit: cover;
  border: 3px solid #ffffff;
  border-radius: 12px;
  background: #f2f3f5;
  box-shadow: 0 10px 28px rgba(16, 24, 40, .18);
}

.avatar-upload-btn.disabled,
.avatar-upload-btn:disabled{
  cursor: not-allowed;
  opacity: .55;
}

.avatar-uploading .avatar-preview{
  opacity: .72;
  filter: saturate(.75);
}

.facebook-hyena-card{
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  margin: 0 0 24px;
  border: 1px solid rgba(42, 58, 86, .18);
  border-radius: 8px;
  background: linear-gradient(135deg, #f7fbff 0%, #ffffff 54%, #fff7e8 100%);
  box-shadow: 0 10px 24px rgba(16, 24, 40, .08);
}

.facebook-hyena-card__media{
  flex: 0 0 124px;
  width: 124px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  background: #1f2937;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.facebook-hyena-card__media img{
  max-width: 54px;
  max-height: 80px;
  image-rendering: pixelated;
}

.facebook-hyena-card__media--stacked{
  flex: 0 0 148px;
  width: 148px;
  height: auto;
  flex-direction: column;
  gap: 16px;
  padding: 14px 12px;
}

.facebook-hyena-card__media--stacked img{
  max-width: 72px;
  max-height: 96px;
}

.facebook-hyena-card__content{
  flex: 1 1 auto;
  min-width: 0;
}

.facebook-hyena-card__content h5{
  margin: 0 0 6px;
  color: #1f2937;
  font-weight: 800;
}

.facebook-hyena-card__content p{
  margin: 0 0 12px;
  color: #4b5563;
}

.facebook-hyena-controls{
  display: flex;
  gap: 10px;
  max-width: 560px;
  margin-top: 12px;
}

.facebook-hyena-controls .form-control{
  max-width: 260px;
}

.facebook-hyena-facebook-btn{
  margin: 0 0 2px;
}

.facebook-hyena-code{
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  border: 1px dashed #2563eb;
  border-radius: 8px;
  background: #eff6ff;
  color: #1d4ed8;
  font-family: Consolas, "Liberation Mono", monospace;
  font-weight: 800;
  letter-spacing: .04em;
}

.facebook-hyena-code--empty{
  border-color: #cbd5e1;
  background: #f8fafc;
  color: #64748b;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: 0;
}

.facebook-hyena-code--claimed{
  border-color: #16a34a;
  background: #ecfdf5;
  color: #166534;
  font-family: inherit;
  letter-spacing: 0;
}

.facebook-hyena-info{
  display: block;
  margin-top: 8px;
  color: #64748b;
  font-weight: 700;
}

@media (max-width: 575px){
  .facebook-hyena-card{
    align-items: flex-start;
    flex-direction: column;
  }

  .facebook-hyena-controls{
    flex-direction: column;
  }

  .facebook-hyena-controls .form-control{
    max-width: none;
  }
}

.latest-changes-widget{
  text-align: left;
}

.latest-changes-widget__header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.latest-changes-widget__header a{
  font-size: 13px;
  font-weight: 700;
}

.latest-change-item{
  border-top: 1px solid rgba(0,0,0,.12);
  padding: 8px 0;
}

.latest-change-item:first-of-type{
  border-top: 0;
}

.latest-change-item summary{
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #7D1935;
  font-weight: 700;
}

.latest-change-item summary small{
  flex: 0 0 auto;
  color: #666;
  font-weight: 700;
}

.latest-change-item p{
  margin: 8px 0 0;
  color: #333;
  line-height: 1.45;
}

.latest-changes-empty{
  color: #666;
  font-weight: 700;
  padding: 8px 0;
}

.latest-changes-page__lead{
  color: #555;
  margin-bottom: 0;
}

.latest-change-full{
  border-bottom: 1px solid rgba(0,0,0,.12);
  padding: 14px 0;
}

.latest-change-full:last-child{
  border-bottom: 0;
}

.latest-change-full__date{
  color: #666;
  font-size: 13px;
  font-weight: 800;
}

.latest-change-full h4{
  color: #7D1935;
  margin: 4px 0 8px;
}

.fenixx-carousel{
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(222, 166, 73, .85);
  border-radius: 8px;
  background: #15100c;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.fenixx-carousel::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 18% 52%, rgba(255,122,34,.38), transparent 24%),
    radial-gradient(circle at 76% 45%, rgba(255,207,85,.25), transparent 28%),
    linear-gradient(90deg, transparent 0%, rgba(255,248,210,.28) 46%, rgba(255,92,31,.38) 54%, transparent 100%);
  transform: translateX(-16%);
}

.fenixx-carousel .carousel-inner{
  border-radius: 6px;
}

.fenixx-carousel .carousel-item{
  transition: opacity .72s ease-in-out, filter .72s ease-in-out !important;
}

.fenixx-carousel .carousel-item-next,
.fenixx-carousel .carousel-item-prev,
.fenixx-carousel .active.carousel-item-left,
.fenixx-carousel .active.carousel-item-right,
.fenixx-carousel .carousel-item-next.carousel-item-left,
.fenixx-carousel .carousel-item-prev.carousel-item-right{
  transform: none !important;
}

.fenixx-carousel .carousel-item-next,
.fenixx-carousel .carousel-item-prev{
  opacity: 0;
  filter: brightness(.82) saturate(.9) blur(2px);
}

.fenixx-carousel .carousel-item-next.carousel-item-left,
.fenixx-carousel .carousel-item-prev.carousel-item-right,
.fenixx-carousel .carousel-item.active{
  opacity: 1;
  filter: none;
}

.fenixx-carousel .active.carousel-item-left,
.fenixx-carousel .active.carousel-item-right{
  opacity: 0;
  filter: brightness(1.15) saturate(1.18) blur(1px);
}

.fenixx-carousel .carousel-item img{
  display: block;
  width: 100%;
  height: auto;
}

.fenixx-carousel .carousel-indicators,
.fenixx-carousel .carousel-control-prev,
.fenixx-carousel .carousel-control-next{
  z-index: 6;
}

.fenixx-carousel .carousel-fire-video{
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 128px;
  object-fit: cover;
  object-position: center bottom;
  opacity: .72;
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(to top, #000 0%, rgba(0,0,0,.98) 42%, rgba(0,0,0,.45) 72%, transparent 100%);
  mask-image: linear-gradient(to top, #000 0%, rgba(0,0,0,.98) 42%, rgba(0,0,0,.45) 72%, transparent 100%);
}

.fenixx-carousel.carousel-burning::before{
  animation: carouselSoftFade .9s ease-out;
}

.fenixx-carousel.carousel-burning .carousel-fire-video{
  animation: carouselBurnTransition .9s ease-out;
}

.fenixx-carousel.carousel-burning .carousel-item.active img,
.fenixx-carousel.carousel-burning .carousel-item-next img,
.fenixx-carousel.carousel-burning .carousel-item-prev img{
  animation: carouselImageFade .9s ease-out;
}

@keyframes carouselBurnTransition{
  0%{
    opacity: .72;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    filter: saturate(1.1) contrast(1.1);
  }
  22%{
    opacity: .96;
  }
  58%{
    opacity: .9;
  }
  100%{
    opacity: .72;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    filter: saturate(1.35) contrast(1.22);
  }
}

@keyframes carouselSoftFade{
  0%{
    opacity: 0;
    transform: translateX(-18%);
    filter: blur(10px);
  }
  35%{
    opacity: .95;
  }
  100%{
    opacity: 0;
    transform: translateX(18%);
    filter: blur(0);
  }
}

@keyframes carouselImageFade{
  0%{
    opacity: .72;
    filter: brightness(.86) saturate(.96);
  }
  45%{
    opacity: .9;
    filter: brightness(1.08) saturate(1.1);
  }
  100%{
    opacity: 1;
    filter: none;
  }
}
