/* ================= Base ================= */
a{   text-decoration:none !important;}
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: Arial, sans-serif;
  color: #fff;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  background: #000;
}

main {
  min-height: 100vh;  min-height: auto;
  flex: 1 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* ================= Sections ================= */
section {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
}

section:not(.footer-section) {
  min-height: 100vh;
}

  /*
.h2-wrap h2 {
  margin: 0;
  color: rgba(8, 36, 64, 0.85);

  text-shadow:
    -2px 0 1px rgba(30, 144, 255, 0.75), /* left blue *//*
     2px 0 1px rgba(212, 175, 55, 0.75), /* right gold *//*
     0 3px 6px rgba(0, 0, 0, 0.35);
}
 */
 
  
h2:not(.card-top h2) {
  font-size: clamp(3rem, 7vw, 6rem);

  /* main text color (slightly translucent) */
  color: rgba(8, 36, 64, 0.85);

  /* layered shadows:
     left = dodgerblue
     right = gold
     depth = subtle dark */
  text-shadow:
    -2px 0 1px rgba(30, 144, 255, 0.75), /* left blue */
     2px 0 1px rgba(212, 175, 55, 0.75), /* right gold */
     0 3px 6px rgba(0, 0, 0, 0.35);      /* depth */           /*  looks " shy-say" :      font-family: 'Anta',  Arial,  arial, sans-serif !important; */
}


/* === Section 1 === */
/* ================= PARA-1 (REPIXEL LANDING) ================= */

/* ================= SECTION 1 ================= */

.para-1 {
  min-height: 100vh;
  background: linear-gradient(135deg, #1d1d1d 50%, #222 50%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

/* CENTER BLOCK (OPTION 1 LIFT) */
.para-1 .repixel-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  /*   subtle upward lift */
  transform: translateY(clamp(-4vh, -6vh, -8vh));
  gap: 2.2rem;
}

/* H1 */

/* Anta-Regular.woff2   – headers */
@font-face {
  font-family: 'Anta';
  src: url('https://repixel.de/blog/wp-content/themes/micromoon/assets/fonts/Anta.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


.para-1 h1 {
  font-size: 2.8rem;
  letter-spacing: 0.6em;
/* +++++++++++++++++++++++++++++++++++++++
** font shnigshnag
**+++++++++++++++++++++++++++++++++++++++
*/  font-family: 'Anta',  Arial,  arial, sans-serif !important;

  font-weight: 300;
  text-transform: uppercase;
  color: #AAA;
  text-shadow: 1px 1px 0px black, -1px -1px 1px #CCC;
  margin:2rem 0 0 0;
}

/* SUPERPIXEL */
.square {
  position: relative;
  width: clamp(15%, 20em, 40%);
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  padding: 8px;

  background:
    linear-gradient(270deg, red, orange, yellow, lime, cyan, blue, violet, red),
    linear-gradient(270deg, red, orange, yellow, lime, cyan, blue, violet, red);

  background-size: 200% 100%, 200% 100%;
  background-blend-mode: screen;

  animation: rainbowFlow 6s linear infinite;

  filter: saturate(1.5) brightness(1.2);
}


.para-1 h1 a {
  color: inherit;
  text-decoration: none !important; 
}




 
/* === Animated border (mirrored flow) === */
.square::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 8px;    /* ← this must match the inset in ::after !! */
  border-radius: inherit; 
 /* animation-delay: -4s;*/
animation-delay: -3s;


  background: inherit;
  background-size: inherit;

  animation: rainbowFlow 6s linear infinite reverse;
  
  
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;

  z-index: 1;
}
 
/* === Inner frosted glass core === */
.square::after {/*
  content: "";
  position: absolute;
  inset: 8px; /* ← this must match the padding in ::before !! *//*
  border-radius: calc(10px - 6px);
 /* background: rgba(30, 30, 30, 0.4);*//*
  backdrop-filter: blur(8px) brightness(1.2);
  -webkit-backdrop-filter: blur(8px) brightness(1.2);
  box-shadow:
    inset 0 0 10px rgba(255, 255, 255, 0.1),
    inset 0 0 20px rgba(255, 255, 255, 0.05);
	/* new *//*
	background: rgba(100, 100, 100, 0.1);
   /*filter: brightness(1.3) saturate(1.2);*/
	
  z-index: 2;
/**********************************************/
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 8px;
  background: rgba(30,30,30,0.4);
  backdrop-filter: blur(8px);
}


/* === Rainbow animation === */
@keyframes rainbowFlow {
  from { background-position: 0% 50%; }
  to   { background-position: 200% 50%; }
}




/**/