:root {
  --color-bg: #0a0e1a;
  --color-bg-image: url('images/hero.jpg');
  --color-black: #000000;
  --color-green: #7eff00;
  --color-teal: #00ff88;
  --color-white: #ffffff;
  --color-gray-100: #d1d5dc;
  --color-gray-200: #99a1af;
  --color-gray-300: #6a7282;
  --color-red-light: rgba(251, 44, 54, 0.199);
  --color-red-border: rgba(251, 44, 54, 0.4);
  --color-red-text: #ff6369;
  --font-primary: 'Roboto', sans-serif;
  --font-secondary: 'Roboto Condensed', sans-serif;
  --font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --color-background: --color-red-light;
  --color-black: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  font-family: var(--font-primary);
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-white);
  overflow-x: hidden;
  background-image: var(--color-bg-image);
  background-size: 100vw 100vh;
  background-repeat: no-repeat;
}

.page-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.section {
  padding: 80px 0;
}

@media (max-width: 991px) {
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 40px 0;
  }
}

.section-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 80px 20px;
}

.below-hero-bg {
  width: 19vw;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background-image: var(--color-bg-image);
  background-size: cover; 
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; 
  min-height: 100%; 
}

.text-green {
  color: var(--color-green);
}

.text-teal {
  color: var(--color-teal);
}

.text-gray-100 {
  color: var(--color-gray-100);
}

.text-gray-200 {
  color: var(--color-gray-200);
}

.text-gray-300 {
  color: var(--color-gray-300);
}

/* --- Navbar--- */
.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1480px;
  z-index: 1000;
  padding: 10px 20px;
  background: linear-gradient(180deg, 
    rgba(0, 0, 0, 0.6) 0%, 
    rgba(122, 122, 122, 0.25) 50%, 
    rgba(255, 255, 255, 0.15) 100%
  );
  border-radius: 15px;
  box-shadow: 
    5px 5px 5px 0px rgba(0, 0, 0, 0.25),
    inset -5px -5px 5px 0px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-logo img {
  height: 50px;
  width: auto;
  transition: transform 0.7s cubic-bezier(.76,.04,.24,.96);
}
.header-logo img:hover{
  transform: scale(0.85) rotate(360deg);
}
.header-nav {
  display: flex;
  gap: 24px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #f4f4f4;
}
.header-nav a {
  color: #fff;
  text-decoration: none;
  position: relative;
  display: inline-block;
  background: none;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  background-clip: text;
  transition: background 0.5s, -webkit-text-fill-color 0.5s;
}
.header-nav a:hover {
  background: linear-gradient(120deg, #fff 30%, #16ff63 50%, #fff 70%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #fff; /* fallback */
  animation: shine-text-move 0.8s linear 1;
}
@keyframes shine-text-move {
  from {
    background-position: 0% 0;
  }
  to {
    background-position: 100% 0;
  }
}

/* Mint Button Container */
.MintBtn {
  width: 150px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0;
}

/* Mint Button */
.MintBtn .btn {
  position: relative;
  width: 250px;
  height: 50px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.MintBtn .btn a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(255, 255, 255, 0.05);
	box-shadow: 0 15px 15px rgba(0, 0, 0, 0.3);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 30px;
	padding: 10px;
	letter-spacing: 1px;
	text-decoration: none;
	overflow: hidden;
	color: #fff;
	font-weight: 400px;
	z-index: 1;
  transition: 0.5s;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.MintBtn .btn:hover a {
	letter-spacing: 3px;
  color: #222;
}
.MintBtn .btn a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background: linear-gradient(to left, rgba(255, 255, 255, 0.15), transparent);
	transform: skewX(45deg) translate(0);
	transition: 0.5s;
	filter: blur(0px);
}
.MintBtn .btn:hover a::before {
	transform: skewX(45deg) translate(200px);
}
.MintBtn .btn::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translatex(-50%);
	bottom: -5px;
	width: 30px;
	height: 10px;
	background: #f00;
	border-radius: 10px;
	transition: 0.5s;
	transition-delay: 0.5;
}
.MintBtn .btn:hover::before /*lightup button*/ {
	bottom: 0;
	height: 50%;
	width: 80%;
	border-radius: 30px;
}
.MintBtn .btn::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translatex(-50%);
	top: -5px;
	width: 30px;
	height: 10px;
	background: #f00;
	border-radius: 10px;
	transition: 0.5s;
	transition-delay: 0.5;
}
.MintBtn .btn:hover::after /*lightup button*/ {
	top: 0;
	height: 50%;
	width: 80%;
	border-radius: 30px;
}
.MintBtn .btn:nth-child(1)::before,
.MintBtn .btn:nth-child(1)::after {
	background: #1eff45;
	box-shadow: 0 0 5px #1eff45, 0 0 15px #1eff45, 0 0 30px #1eff45,
		0 0 60px #1eff45;
}
@media (max-width: 480px) {
  .header-cta-button {
    padding: 8px 16px;
    font-size: 14px;
  }
  .header-logo img {
    height: 40px;
  }
}

/* Toggle button (hamburger) */
.header-toggle {
  display: none; 
  background: transparent;
  border: none;
  width: 42px;
  height: 36px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.header-toggle .bar {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Mobile nav container that extends*/
.mobile-nav {
  display: none;
  width: 100%;
  max-width: 1480px;
  margin: 8px auto 0 auto;
  background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(255,255,255,0.02));
  border-radius: 12px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 5px 5px 15px rgba(0,0,0,0.25);
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}
.mobile-nav.open {
  display: block;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 20px;
}
.mobile-link {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-secondary);
  font-size: 18px;
  padding: 10px 12px;
  border-radius: 8px;
}
.mobile-link:hover {
  background: rgba(255,255,255,0.04);
  color: var(--color-primary, #1eff45);
}
.mobile-mint {
  padding: 12px 20px 20px 20px;
  display: flex;
}
.mobile-mint-btn {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--color-primary, #1eff45);
  color: #000;
  font-weight: 700;
}

/* Responsive behavior: show toggle, hide desktop nav */
@media (max-width: 768px) {
  .header-toggle { display: flex; }
  .header-nav { display: none; }
  .MintBtn { display: none; }
  .header-container { gap: 12px; }
  .site-header { padding: 8px 14px; }
}

/* Transform hamburger into X when open */
.header-toggle.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header-toggle.open .bar:nth-child(2) { opacity: 0; }
.header-toggle.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* HERO SECTION */
#drag-container, #spin-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform: rotateX(-10deg);
          transform: rotateX(-10deg);
}

#drag-container img, #drag-container video {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 200px;
  font-size: 50px;
  text-align: center;
  -webkit-box-shadow: 0 0 8px #fff;
          box-shadow: 0 0 8px #fff;
  -webkit-box-reflect: below 10px linear-gradient(transparent, transparent, #0005);
}

#drag-container img:hover, #drag-container video:hover {
  -webkit-box-shadow: 0 0 15px #fffd;
          box-shadow: 0 0 15px #fffd;
  -webkit-box-reflect: below 10px linear-gradient(transparent, transparent, #0007);
}

#drag-container p {
  font-family: Serif;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%) rotateX(90deg);
          transform: translate(-50%,-50%) rotateX(90deg);
  color: #fff;
}

#ground {
  width: 900px;
  height: 900px;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%) rotateX(90deg);
          transform: translate(-50%,-50%) rotateX(90deg);
  background: -webkit-radial-gradient(center center, farthest-side , #9993, transparent);
}

@-webkit-keyframes spin {
  from{
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  } to{
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@keyframes spin {
  from{
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  } to{
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}
@-webkit-keyframes spinRevert {
  from{
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  } to{
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
@keyframes spinRevert {
  from{
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  } to{
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

/* COLLECTIONS */
.collections-section {
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 60px;
}

.collections-header {
    text-align: center;
    margin-bottom: 40px;
}

.collections-header h1 {
    font-family: 'Palm Leaf Demo Regular', 'Roboto Condensed', Arial, sans-serif;
    font-size: 65px;
    line-height: 1.1em;
    letter-spacing: -0.03em;
    color: #fff;
    font-weight: bold;
    margin-top: 80px;
    margin-bottom: 18px;
    text-shadow: 0 1px 10px #242424;
}

.collections-header p {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.03em;
    line-height: 1.3em;
}
.outlined-text {
  color: #fff; /* text color */
  -webkit-text-stroke: 1px #000000;
  text-shadow: 0px 2px 6px rgb(113, 255, 47);
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
  .outlined-text {
    -webkit-text-stroke: 1px #222;
  }
}

ol, ul, menu {
	list-style: none;
}

/* UTILITIES */
.container {
	margin-inline: auto;
	padding-inline: 0.9375rem;
	max-inline-size: calc(76.875rem + 1.875rem * 2);
}
.wrapper {
	margin-inline: auto;
	inline-size: min(80vw, 100% - 1.875rem);
}
.centered {
	text-align: center;
}
.flow > *:not(:first-child) {
	margin-block-start: 2rem;
}

/* CARD STACK */
.stack-list {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: repeat(6, 40vw);
	gap: 4vw;
	margin-block-end: 4vw;
	padding-block-end: calc(6 * 1rem);
	outline: 0 solid #e64980;
}
.stack-list__item {
	position: sticky;
	inset-block-start: 0;
	outline: 0 solid #86f948;
}
.stack-list__item:nth-child(1) {
	--index: 1;
}
.stack-list__item:nth-child(2) {
	--index: 2;
}
.stack-list__item:nth-child(3) {
	--index: 3;
}
.stack-list__item:nth-child(4) {
	--index: 4;
}
.stack-list__item:nth-child(5) {
	--index: 5;
}

/* CARD COMPONENT */
.card {
	--_card-light-surface-color: #fff;
	--_card-dark-surface-color: #343a40;
	--_card-surface-color: #fff;
	--_card-text-color: #343a40;
	--_card-light-shadow-color: #000;
	--_card-dark-shadow-color: #868e96;
	--_card-shadow-color: #000;
	--_card-radius-size: 1rem;
	--_card-border-radius: clamp(0px, calc(100vw - 100%) * 1e5, 1rem);
	overflow: hidden;
	display: grid;
	grid-template-areas: "text img";
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto;
	align-items: stretch;
	background-color: #fff;
	box-shadow: 0 0.2em 1em rgba(0,0,0,0.1), 0 1em 2em rgba(0,0,0,0.1);
	border-radius: 1rem;
	outline: 0 solid #339af0;
	color: #343a40;
	transform-origin: 50% 0%;
	will-change: transform;
	position: relative;
  margin: 2vw;
}

/* Blurred background */
.card--dp-camel .card-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: url('images/DPCamelCollection.png');
	background-size: cover;
	background-position: center;
	filter: blur(10px); 
	opacity: 0.8;
	pointer-events: none;
}

.card--dp-camel .card-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.459); 
  pointer-events: none;
}
.card--DP-Crypto .card-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: url('images/cryptocamelsbanner.png');
	background-size: cover;
	background-position: center;
	filter: blur(10px); 
	opacity: 0.8;
	pointer-events: none;
}

.card--DP-Crypto .card-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.459); 
  pointer-events: none;
}
.card--DP-Corebit .card-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: url('images/corebitbanner.png');
	background-size: cover;
	background-position: center;
	filter: blur(10px); 
	opacity: 0.8;
	pointer-events: none;
}

.card--DP-Corebit .card-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.459); 
  pointer-events: none;
}
.card--DP-BH .card-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: url('images/bhbanner.png');
	background-size: cover;
	background-position: center;
	filter: blur(10px); 
	opacity: 0.8;
	pointer-events: none;
}

.card--DP-BH .card-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.459); 
  pointer-events: none;
}
.card--DP-CamelToe .card-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: url('images/cameltoechart4.png');
	background-size: cover;
	background-position: center;
	filter: blur(10px); 
	opacity: 0.8;
	pointer-events: none;
}

.card--DP-CamelToe .card-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.459);
  pointer-events: none;
}

.card__cover,
.card__content {
	position: relative;
	z-index: 1;
  border-radius: 15px;
}

.card__cover {
	grid-area: img;
	overflow: hidden;
}
.card__content {
	grid-area: text;
	width: 80%;
	place-self: center;
	text-align: left;
	display: grid;
	gap: 1em;
	place-items: start;
}
.card__title {
	font-family: ui-serif, serif;
	font-weight: 700;
	font-size: clamp(1.5rem, 6vw, 2.5rem);
	letter-spacing: 0.05em;
}
.card__descr {
	font-size: clamp(1rem, 4vw, 1.5rem);
}
.card__link {
	display: inline-block;
	margin-block-start: 4vw;
	padding-block: 1.5ex;
	padding-inline: 4ex;
	background-color: transparent;
	border: 2px solid #2596be;
	border-radius: 5px;
	font-weight: 700;
	font-size: clamp(0.75rem, 2vw, 1rem);
	color: #2eff3f;
	transition: color 250ms ease, background-color 250ms ease, border-color 250ms ease, text-shadow 250ms ease;
}
.card__link:focus-visible,
.card__link:hover {
	background-color: #20ff45;
	color: #e7f5ff;
	text-shadow: 0 1px 0 #1971c2;
}

/* ANIMATION (for supporting browsers) */
@supports (animation-timeline: view()) {
	.stack-list {
		--numcards: 6;
		view-timeline-name: --cards-element-scrolls-in-body;
	}
	.stack-list__item {
		--index0: calc(var(--index) - 1);
		--reverse-index: calc(var(--numcards) - var(--index0));
		--reverse-index0: calc(var(--reverse-index) - 1);
	}
	.card {
		--start-range: calc(var(--index0) / var(--numcards) * 100%);
		--end-range: calc((var(--index)) / var(--numcards) * 100%);
		animation: linear scale forwards;
		animation-timeline: --cards-element-scrolls-in-body;
		animation-range: exit-crossing var(--start-range) exit-crossing var(--end-range);
	}
	@keyframes scale {
		to {
			transform: scale(calc(1.1 - calc(0.1 * var(--reverse-index))));
		}
	}
}

/* LIGHT/DARK MODE OVERRIDES */
@media (prefers-color-scheme: dark) {
	html {
		background-color: #030507;
		color: #dee2e6;
	}
	.card {
		box-shadow: 0 0.2em 1em #868e96, 0 1em 2em #868e96;
		color: #dee2e6;
	}
	.card__link {
		border-color: #25d695;
		color: #d0ebff;
		background-color: transparent;
	}
	.card__link:focus-visible,
	.card__link:hover {
		background-color: #022c83;
		color: #030507;
		text-shadow: none;
	}
}


/* -----Footer CSS------ */
.footer {
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(122,122,122,0.25) 70%, rgba(255,255,255,0.07) 100%);
  color: #888;
  width: 100vw;
  min-height: 150px;
  padding: 0;
  font-family: 'Roboto Condensed', 'Inter', Arial, sans-serif;
  position: static;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 0 30px 0px rgba(0,0,0,0.22), inset 0 2px 15px 0px rgba(0,0,0,0.12);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.footer-top-border {
  border-top: 2px solid #60d697;
  width: 97%;
  margin: 0px auto 0 auto;
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 165px;
  position: relative;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
  margin-left: -300px;
  min-width: 300px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-dp-logo {
  height: 65px;
  width: 65px;
  filter: drop-shadow(0 0 12px #60d697);
  transition: transform 0.7s cubic-bezier(.76,.04,.24,.96);
}

.footer-dp-logo:hover {
  transform: scale(0.85) rotate(360deg);
  cursor: pointer;
}

.footer-dp-text {
  font-family: 'Perfect Bomber FreePersonalUse Script', cursive, sans-serif;
  font-size: 24px;
  color: #ccc;
  font-style: italic;
  letter-spacing: 0.02em;
}

.footer-cameltoe-logo {
  height: 65px;
  width: auto;
  margin-bottom: 0;
  transition: transform 0.7s cubic-bezier(.76,.04,.24,.96);
}

.footer-cameltoe-logo:hover {
  transform: scale(0.85) rotate(360deg);
  cursor: pointer;
}

.footer-cameltoe-text {
  font-family: 'Heading Pro Trial Bold Italic', sans-serif;
  font-size: 24px;
  color: #888888;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 0.04em;
  margin-left: 8px;
}

.footer-address-box {
  background-color: rgba(128, 255, 0, 0.158);
  border: 1px solid rgba(128, 255, 0, 0.89);
  border-radius: 16px;
  padding: 10px;
  text-align: left;
  width: 95%;
  height: 60px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.footer-address-box p {
  font-size: 14px;
  color: rgb(255, 255, 255);
  margin: 0 0 5px 0;
}

.address-text-footer {
  color: var(--color-white) !important;
  word-break: break-all;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  gap: 0px;
  margin-top: 12px;
  padding: 0;
}

.footer-stamp {
  width: 220px;
  height: auto;
  opacity: 0.8;
  margin: 0px;
  padding: 0;
  order: -1;
  display: block;
}

.footer-copyright {
  font-size: 13px;
  color: #00000085;
  text-align: center;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.07em;
  margin: 0;
  padding: 0;
  display: block;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(126, 255, 0, 0.1);
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-disclaimer {
  background-color: var(--color-red-light);
  border: 1px solid rgba(251, 44, 54, 0.712);
  border-radius: 14px;
  padding: 15px;
  text-align: center;
  margin-top: 10px;
}

.footer-disclaimer p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-white);
  margin: 0;
}

.footer-disclaimer strong {
  color: var(--color-red-text);
}

.footer-right {
  display: flex;
  flex-direction: row;
  gap: 60px;
  min-width: 260px;
  margin-top: 32px;
  margin-right: -300px;
}

.footer-company, .footer-connect {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-section-title {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
  margin-bottom: 4px;
}

.footer-company ul, .footer-connect ul {
  list-style: none;
  margin-left: -25px;
  padding: 0;
}

.footer-company ul li {
  margin-bottom: 8px;
  margin-left: 20px;
}

.footer-company ul li a {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 13px;
  color: #ddd;
  letter-spacing: 0.07em;
  text-align: center;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.footer-company ul li a:hover,
.footer-company ul li a:focus {
  color: #60d697;
  text-decoration: underline;
}

.footer-social-icons-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-social-row {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
  margin-right: -30px;
}

.footer-social-row-telegram {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4px;
  width: 100%;
}

.footer-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: #222;
  box-shadow: 0 0 6px 1px #333 inset;
  transition: filter 0.2s;
  object-fit: cover;
}

.footer-social-icon:hover,
.footer-social-icon:focus {
  filter: brightness(1.2);
}

.footer-hashtags {
  display: flex;
  gap: 12px;
  position: absolute;
  bottom: 20px;
  right: -300px;
}

.footer-tag {
  background-color: rgba(128, 255, 0, 0.39);
  border: 1px solid rgba(128, 255, 0, 0.589);
  border-radius: 999px;
  padding: 5px 13px;
  font-size: 11px;
  color: var(--color-white);
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 20px;
  }

  .footer-left, .footer-center, .footer-right {
    min-width: auto;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 0;
  }

  .footer-left {
    align-items: center;
  }

  .footer-address-box {
    width: 100%;
    max-width: 300px;
    height: auto;
    text-align: center;
  }

  .footer-right {
    flex-direction: column;
    gap: 20px;
  }

  .footer-social-icons-group {
    align-items: center;
  }

  .footer-social-row {
    justify-content: center;
    margin-right: 0;
  }

  .footer-hashtags {
    position: static;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footer-logo-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-dp-text, .footer-cameltoe-text {
    font-size: 20px;
    text-align: center;
  }

  .footer-address-box {
    padding: 12px;
  }

  .footer-stamp {
    width: 180px;
  }

  .footer-copyright {
    font-size: 12px;
  }

  .footer-disclaimer p {
    font-size: 12px;
  }

  .footer-section-title {
    font-size: 14px;
  }

  .footer-company ul li a {
    font-size: 12px;
  }
}


/* Tablet: Stack cards */
@media (max-width: 950px) {
  .card-stack .wrapper {
    inline-size: 100vw;
    max-width: 100vw;
    padding: 0 10px;
  }
  @media (max-width: 900px) {
  .stack-list {
    grid-template-rows: none !important;
    gap: 22px;
  }
  .stack-list__item {
    position: static !important;
    inset-block-start: unset !important;
  }
}
  .card {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "text";
    min-width: 0;
    border-radius: 0.7rem;
    box-shadow: 0 0.1em 0.6em rgba(0,0,0,0.08);
  }
  .card__cover,
  .card__content {
    width: 100%;
    border-radius: 12px;
    min-width: 0;
    padding: 0 8px;
  }
  .card__title {
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: 0.35em;
  }
  .card__descr {
    font-size: 0.97rem;
    line-height: 1.28;
  }
  .card__link {
    font-size: 0.98rem;
    padding-block: 0.8ex;
    padding-inline: 2ex;
    margin-block-start: 1em;
  }
}

/* Mobile*/
@media (max-width: 600px) {
  .card-stack .wrapper {
    inline-size: 100vw;
    max-width: 100vw;
    padding: 0 2vw;
  }
  .stack-list {
    grid-template-rows: repeat(6, min(360px, 90vw));
    gap: 0px;
    margin-block-end: 12px;
    padding-block-end: 10px;
  }
  .card {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "text";
    border-radius: 0.4rem;
    font-size: 0.94rem;
    box-shadow: 0 0.1em 0.4em rgba(0,0,0,0.09);
    min-width: 0;
    width: 90%;
    padding: 0;
    left: 15px;
  }
  .card__cover,
  .card__content {
    width: 100%;
    border-radius: 8px;
    min-width: 0;
    padding: 0 2vw;
  }
  .card__cover img,
  .card__cover source {
    width: 100%;
    max-width: 95vw;
    height: auto !important;
    border-radius: 8px;
    padding: 5px 0 0 0;
  }
  .card__title {
    font-size: 1.06rem;
    line-height: 1.15;
    margin-bottom: 0.25em;
  }
  .card__descr {
    font-size: 0.86rem;
    line-height: 1.18;
    word-break: break-word;
    max-width: 100%;
    margin-bottom: 0.7em;
  }
  .card__link {
    font-size: 0.85rem;
    padding-block: 0.6ex;
    padding-inline: 1.2ex;
    margin-block-start: 0.5em;
  }
}

/* Prevent overflow and text cutoff in cards */
@media (max-width: 600px) {
  .card__content {
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
    padding-bottom: 1em;
  }
  .card__descr,
  .card__title {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }
}