* {
  line-height: normal;
}

body {
 
  margin: 0;
}


*, html {

    scroll-behavior: smooth !important;
}

::-webkit-scrollbar {
  width: 4px;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #ffb53d;
}

  .pkg-action-area {
        padding: 0 10px 10px 10px;
        width: 100%;
        margin-top: auto;
    }

    /* Common Button Styles */
    .pkg-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        height: 2.5rem;
        font-size: 0.875rem;
        font-weight: 600;
        border-radius: 0.5rem;
        border: none;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .pkg-btn-add {
        background-color: #e5e5e5;
        color: #000000;
    }
    .pkg-btn-add:hover { background-color: #d4d4d4; }

    .pkg-btn-remove {
        background-color: rgba(239, 68, 68, 0.1);
        color: #ef4444;
    }
    .pkg-btn-remove:hover { background-color: rgba(239, 68, 68, 0.2); }

    /* NEW: Loading Button Styles */
    .pkg-btn-loading {
        background-color: #2d2d2d;
        color: #888888;
        cursor: wait;
        display: none; /* Hidden by default */
    }

    /* Spinner Animation */
    .pkg-spinner {
        width: 16px;
        height: 16px;
        border: 2px solid #888888;
        border-bottom-color: transparent;
        border-radius: 50%;
        animation: pkg-spin 1s linear infinite;
    }

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

    .pkg-hidden {
        display: none !important;
    }
    
.bg-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.05;
  z-index: -1;
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 30%;
  overflow: scroll;
}

.social-icons a i {
  transition: fill 0.2s, color 0.2s;
  fill: #ffffff17;
}
.social-icons a:hover i,
.social-icons a:focus i {
  fill: var(--color-primary); /* Tailwind red-500 */
  color: var(--color-primary);
}
/* for SVGs using only currentColor */
.social-icons a i  {
  transition: fill 0.2s;
}
.social-icons a:hover i ,
.social-icons a:focus i  {
  fill: var(--color-primary);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}


.gradient-btn {
	position: relative;
	overflow: hidden;
}

/*.gradient-btn::before {*/
/*	content: '';*/
/*	position: absolute;*/
/*	top: -50%;*/
/*	left: -50%;*/
/*	width: 200%;*/
/*	height: 200%;*/
/*	background: linear-gradient(*/
/*		to right,*/
/*		transparent,*/
/*		rgba(255, 255, 255, 0.5),*/
/*		transparent*/
/*	);*/
/*	transform: rotate(60deg);*/
/*	transition: transform 1s;*/
/*	transform: translate(-100%, -100%);*/
/*}*/
.gradient-btn:hover::before {
	transform: translate(100%, 100%);
}

.absolute-center {
    position: absolute;
    top: calc(1/2 * 100%);
    left: calc(1/2 * 100%);
    --tw-translate-x: calc(calc(1/2 * 100%) * -1);
    --tw-translate-y: calc(calc(1/2 * 100%) * -1);
    translate: var(--tw-translate-x) var(--tw-translate-y);
}


input:focus {
  outline: none;
  border: none;
}

input:focus-visible {
  outline: none;
  border: none;
}

input {
  outline: none;
  border: none;
}

/* Swiper Slider Custom Styles */ 
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-color-secondary);
}

.packageMainSwiper .swiper-slide {
  overflow: hidden;
}

.packageMainSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.packageThumbsSwiper .swiper-slide {
  opacity: 0.2;
  transition: opacity 0.3s ease, border 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.packageThumbsSwiper .swiper-slide-thumb-active { 
  opacity: 1 !important;
  border-color: var(--color-primary) !important;
}

.packageThumbsSwiper .swiper-slide:hover {
  opacity: 0.8;
}

.swiper-button-next,
.swiper-button-prev {
  background: rgba(22, 22, 26, 0.8) !important;
  width: 40px !important; 
  height: 40px !important;
  border-radius: 50% !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--color-primary) !important;
}

.swiper-button-next:after, 
.swiper-button-prev:after {
  font-size: 16px !important;
  color: #fff;
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 30px !important;
    height: 30px !important;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 12px !important;
  }
}

.scrollbar-hide {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}



.loading-data {
	width: 50px;
	padding: 8px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: var(--color-primary);
	--_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
	-webkit-mask: var(--_m);
	mask: var(--_m);
	-webkit-mask-composite: source-out;
	mask-composite: subtract;
	animation: l3 1s infinite linear;
}
@keyframes l3 {
	to {
		transform: rotate(1turn);
	}
}


.btn-loading {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	position: relative;
	animation: rotate1 1s linear infinite;
}
.btn-loading::before {
	content: '';
	box-sizing: border-box;
	position: absolute;
	inset: 0px;
	border-radius: 50%;
	/*border: 3px solid #16161A;*/
	animation: prixClipFix 2s linear infinite;
}

/* --- Pulse Dot (Updated to Green) --- */
.badge-pulse {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    /* Bright Green Color */
    background-color: #22c55e; 
    box-shadow: 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse-green 2s infinite;
    margin-right: 8px;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* --- Custom Tooltip Styles --- */
.pkg-tooltip-container {
    position: relative;
    /* Do not set overflow:hidden here or tooltips will vanish */
}

/* The actual tooltip bubble */
.pkg-tooltip-text {
    visibility: hidden;
    background-color: #1A1B1E; /* Dark Grey Background */
    color: #fff;
    text-align: center;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    font-family: sans-serif;
    white-space: nowrap;
    
    /* Request: No borders */
    border: none !important;
    
    /* Request: In front of page */
    z-index: 9999 !important;
    position: absolute;
    opacity: 0;
    transition: all 0.2s ease;
    
    /* Shadow for depth since border is gone */
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    pointer-events: none; /* Let clicks pass through */
}

/* The "Arrow" pointing down */
.pkg-tooltip-text::after {
    content: "";
    position: absolute;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    /* Arrow color matches background, transparent elsewhere */
    border-color: #1A1B1E transparent transparent transparent;
}

/* --- VARIANT 1: Button Tooltip (Standard: Floats Above) --- */
.pkg-tooltip-btn .pkg-tooltip-text {
    bottom: 125%; /* Pushes it up */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
}

.pkg-tooltip-btn .pkg-tooltip-text::after {
    top: 100%; /* Arrow at bottom */
}

.pkg-tooltip-btn:hover .pkg-tooltip-text {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* --- VARIANT 2: Image Tooltip (Floats ABOVE THE CARD) --- */
.pkg-tooltip-img {
    /* Position fixed relative to the card top */
    top: -35px; 
    left: 50%;
    transform: translateX(-50%) translateY(10px);
}

.pkg-tooltip-img::after {
    top: 100%; /* Arrow at bottom pointing to card */
}

/* Trigger image tooltip on group hover (hovering the whole card/link) */
.group:hover .pkg-tooltip-img {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* --- Typewriter Cursor (Adjusted for Badge) --- */
#typewriter-cursor {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7); /* Match badge text color */
    margin-left: 1px;
    animation: blink 0.7s infinite;
    font-weight: 500;
}

/* Secondary Button (Support) */
.btn-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.crux-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}
@media (max-width: 600px) {
    .crux-actions {
        flex-direction: column;
        width: 100%;
    }
}

.bg-delete {
    background-color: #D84141;
} 


.bg-primary {
background-color: var(--color-primary) !important;
}


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

@keyframes prixClipFix {
	0% {
		clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0); 
	}
	25% {
		clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
	}
	50% {
		clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
	}
	75% {
		clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
	}
	100% {
		clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
	}
}


.colored-toast.swal2-icon-success {
	background-color: #a5dc86 !important;
}

.colored-toast.swal2-icon-error {
	background-color: #f27474 !important;
}

.colored-toast.swal2-icon-warning {
	background-color: #f8bb86 !important;
}

.colored-toast.swal2-icon-info {
	background-color: #3fc3ee !important;
}

.colored-toast.swal2-icon-question {
	background-color: #87adbd !important;
}

.colored-toast .swal2-title {
	color: white;
}

.colored-toast .swal2-close {
	color: white;
}

.colored-toast .swal2-html-container {
	color: white;
}




.Btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(255 255 255 / 1%);
  border: solid 1.5px #ffffff03;
  font-weight: 600;
  gap: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: .3s;
}

.Btn path {
	fill: #ffffff5c;
	transition: all;
	transition-duration: 300ms;
}


.Btn:hover path {
	fill: var(--dark-color-secondary);
}


.Btn::before {
  width: 100%;
  height: 200px;
  position: absolute;
  content: "";
  background-color: var(--color-primary);
  border-radius: 50%;
  left: -100%;
  top: 0;
  z-index:1;
  transition-duration: .3s;
}

.Btn:hover::before {
  transition-duration: .3s;
  transform: translate(100%,-50%);
  border-radius: 0;
	
}

.Btn:active {
  transform: translate(5px,5px);
  transition-duration: .3s;
}

.Btn:hover {
	box-shadow: 5px 5px 10px rgb(36 36 36 / 24%);
	color: var(--dark-color-secondary)
}




@keyframes scaleUpDown {
  0%, 100% {
    transform: scaleY(1) scaleX(1);
  }

  50%, 90% {
    transform: scaleY(1.1);
  }

  75% {
    transform: scaleY(0.95);
  }

  80% {
    transform: scaleX(0.95);
  }
}

@keyframes shake {
  0%, 100% {
    transform: skewX(0) scale(1);
  }

  50% {
    transform: skewX(5deg) scale(0.9);
  }
}

@keyframes particleUp {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    top: -100%;
    transform: scale(0.5);
  }
}

@keyframes glow {
  0%, 100% {
    background-color: #ef5a00;
  }

  50% {
    background-color: #ff7800;
  }
}

.fire {
  position: absolute;
  top: calc(8% - 50px);
  left: calc(100% - 50px);
  width: 35px;
  height: 35px;
  background-color: transparent;
  margin-left: auto;
  margin-right: auto;
z-index: 1000;
}

.fire-center {
  position: absolute;
  height: 100%;
  width: 100%;
  animation: scaleUpDown 3s ease-out;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.fire-center .main-fire {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(farthest-corner at 10px 0, #d43300 0%, #ef5a00 95%);
  transform: scaleX(0.8) rotate(45deg);
  border-radius: 0 40% 60% 40%;
}

.fire-center .particle-fire {
  position: absolute;
  top: 60%;
  left: 45%;
  width: 10px;
  height: 10px;
  background-color: #ef5a00;
  border-radius: 50%;
  animation: particleUp 2s ease-out 0;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.fire-right {
  height: 100%;
  width: 100%;
  position: absolute;
  animation: shake 2s ease-out 0;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.fire-right .main-fire {
  position: absolute;
  top: 15%;
  right: -25%;
  width: 80%;
  height: 80%;
  background-color: #ef5a00;
  transform: scaleX(0.8) rotate(45deg);
  border-radius: 0 40% 60% 40%;
}

.fire-right .particle-fire {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 15px;
  height: 15px;
  background-color: #ef5a00;
  transform: scaleX(0.8) rotate(45deg);
  border-radius: 50%;
  animation: particleUp 2s ease-out 0;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.fire-left {
  position: absolute;
  height: 100%;
  width: 100%;
  animation: shake 3s ease-out 0;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.fire-left .main-fire {
  position: absolute;
  top: 15%;
  left: -20%;
  width: 80%;
  height: 80%;
  background-color: #ef5a00;
  transform: scaleX(0.8) rotate(45deg);
  border-radius: 0 40% 60% 40%;
}

.fire-left .particle-fire {
  position: absolute;
  top: 10%;
  left: 20%;
  width: 10%;
  height: 10%;
  background-color: #ef5a00;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px #d43322);
  animation: particleUp 3s infinite ease-out 0;
  animation-fill-mode: both;
}

.fire-bottom .main-fire {
  position: absolute;
  top: 30%;
  left: 20%;
  width: 75%;
  height: 75%;
  background-color: #ff7800;
  transform: scaleX(0.8) rotate(45deg);
  border-radius: 0 40% 100% 40%;
  filter: blur(10px);
  animation: glow 2s ease-out 0;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}




.package-description {
	--tw-text-opacity: 1;
	color: rgba(240,236,226,var(--tw-text-opacity));
	-webkit-text-decoration: none;
	text-decoration: none;
	text-transform: none;
	font-weight: 400
}

.package-description :not(:last-child) {
	margin-bottom: .85rem !important;
}

.package-description h1,.package-description h2,.package-description h3,.package-description h4 {
	margin-top: 1.5rem;
	margin-bottom: 1rem;
	--tw-text-opacity: 1;
	color: rgba(255,252,245,var(--tw-text-opacity));
	font-style: normal;
	-webkit-text-decoration: none;
	text-decoration: none;
	text-transform: capitalize;
	font-weight: 700
}

.package-description a {
	--tw-text-opacity: 1;
	color: var(--color-primary);
	transition-timing-function: cubic-bezier(.4,0,.2,1);
	transition-duration: .15s
}

.package-description a:hover {
	--tw-text-opacity: 1;
	text-decoration-line: underline !important;
	color: var(--color-primary);
}

.package-description b {
	--tw-text-opacity: 1;
	color: rgba(255,252,245,var(--tw-text-opacity))
}

.package-description ol li,.package-description ul li {
	position: relative;
	padding-left: 2ch;
	--tw-text-opacity: 1;
	color: rgba(240,236,226,var(--tw-text-opacity))
}

.package-description ul li:before {
	content: "";
	position: absolute;
	left: 0;
	top: .5rem;
	height: .5rem;
	width: .5rem;
	border-radius: .5rem;
	--tw-bg-opacity: 1;
	background-color: var(--color-primary);
}

.package-description ol {
	counter-reset: ol-counter
}

.package-description ol li {
	counter-increment: ol-counter
}

.package-description ol li:before {
	content: counter(ol-counter) ". ";
	position: absolute;
	left: 0;
	font-weight: 700;
	--tw-text-opacity: 1;
	color: var(--color-primary);
}

.package-description img {
	max-width: 100%;
}


.package-description hr {
	color:white;
	opacity: 0.1;
}

.package-description img.fr-rounded {
	border-radius: calc(.5rem*.85)
}

.package-description img.fr-shadow {
	--tw-shadow: 0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;
	--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);
	--tw-shadow-color: #0000004d;
	--tw-shadow: var(--tw-shadow-colored)
}

.package-description img.fr-bordered {
	border-width: 2px;
	--tw-border-opacity: 1;
	border-color: rgba(31,94,255,var(--tw-border-opacity))
}

.package-description iframe {
	aspect-ratio: 16/9;
	height: 100%;
	width: 100%;
	border-radius: calc(.5rem*.85)
}


.rotate-180 { transform: rotate(180deg); }
@keyframes pulse-subtle {
0%,
100% {
  transform: scale(1);
  box-shadow: 0 10px 25px -5px rgba(239, 68, 68, 0.3);
}
50% {
  transform: scale(1.05);
  box-shadow: 0 15px 30px -5px rgba(239, 68, 68, 0.5);
}
}
@keyframes gradient {
0%,
100% {
  background-position: 0% 50%;
}
50% {
  background-position: 100% 50%;
}
}
.animate-pulse-subtle {
animation: pulse-subtle 2s ease-in-out infinite;
}
.animate-gradient {
background-size: 200% 200%;
animation: gradient 3s ease infinite;
}



/* Profile dropdown smoothing, gap and visibility */
#profile-dropdown-menu {
  width: 300px;
  transform: translateY(-6px);         /* start slightly above */
  transition: transform .18s ease, opacity .18s ease, visibility .18s;
  will-change: transform, opacity;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

/* Show when parent .group also has .open */
.group.open > #profile-dropdown-menu,
.profile-open > #profile-dropdown-menu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}



/* Make links inside the dropdown less cramped and align icon/text */
#profile-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
}

/* Slightly stronger hover bg */
#profile-dropdown-menu a:hover {
  background-color: rgba(34,34,34,0.9);
}

/* Ensure the divider region doesn't feel cramped */
#profile-dropdown-menu .border-t {
  margin-top: 6px;
  padding-top: 6px;
}

.home-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 12px;
    color: inherit;
    transition: color 0.2s 
ease;
}

/* section spacing */
.features-section {
  background: transparent !important;
  padding: 28px 0 12px !important;
  margin-top: -120px;
  /* slim like your ref */
}

/* one row, evenly spaced, transparent */
.features-section .features-container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 00px;
  display: flex !important;
  align-items: flex-start;
  justify-content: space-between;
  gap: 72px;
  /* distance between items */
  flex-wrap: nowrap;
}

/* kill any previous "card" styling */
.features-section .feature-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  padding: 0 !important;
  margin: 0 !important;

  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 250px;
  /* keeps lines nice */
}

.features-section .feature-icon {
    width: 80px;
    height: 60px;
    min-width: 40px;
    display: grid;
    place-items: center;
    border-radius: 10px;

    /* MODIFIED: Set the orange background tint (10% opacity) */
    background-color: rgba(255, 181, 61, 0.1) !important;
    
    /* MODIFIED: Set the text color to Orange to match */
    color: var(--color-primary, #FFB53D);

    box-shadow: none !important;
    transition: background .15s ease;
}

/* Optional: Make it slightly darker on hover */
.features-section .feature-card:hover .feature-icon {
    background-color: rgba(255, 181, 61, 0.2) !important;
}

.features-section .feature-icon i,
.features-section .feature-icon svg {
  font-size: 16px;
  line-height: 1;
  transition: all 0.3s ease;
}

/* Icon glow effect on hover */
.features-section .feature-card:hover .feature-icon i,
.features-section .feature-card:hover .feature-icon svg {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
  transform: scale(1.05);
}

/* text */
.features-section .feature-content {
  max-width: 260px;
}

.features-section .feature-title {
  margin: 0 0 6px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .2px;
  color: var(--fx-text);
}

.features-section .feature-description {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
  color: var(--fx-muted);
}

/* accessibility without outlines/borders */
.features-section .feature-card:focus-within .feature-icon {
  background: var(--fx-icon-tile-hover);
}

/* responsive: wrap to two columns then one */
@media (max-width: 1200px) {
  .features-section .features-container {
    justify-content: center;
    gap: 40px 64px;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .features-section .features-container {
    gap: 18px 24px;
  }

  .features-section .feature-card {
    min-width: 0;
  }

  .features-section .feature-content {
    max-width: none;
  }
}

.templates-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 12px;
  color: inherit;
  transition: color 0.2s ease;
}


/* Features section wrapper */
.features {
  padding: 48px 0;
  margin-top: -20px;
}

/* The merged panel (single bar) */
.features__panel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Grid container */
.features__grid {
  list-style: none;
  margin: 0;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--ring);
  box-shadow: inset 0 1px 0 var(--glow), 0 10px 30px rgba(0, 0, 0, 0.35);
  border-radius: 0;
}

/* Individual feature column */
.feature {
  position: relative;
  padding: 0 28px;
}

/* Vertical separators between columns */
.feature:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--divider);
}

/* Icon container */
.feature__icon {
  width: 70px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 16px;
}

.feature__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--text);
  opacity: 0.95;
}

/* Feature title */
.feature__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 10px 0;
  letter-spacing: -0.01em;
}

/* Feature body text */
.feature__body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  max-width: 56ch;
}

/* Responsive: Tablet (2x2 grid) */
@media (max-width: 900px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px;
  }

  .feature {
    padding: 20px 24px;
  }

  /* Remove left separator on 3rd item (new row) */
  .feature:nth-child(3)::before {
    display: none;
  }

  /* Add horizontal separator for bottom row */
  .feature:nth-child(n+3) {
    border-top: 1px solid var(--divider);
    padding-top: 24px;
    margin-top: 24px;
  }
}

/* Responsive: Mobile (stacked 1 column) */
@media (max-width: 520px) {
  .features {
    padding: 32px 0;
  }

  .features__panel {
    padding: 0 20px;
  }

  .features__grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .feature {
    padding: 20px 16px;
  }

  /* Remove all vertical separators */
  .feature::before {
    display: none !important;
  }

  /* Add horizontal separators between all items */
  .feature:not(:last-child) {
    border-bottom: 1px solid var(--divider);
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .feature:nth-child(n+3) {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }
}



/* --- Checkout Layout & Grid --- */
.checkout-wrapper {
    background-color: #101113; /* Dark background */
    min-height: 100vh;
    color: #C1C2C5;
    font-family: system-ui, -apple-system, sans-serif;
    padding-top: 40px;
    padding-bottom: 40px;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .checkout-grid {
        grid-template-columns: 2fr 1fr; /* 2/3rds Main, 1/3rd Sidebar */
    }
}

/* --- Main Column --- */
.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.checkout-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1;
}

.package-count {
    color: #666;
    font-weight: 500;
    font-size: 14px;
    margin: 0;
}

/* --- Cards (Shared Style) --- */
.product-card, .card {
    background-color: #1A1B1E;
    border: 1px solid #2C2E33;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: box-shadow 0.2s;
}

.product-card:hover, .card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

/* --- Product Card Specifics --- */
.product-card-inner {
    display: flex;
    flex-direction: column;
}

@media (min-width: 640px) {
    .product-card-inner {
        flex-direction: row;
    }
}

.product-image-link {
    flex-shrink: 0;
}

.product-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

@media (min-width: 640px) {
    .product-image {
        width: 205px;
        height: 100%;
        min-height: 115px;
    }
}

.product-details {
    padding: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.product-price {
    font-weight: 700;
    color: #fff;
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #888;
    font-weight: 500;
}

.meta-icon, .meta-icon-img {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}

.connect-btn {
    background: none;
    border: none;
    color: #FFB53D;
    padding: 0;
    font-size: 12px;
    cursor: pointer;
}

.delete-btn {
    background: rgba(250, 82, 82, 0.15);
    color: #fa5252;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    margin: 16px; /* Position it */
    border-radius: 4px;
    align-self: flex-end;
}

.delete-btn:hover {
    background: rgba(250, 82, 82, 0.25);
}

/* --- Upsell Section --- */
.upsell-container {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 40px;
}

.upsell-image-placeholder {
    width: 150px;
    height: 100px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    flex-shrink: 0;
}

.upsell-content h2 {
    color: #fff;
    font-size: 24px;
    margin: 0 0 8px 0;
}

.upsell-content p {
    color: #888;
    font-size: 14px;
    margin: 0 0 16px 0;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 181, 61, 0.15);
    color: #FFB53D;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
}

.btn-learn-more:hover {
    background: rgba(255, 181, 61, 0.25);
}

/* --- Sidebar Styles --- */
.sidebar-card {
    padding: 20px;
}

.lg\:sticky {
    position: sticky;
    top: 2rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.card-icon {
    width: 24px;
    height: 24px;
    color: #fff;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* --- Forms & Inputs --- */
.input-group {
    display: flex;
    width: 100%;
}

.fake-select {
    background: #25262B;
    border: 1px solid #373A40;
    color: #fff;
    padding: 0 12px;
    display: flex;
    align-items: center;
    font-size: 14px;
    border-right: none;
    border-radius: 4px 0 0 4px;
    width: 100px;
}

.form-input {
    background: #25262B;
    border: 1px solid #373A40;
    color: #fff;
    padding: 10px 12px;
    font-size: 14px;
    width: 100%;
    outline: none;
}

.form-input.full-width {
    border-radius: 4px 0 0 4px;
}

.form-input:focus {
    border-color: #FFB53D;
}

.btn-apply {
    background: rgba(255, 181, 61, 0.15);
    color: #FFB53D;
    border: 1px solid #373A40; /* Matches input border */
    border-left: none;
    padding: 0 15px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 0 4px 4px 0;
    transition: background 0.2s;
}

.btn-apply:hover {
    background: rgba(255, 181, 61, 0.25);
}

/* --- Cart Summary Specifics --- */
.summary-rows {
    margin-top: 10px;
    font-size: 16px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #C1C2C5;
}

.summary-row.total {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    margin-top: 10px;
}

.btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(45deg, #FFB53D, #FF9F1C);
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 16px;
    transition: filter 0.2s;
}

.btn-checkout:hover {
    filter: brightness(1.1);
}

.payment-methods {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.payment-methods img {
    max-width: 100%;
    opacity: 0.8;
}

.tebex-footer {
    text-align: center;
    font-size: 12px;
    color: #666;
}

.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
    font-weight: 500;
}
/* DISCOUNT TOAST - Orange Color Scheme (#ffb53d) */

/* ——— Shell ——— */
.discount-toast {
  color-scheme: dark;
  position: fixed;
  inset: auto 50px 18px 50px;
  left: 50%;
  transform: translate(-50%, 140%);
  z-index: 10000;

  display: flex;
  align-items: center;
  gap: 16px;

  width: min(1080px, calc(100% - 32px));
  /* Keep dark glass background */
  background: linear-gradient(135deg, rgba(20, 20, 25, 0.98) 0%, rgba(15, 15, 20, 0.95) 100%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  
  /* Orange Border */
  border: 1px solid rgba(255, 181, 61, 0.3);
  border-radius: 16px;
  padding: 14px 18px;
  
  /* Orange Glows & Shadows */
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 181, 61, 0.1) inset,
    0 0 60px rgba(255, 181, 61, 0.15);
  opacity: 0;

  transition:
    transform .38s cubic-bezier(.22,.74,.26,1),
    opacity   .25s ease;
}

/* Visible state */
.discount-toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* Icon */
.discount-toast__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  /* Orange Gradient BG */
  background: linear-gradient(135deg, rgba(255, 181, 61, 0.2) 0%, rgba(255, 181, 61, 0.15) 100%);
  border: 1px solid rgba(255, 181, 61, 0.3);
  border-radius: 10px;
}
.discount-toast__icon svg {
  color: #ffb53d; /* Primary Orange */
  opacity: 1;
  width: 24px;
  height: 24px;
}

/* Content */
.discount-toast__content {
  min-width: 0;
  flex: 1 1 auto;
}
.discount-toast__title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .1px;
  color: #ffffff; /* White title for contrast on dark bg */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.discount-toast__desc {
  margin: 2px 0 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6); /* Muted white */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.discount-toast__desc strong {
  color: #ffb53d; /* Highlight Orange */
  font-weight: 700;
}

/* Actions */
.discount-toast__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

/* Button */
.discount-toast__btn {
  appearance: none;
  border: 0;
  border-radius: 10px;
  /* Vivid Orange Gradient */
  background: linear-gradient(135deg, #ffb53d 0%, #e69c24 100%);
  
  /* Text Dark to contrast with bright Orange */
  color: #1a1a1f; 
  
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(255, 181, 61, 0.4);
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', 'Inter', 'Helvetica', sans-serif;
}
.discount-toast__btn:hover { 
  /* Lighter/Brighter on hover */
  background: linear-gradient(135deg, #ffc46b 0%, #ffb53d 100%); 
  transform: translateY(-1px); 
  box-shadow: 0 4px 12px rgba(255, 181, 61, 0.5);
}
.discount-toast__btn:active { 
  transform: translateY(0); 
  box-shadow: 0 2px 6px rgba(255, 181, 61, 0.4);
}
.discount-toast__btn:focus-visible { 
  outline: 2px solid rgba(255, 181, 61, 0.6); 
  outline-offset: 2px; 
}

/* Close button */
.discount-toast__close {
  appearance: none;
  border: 0;
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  border-radius: 10px;
  /* Subtle Orange Tint */
  background: rgba(255, 181, 61, 0.15); 
  border: 1.5px solid rgba(255, 181, 61, 0.4);
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.discount-toast__close > * {
  position: relative;
  z-index: 2;
}
.discount-toast__close::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 181, 61, 0.3) 0%, rgba(230, 156, 36, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.discount-toast__close:hover { 
  background: rgba(255, 181, 61, 0.25); 
  border-color: rgba(255, 181, 61, 0.6); 
  color: #ffffff; 
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(255, 181, 61, 0.4);
}
.discount-toast__close:hover::before {
  opacity: 1;
}
.discount-toast__close:active {
  transform: scale(0.95);
  box-shadow: 0 2px 6px rgba(255, 181, 61, 0.3);
}
.discount-toast__close:focus-visible { 
  outline: 2px solid rgba(255, 181, 61, 0.7); 
  outline-offset: 2px; 
  box-shadow: 0 0 0 4px rgba(255, 181, 61, 0.2);
}
   
.powered-by img {
    width: 60px;
    opacity: 0.4;
}


/* === BUNDLE PREVIEW GRID STYLES === */
#bundle-preview-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
  width: 100%;
}

@media (min-width: 640px) {
  #bundle-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  #bundle-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Bundle Grid Item */
.bundle-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(37, 38, 43, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bundle-grid-item:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Aspect Ratio Container */
.bundle-grid-item .aspect-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}

.bundle-grid-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bundle-grid-item:hover img {
  transform: scale(1.1);
}

/* Image Gradient Overlay */
.bundle-grid-item .img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
  pointer-events: none;
}

/* Hover Overlay with "Included" Badge */
.bundle-grid-item .hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 181, 61, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.bundle-grid-item:hover .hover-overlay {
  opacity: 1;
}

.bundle-grid-item .included-badge {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

/* Future Releases Card */
.future-releases-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 2px dashed rgba(255, 181, 61, 0.4);
  background: linear-gradient(135deg, rgba(255, 181, 61, 0.05) 0%, rgba(255, 181, 61, 0.1) 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.future-releases-card:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(255, 181, 61, 0.1) 0%, rgba(255, 181, 61, 0.15) 100%);
}

.future-releases-card .aspect-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.future-releases-card .content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-align: center;
}

.future-releases-card .icon-wrapper {
  width: 32px;
  height: 32px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: rgba(255, 181, 61, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.future-releases-card .icon-wrapper svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary, #FFB53D);
}

.future-releases-card .text {
  font-size: 12px;
  font-weight: bold;
  color: var(--color-primary, #FFB53D);
  margin: 0;
}

/* Loading State */
.bundle-loading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
}

/* Package Add to Cart Button - Orange Theme */
.package-add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 2.5rem;
  background-color: #fff;
  border: solid 1.5px #ffffff03;
  color: #000;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: .3s;
}

/*.package-add-to-cart svg,*/
/*.package-add-to-cart path {*/
/*  fill: #ffffff;*/
/*  stroke: #ffffff;*/
/*  transition: all;*/
/*  transition-duration: 300ms;*/
/*}*/

.package-add-to-cart::before {
  width: 100%;
  height: 200px;
  position: absolute;
  content: "";
  background-color: #ffb53d;
  border-radius: 50%;
  left: -100%;
  top: 0;
  z-index: 1;
  transition-duration: .3s;
}

.package-add-to-cart:hover::before {
  transition-duration: .3s;
  transform: translate(100%, -50%);
  border-radius: 0;
}

.package-add-to-cart:hover {
  box-shadow: 5px 5px 10px rgba(255, 181, 61, 0.24);
  color: #000000;
}

.package-add-to-cart:hover svg,
.package-add-to-cart:hover path {
  fill: #000000;
  stroke: #000000;
}

.package-add-to-cart:active {
  transform: translate(3px, 3px);
  transition-duration: .3s;
}

.package-add-to-cart span {
  position: relative;
  z-index: 2;
}

.package-add-to-cart svg {
  position: relative;
  z-index: 2;
}

/* Package Add Gift Button - Orange Theme */
.package-add-gift {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 2.5rem;
  background-color: rgb(255 255 255 / 1%);
  border: solid 1.5px #ffffff03;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: .3s;
}

.package-add-gift svg,
.package-add-gift path {
  fill: rgba(255, 255, 255, 0.6);
  stroke: rgba(255, 255, 255, 0.6);
  transition: all;
  transition-duration: 300ms;
}

.package-add-gift::before {
  width: 100%;
  height: 200px;
  position: absolute;
  content: "";
  background-color: #ffb53d;
  border-radius: 50%;
  left: -100%;
  top: 0;
  z-index: 1;
  transition-duration: .3s;
}

.package-add-gift:hover::before {
  transition-duration: .3s;
  transform: translate(100%, -50%);
  border-radius: 0;
}

.package-add-gift:hover {
  box-shadow: 5px 5px 10px rgba(255, 181, 61, 0.24);
  color: #000000;
}

.package-add-gift:hover svg,
.package-add-gift:hover path {
  fill: #000000;
  stroke: #000000;
}


/* === Discount Banner Styles === */
 .discounts {
        z-index: 99;
        position: fixed;
        right: 18px;
        bottom: 78px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.7em;
        max-width: 320px;
    }
    .closebtn {
        transition: .3s;
        font-family: "ClashDisplay-Semibold";
        font-weight: 600;
        font-size: 14px;
        line-height: 100%;
        text-align: right;
        vertical-align: middle;
        color: rgb(143 143 143);
        background: rgba(31, 31, 31, 1);
        box-shadow: 0px 0px 8px 0px rgba(31, 31, 31, 1);
        border-radius: 10px;
        text-transform: uppercase;
        padding: 3px 10px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .dblock {
        min-width: 180px;
        max-width: 320px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 14px 0;
        justify-content: center;
        background: linear-gradient(135deg, #2d2100 0%, #ffb53d22 100%);
        /*border: 1.5px solid #ffb53d66;*/
        border-radius: 12px;
        box-shadow: 0 2px 12px 0 #ffb53d22, 0 1px 0 #ffb53d33 inset;
    }
    .dtitle {
        display: flex;
        align-items: center;
        gap: 7px;
        margin-bottom: 6px;
        font-family: "ClashDisplay-Semibold";
        font-weight: 600;
        font-size: 18px;
        line-height: 100%;
        vertical-align: middle;
        color: #ffb53d;
        text-transform: uppercase;
        /*text-shadow: 0 0 7px #ffb53d77, 0 0 12px #ffb53d44;*/
        animation: none;
        letter-spacing: 0.5px;
    }
    .dpack {
        font-family: "ClashDisplay-Semibold";
        font-weight: 600;
        font-size: 20px;
        line-height: 100%;
        text-align: center;
        vertical-align: middle;
        text-transform: uppercase;
        max-width: 90%;
        color: rgba(255, 255, 255, 1);
        display: flex;
        justify-content: center;
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
        animation: glow 1.5s ease-in-out infinite alternate;
    }
    @keyframes glow {
        0%, 100% {
            text-shadow: 0 0 8px rgba(255,255,255,0.4);
        }
        50% {
            text-shadow: 0 0 16px rgba(255,255,255,0.8);
        }
    }
    .dperc {
        font-family: "ClashDisplay-Semibold";
        font-weight: 600;
        font-size: 12px;
        line-height: 100%;
        text-align: center;
        vertical-align: middle;
        text-transform: uppercase;
        color: #ffb53d;
        background: none;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: unset;
        background-clip: unset;
        animation: none;
        text-shadow: 0 0 6px #ffb53d33, 0 0 1px #ffb53d22;
    }

    .dblock::after {
        content: "";
        position: absolute;
        background: linear-gradient(135deg, #ffb53d 1.83%, rgba(255, 181, 61, 0.32) 50.91%, #ffb53d 100%);
        border-radius: 12px;
        inset: 0px;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: destination-out;
        mask-composite: exclude;
        pointer-events: none;
        padding: 1px;
    }
    
    /* --- Hero Container --- */
.crux-hero {
    position: relative;
    width: 100%;
    min-height: 800px; /* Tall to show off the background */
    display: flex;
    align-items: center;
    justify-content: center;
    /* No background-color here, so the liquid shows through */
    padding: 20px;
    box-sizing: border-box;
}

.crux-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

/* --- Badge Style --- */
.crux-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    /* Glass effect for the badge */
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    backdrop-filter: blur(4px);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: #5227FF; /* Matches your liquid color */
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(82, 39, 255, 0.7);
    animation: pulse-purple 2s infinite;
}

@keyframes pulse-purple {
    0% { box-shadow: 0 0 0 0 rgba(82, 39, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(82, 39, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(82, 39, 255, 0); }
}

/* --- Typography --- */
.crux-title {
    font-family: 'Oswald', sans-serif; /* Using your loaded font */
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    /* Subtle drop shadow to separate text from complex background */
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.crux-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    max-width: 580px;
    margin: 0 auto 40px auto;
}

/* Responsive Text */
@media (min-width: 768px) {
    .crux-title { font-size: 6.5rem; }
    .crux-description { font-size: 1.25rem; }
}

/* --- Buttons --- */
.crux-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.crux-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

/* Primary Button (White) */
.btn-primary {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

/* Glass Button (Secondary) */
.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}


.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

    .dblock .copy-btn {
        text-decoration: none;
        background: #ffb53d;
        box-shadow: 0px 0px 12px 0px #ffb53d55;
        border-radius: 10px;
        font-family: "ClashDisplay-Semibold";
        font-weight: 600;
        font-size: 15px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        vertical-align: middle;
        color: #1a1a1f;
        padding: 10px;
        cursor: pointer;
        width: 85%;
        text-transform: uppercase;
        transition: .3s;
    }
    .dblock .copy-btn:hover {
        background: #ffc46b;
        color: #1a1a1f;
        box-shadow: 0 2px 8px #ffb53d
    }
    transition: .3s;
    text-decoration: none;
}
