/* ================== NAGŁÓWEK HOSTINGOWY ================== */
.hosting {
    max-width: 800px;
    margin: 0 auto 55px;
    text-align: center;
    padding: 0 15px; /* dla mobile */
    font-family: 'Inter', sans-serif;
}

.hosting h3 {
    font-size: 36px;
    color: #cb3333;
    margin: 0 0 18px;
    font-weight: 700;
    line-height: 1.2;
}

.hosting p {
    font-size: 18px;
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}

/* ======================================================
   PACKAGE CARD – PREMIUM HOSTING STYLE
====================================================== */

/* ================== CARD ================== */
.package-card {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: transform .35s ease, box-shadow .35s ease;
}

.package-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 22px 48px rgba(0,0,0,0.14);
}

/* ================== HEADER ================== */
.package-card_header {
	padding: 36px 28px 28px;
	text-align: center;
	position: relative;
	background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
	border-bottom: 1px solid #eee;
	border-radius: 16px 16px 0 0;
}

.package-card_header h3 {
	font-size: 24px;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 18px;
}

/* BADGE POPULARNY */
.badge-popularny {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #cb3333, #9f1d1d);
	color: #fff;
	padding: 7px 22px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .4px;
	box-shadow: 0 10px 24px rgba(203,51,51,.35);
	z-index: 2;
}

/* ================== PRICE ================== */
.price {
	position: relative;
	margin-top: 6px;
	padding: 18px 14px;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: inset 0 0 0 1px #eee;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

/* RABAT */
.img-discount-tag {
	position: absolute;
	top: -14px;
	right: -14px;
	background: linear-gradient(135deg, #e63946, #cb3333);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 999px;
	box-shadow: 0 8px 18px rgba(203,51,51,.45);
}

/* STARA CENA */
.cena-orginalna {
	font-size: 14px;
	color: #9ca3af;
	text-decoration: line-through;
}

/* PROMOCYJNA */
.cena-promocyjna {
	font-size: 38px;
	font-weight: 800;
	color: #cb3333;
	letter-spacing: -0.6px;
	line-height: 1.1;
}

.cena-promocyjna::after {
	content: " / mies.";
	font-size: 14px;
	font-weight: 500;
	color: #6b7280;
	margin-left: 4px;
}

/* ================== CONTENT ================== */
.package-card_content {
	padding: 24px 28px;
	flex-grow: 1;
	background: #ffffff;
}

.option {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid #eee;
	font-size: 15px;
}

.option:last-child {
	border-bottom: none;
}

.option span {
	color: #6b7280;
}

.option strong {
	color: #111827;
	font-weight: 600;
}

/* ================== FOOTER ================== */
.package-card_footer {
	padding: 26px 28px 32px;
	text-align: center;
	background: #ffffff;
	border-radius: 0 0 16px 16px;
}

.package-card_footer button {
	width: 100%;
	padding: 14px;
	border-radius: 999px;
	border: none;
	background: linear-gradient(135deg, #cb3333, #9f1d1d);
	color: #fff;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease, background .3s ease;
	box-shadow: 0 10px 22px rgba(203,51,51,.35);
}

.package-card_footer button:hover {
	background: linear-gradient(135deg, #b62a2a, #7f1717);
	transform: scale(1.03);
	box-shadow: 0 14px 30px rgba(203,51,51,.45);
}

/* ================== POPULARNY ================== */
.package-card.popularny {
	border: 2px solid #cb3333;
	transform: scale(1.05);
	z-index: 3;
}

.package-card.popularny:hover {
	transform: scale(1.07);
}

/* ================== RWD ================== */
@media (max-width: 767px) {
	.package-card {
		margin-bottom: 30px;
	}

	.package-card.popularny,
	.package-card.popularny:hover {
		transform: none;
	}
}


/* ================================================================= */

/* --- STYL DLA PAKIETU BASIC --- */
.pakiet {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 25px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 55px; /* odstęp między kartami */
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: auto; /* bardzo ważne — nie 100% */
}

.pakiet:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.pakiet .img-discount-tag {
    position: absolute;
    top: 15px; /* przy górnej krawędzi pakietu */
    right: 15px; /* przy prawej krawędzi pakietu */
    background-color: #e63946;
    color: #fff;
    font-size: 0.85em;
    font-weight: 700;
    padding: 6px 12px;
	margin-top: 5px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    z-index: 10;
}

/* TYTUŁ PAKIETU */
.pakiet h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 12px;
}

/* CENA */
.pakiet .cena {
  text-align: center;
  margin-bottom: 25px;
}

.cena-orginalna {
  text-decoration: line-through;
  color: #999999;
  margin-right: 8px;
  font-weight: 400;
  font-size: 18px;
}

.cena-promocyjna {
  color: #cb3333;
  font-size: 32px;
  font-weight: 800;
}

/* POZYCJE */
.pakiet .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

.pakiet .item:last-of-type {
  border-bottom: none;
}

.pakiet .item span {
  color: #666666;
}

.pakiet .item strong {
  color: #333333;
}

/* PRZYCISK WYBIERZ PAKIET */
.pakiet button {
  margin-top: 25px;
  width: 100%;
  padding: 13px;
  border-radius: 30px;
  border: none;
  background: #cb3333;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.pakiet button:hover {
  background: #a82828;
  transform: scale(1.02);
}

/* DODATKOWE DLA POPULARNYCH PAKIETÓW (jeśli użyjesz klasy) */
.pakiet.popularny {
  border: 2px solid #cb3333;
  transform: scale(1.05);
}

.pakiet.popularny::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow: 0 0 0 3px rgba(203, 51, 51, 0.15);
  pointer-events: none;
}

.pakiet .badge-popularny {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #cb3333;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 767px) {
  .pakiet {
    margin-bottom: 25px;
  }

  .pakiet.popularny {
    transform: none;
  }
}

/* NEWS – styl dopasowany do koszyka i kart produktów */

.news {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    font-family: 'Arial', sans-serif;
    max-width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.news-item {
    background-color: #f9f9fb;
    padding: 18px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #eee;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Tytuł ogłoszenia */
.news-item h3 {
    margin: 0 0 10px 0;
    font-size: 1.3em;
    font-weight: 700;
    color: #222;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 6px;
}

/* Meta (data) */
.news-item .meta {
    font-size: 0.9em;
    color: #777;
    margin: 6px 0 12px 0;
}

/* Treść */
.news-item p {
    font-size: 1em;
    color: #444;
    line-height: 1.6em;
    margin: 0;
}

/* Link */
.news-item a.read-more {
    display: inline-block;
    margin-top: 14px;
    padding: 6px 14px;
    border: 1px solid #2a9d8f;
    border-radius: 10px;
    background-color: transparent;
    color: #2a9d8f;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s ease;
}

.news-item a.read-more:hover {
    background-color: #2a9d8f;
    color: #fff;
    transform: scale(1.05);
}

.news-view-box {
    background-color: #ffffff;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    font-family: 'Arial', sans-serif;
}

.news-view-box h3 {
    margin: 0 0 12px 0;
    font-size: 1.5em;
    font-weight: 700;
    color: #222;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.news-view-box .meta {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 20px;
}

.news-view-box p {
    font-size: 1em;
    color: #444;
    line-height: 1.7em;
    margin-bottom: 18px;
}

.back-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #2a9d8f;
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.back-btn:hover {
    background-color: #21867a;
    transform: scale(1.05);
}

.addons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    background-color: #f0f0f5;
    border: 2px solid #ccc;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    margin-bottom: 20px; /* odstęp od kolejnych sekcji */
    max-width: 100%; /* dopasowanie do zawartości i ekranu */
    box-sizing: border-box;
}

.addons h2 {
    margin: 0 0 8px 0;
    font-size: 1.2em;
    color: #333;
}

.addons p {
    display: flex;
    gap: 20px;
    margin: 0;
    align-items: center;
    font-size: 1em;
    color: #555;
}

.addons input[type="radio"] {
    cursor: pointer;
    margin-right: 5px;
}

.addons input[type="radio"]:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.game-settings {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    background-color: #f0f0f5;
    border: 2px solid #ccc;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    margin-bottom: 20px; /* dodany odstęp na dole */
    max-width: 100%; /* dopasowanie do zawartości i ekranu */
    box-sizing: border-box;
}

.game-settings label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.game-settings input[type="range"] {
    -webkit-appearance: none;
    width: 100%; /* wypełnia dostępne miejsce w kontenerze */
    height: 8px;
    border-radius: 5px;
    background: #ddd;
    outline: none;
    transition: background 0.3s;
}

.game-settings input[type="range"]:hover {
    background: #ccc;
}

.game-settings input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.game-settings input[type="range"]::-webkit-slider-thumb:hover {
    background: #45a049;
    transform: scale(1.2);
}

.game-settings input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.game-settings input[type="range"]::-moz-range-thumb:hover {
    background: #45a049;
    transform: scale(1.2);
}

.total {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background-color: #f8f9fb;
    border: 2px solid #ccc;
    border-radius: 12px;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px; /* dodany odstęp na dole */
    max-width: 100%; /* dopasowanie do zawartości i ekranu */
    box-sizing: border-box;
}

.total-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: background 0.2s;
    width: 100%; /* wypełnia dostępne miejsce w kontenerze */
    box-sizing: border-box;
}

.total-item:hover {
    background-color: #f0f4f8;
}

.total-item span {
    font-weight: 600;
    color: #333;
}

.total-item div {
    font-weight: 500;
    color: #555;
}

/* Wyróżnienie kwoty do zapłaty */
.total-item .kwotaDoZaplaty {
    font-size: 1.2em;
    font-weight: 700;
    color: #e63946; /* np. czerwony dla wyróżnienia */
}

.rules {
  background-color: #eeeeee;
  border: 1px solid #dddddd;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.rules p {
  margin-bottom: 1em;
}

.rules p strong {
  color: #003366;
  font-size: 1.1em;
}

.rules p em {
  color: #666;
}

.faq {
	border-radius: 4px;
	margin-bottom: 20px;
}

.faq h2 {
	font-size: 18px;
	color: #1e90ff;
	border-left: #1e90ff 10px solid;
	padding: 10px;
	margin-top: 0;
	margin-bottom: 0;
}

.faq p {
	padding: 10px 20px;
}

#topBar {
  width: 100%;
  padding: 40px 0;
}

#topBar .search {
  display: flex;
  width: 100%;
  gap: 0;
}

#topBar .search input[type="text"],
#topBar .search select,
#topBar .search button {
  height: 36px;
  font-size: 14px;
  border: none;
  outline: none;
  background-color: #fff;
  color: #555;
}

#topBar .search input[type="text"] {
  flex: 2;
	color: #555;
  padding: 10px;
border: #dddddd 1px solid;
}

#slider {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 0px;
    width: 100%;
    height: 100%;
	border-bottom: #000000 3px solid;
    background: rgba(0,0,0,0.6);
}

#slider video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 403px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-content h2 {
    width: 70%; 
    font-size: 3.5em; color: white;
    font-weight: 900;
	font-size: 36px;
    margin-top: 0;
	text-align: center;
    margin-bottom: 10px;
}

.slider-content p {
    width: 70%; color: white;
    font-weight: 700;
	font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
}

#topBar .search select {
  flex: 0.2;
  padding: 0 8px;
  padding: 10px;
border: #dddddd 1px solid;
border-width: 1px 0;
}

#topBar .search button {
  flex: 0.1;
  background-color: #46c500;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

#topBar .search button:hover {
  background-color: #e69500;
}

#topBar .search button i {
  color: #fff;
}

/* ================================================================= */

/* HTML, BODY */

html, body {
	background: #ffffff;
	text-align: left;
	/* font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; */
	font-family: "Lato", sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #333333;
	line-height: 1.42857143;
	padding: 0;
	margin: 0;
}

/* WRAPPER */

#wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100vh;
}

/* HEADER */

#header {
	background: #eeeeee;
	width: 100%;
}

#header .logo {
	padding: 20px 0;
}

#header .logo img {
	height: 40px;
}

@media (max-width: 979px) {
	#header .logo {
		width: 201px;
		margin: 0 auto;
	}
}

/* NAV */

#nav {
	background: #cb3333; /* #1a2029; */
	width: 100%;
	height: 60px;
}

#nav .menu-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    line-height: 60px;
    float: right;
    padding: 0 20px;
}

#nav .container {
	position: relative;
}

#nav .nav-bar {
	list-style-type: none;
	float: left;
	padding: 0;
	margin: 0;
}

#nav .nav-bar li {
	display: inline-block;
	position: relative;
	height: 60px;
	padding: 0 10px;
}

#nav .nav-bar li:hover {
	background: #ffffff;
}

#nav .nav-bar li:hover a {
	color: #000000;
}

#nav .nav-bar li:hover a:after {
	background: #000000;
	content: "";
	position: absolute;
	left: calc(50% - 10px);
	bottom: 0;
	width: 20px;
	height: 1px;
}

#nav .nav-bar li:hover ul {
	display: block;
}

#nav .nav-bar li a {
	display: block;
	text-decoration: none;
	font-size: 15px;
	color: #ffffff;
	line-height: 60px;
}

#nav .nav-bar li ul {
	background: #ffffff;
	display: none;
	border: #000000 1px solid;
	border-width: 0 1px 1px 1px;
	position: absolute;
	top: 60px;
	left: -1px;
	width: 250px;
	padding: 15px;
	z-index: 9999;
}

#nav .nav-bar li ul li {
	display: block;
	width: 100%;
	height: auto;
	padding: 0;
}

#nav .nav-bar li ul li:hover {
	background: none;
}

#nav .nav-bar li ul li:last-child a {
	border-bottom: none;
}

#nav .nav-bar li ul li a {
	display: block;
	font-size: 14px;
	color: #464646 !important;
	border-bottom: #e0e0e0 1px solid;
	line-height: 30px;
	padding-left: 10px;
}

#nav .nav-bar li ul li a:hover {
	color: #fd7700 !important;
}

#nav .nav-bar li ul li a:hover:before {
	background: url("images/submenu-li.png") no-repeat;
	content: "";
	position: absolute;
	left: -15px;
	width: 10px;
	height: 22px;
}

#nav .nav-bar li ul li a:after {
	content: none !important;
}

@media (min-width: 979px) {
	#nav .nav-bar {
		float: left;
	}
	#nav .nav-right {
		float: right;
	}
}

@media (max-width: 979px) {
	#nav .nav-bar {
		display: none;
	}
    #nav .nav-bar,
    #nav .nav-right {
        display: none;
        width: 100%;
        float: none;
        background: #1a2029;
    }
    #nav .nav-bar li,
    #nav .nav-right li {
        display: block;
        width: 100%;
        text-align: left;
    }
    #nav .nav-bar li a,
    #nav .nav-right li a {
        line-height: 40px;
        padding: 10px 20px;
    }
    #nav .menu-toggle {
        display: block;
    }
    #nav .nav-bar li ul {
		z-index: 100;
        position: static;
        border: none;
        padding: 0;
        display: none;
    }
    #nav .nav-bar li.open > ul {
        display: block;
    }
}

/* CONTENT */

#content {
	background: #ffffff url("images/tlo.png") repeat-x 0 0;
	flex: 1;
	padding: 55px 0;
}

/* PARTNER */

#partner {
	background: #eeeeee;
	text-align: center;
	width: 100%;
	padding: 50px 0;
}

#partner h2 {
	text-align: center;
	font-size: 36px;
	color: #cb3333;
	padding-bottom: 10px;
	margin-top: 0;
	margin-bottom: 20px;
}

#partner .partner-img {
	display: flex;
	justify-content: center;
	gap: 20px;
}

#partner .partner-img img {
	height: 60px;
}

/* FOOTER */

#footer {
	background: #323232;
	color: #ffffff;
	width: 100%;
	padding: 50px 0;
}

#footer h3 {
	font-weight: 700;
	font-size: 18px;
	margin: 0 0 20px 0;
}

#footer p {
	margin-bottom: 20px;
}

#footer .nav-footer {
	list-style-type: none;
	padding: 0;
	margin: 0 0 20px 0;
}

#footer .nav-footer li {
	margin-bottom: 5px;
}

#footer .nav-footer li:last-child {
	margin-bottom: 0;
}

#footer .nav-footer li a {
	text-decoration: none;
	color: #ffffff;
}

#footer .nav-footer li a:hover {
	text-decoration: underline;
}

#footer .copyright {
	text-align: center;
	color: #cccccc;
	border-top: #333333 1px dashed;
	border-bottom: #333333 1px dashed;
	padding: 20px 0;
}

#footer .copyright p {
	margin-bottom: 0;
}
