/* ==========================================================
  ELITE  — 
   Χωρίς γραμμές – μόνο clean high-end look
<div class="elite">......text <div>
========================================================== */

/* Diagonal spotlight beam */
@keyframes aepBeam {
  0%   { opacity: 0; transform: translate(-120%, -120%) rotate(25deg); }
  40%  { opacity: 0.35; }
  50%  { opacity: 0.55; }
  60%  { opacity: 0.35; }
  100% { opacity: 0; transform: translate(150%, 150%) rotate(25deg); }
}

/* Fade in */
@keyframes aepFade {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------------
   MAIN CONTAINER
----------------------------------------------------------- */
:is(.elite, .ulse-elite) {
  font-family: "Noto Sans", "Roboto", Arial, sans-serif;

  max-width: 950px;
  margin: 60px auto;
  padding: 60px 55px;

  /* Smooth  */
  background: linear-gradient(135deg, #f9d7bd, #fffefe, #ffd6a0);

  border-radius: 26px;
  position: relative;
  overflow: hidden;

  animation: aepFade 1.2s ease forwards;
  opacity: 0;

  box-shadow:
    0 0 40px rgba(255,255,255,0.07),
    inset 0 0 35px rgba(255,255,255,0.05),
    inset 0 0 60px rgba(0,0,0,0.8);

  color: #3a0404;
}

/* ----------------------------------------------------------
   DIAGONAL SPOTLIGHT
----------------------------------------------------------- */
:is(.elite, .ulse-elite)::before {
  content: "";
  position: absolute;

  width: 180%;
  height: 180%;
  top: -40%;
  left: -40%;

  /* bright diagonal beam */
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(51, 9, 9, 0.1) 40%,
    rgba(36, 27, 27, 0.25) 50%,
    rgba(78, 35, 3, 0.1) 60%,
    transparent 100%
  );

  filter: blur(1px);
  animation: aepBeam 6s linear infinite;
  pointer-events: none;
}

/* ----------------------------------------------------------
   HEADINGS (silver metallic)
----------------------------------------------------------- */
:is(.elite, .ulse-elite) h2 {
  margin-top: 45px;
  margin-bottom: 20px;
  font-size: 34px;
  font-weight: 800;

  background: linear-gradient(90deg, #6b3802, #552f01, #120808);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 12px rgba(255,255,255,0.4),
    0 0 22px rgba(255,255,255,0.25);
}

/* metallic underline */
:is(.elite, .ulse-elite) h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;

  background: linear-gradient(90deg, #7c470c, #492b02, #000000);
  box-shadow: 0 0 12px rgba(57, 44, 44, 0.7);

  border-radius: 2px;
  margin-top: 10px;
  transition: width 0.3s ease;
}

:is(.elite, .ulse-elite) h2:hover::after {
  width: 150px;
}

/* ----------------------------------------------------------
   TEXT
----------------------------------------------------------- */
:is(.elite, .ulse-elite) p {
  font-size: 19px;
  line-height: 1.85;
  margin-bottom: 26px;
  color: #3f2301;
  text-shadow: 0 0 8px rgba(59, 53, 53, 0.1);
}

/* ==========================================================
   FIX — prevent long emails / long words from escaping
========================================================== */
:is(.elite, .ulse-elite) {
  overflow-wrap: break-word;
  word-break: break-word;
}

:is(.elite, .ulse-elite) p,
:is(.elite, .ulse-elite) a {
  overflow-wrap: anywhere;
}

/* ----------------------------------------------------------
   LINKS
----------------------------------------------------------- */
:is(.elite, .ulse-elite) a {
  color: #0c0101;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}

:is(.elite, .ulse-elite) a:hover {
  color: #412626;
  text-shadow: 0 0 12px rgba(34, 32, 32, 0.6);
}

:is(.elite, .ulse-elite) a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #0f0e0e, #c6a796);
  box-shadow: 0 0 10px rgba(91, 76, 76, 0.8);
  transition: width 0.3s ease;
}

:is(.elite, .ulse-elite) a:hover::after {
  width: 100%;
}

/* ----------------------------------------------------------
   IMAGES
----------------------------------------------------------- */
:is(.elite, .ulse-elite) img {
  width: 100%;
  border-radius: 18px;
  margin: 35px 0;

  box-shadow:
    0 0 25px rgba(255,255,255,0.10),
    0 0 65px rgba(0,0,0,0.85);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

:is(.elite, .ulse-elite) img:hover {
  transform: scale(1.04);
  box-shadow:
    0 0 45px rgba(255,255,255,0.18),
    0 0 90px rgba(0,0,0,0.9);
}

/* ----------------------------------------------------------
   CENTER TEXT
----------------------------------------------------------- */
:is(.elite, .ulse-elite) .center {
  text-align: center;
  font-size: 20px;
  margin-top: 10px;
  color: #4f331a;
  text-shadow: 0 0 14px rgba(255,255,255,0.3);
}
/* ==========================================================
   GOLD ELITE — Strong White Gloss on H2, Strong, Links
========================================================== */

/* ultra-white glossy pass */
@keyframes eliteGlossStrong {
  0%   { opacity: 0; transform: translateX(-140%) rotate(12deg); }
  40%  { opacity: 0; }
  50%  { opacity: 0.95; }
  60%  { opacity: 0.60; }
  100% { opacity: 0; transform: translateX(160%) rotate(12deg); }
}

/* ----------------------------------------------------------
   APPLY TO H2
---------------------------------------------------------- */
:is(.elite, .ulse-elite) h2 {
  position: relative;
  overflow: hidden;
}

:is(.elite, .ulse-elite) h2::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -60%;
  width: 200%;
  height: 170%;

  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.25) 40%,
    rgba(255,255,255,0.95) 50%,
    rgba(255,255,255,0.25) 60%,
    transparent 100%
  );

  transform: translateX(-140%) rotate(12deg);
  animation: eliteGlossStrong 3.8s linear infinite;
  pointer-events: none;
}

/* ----------------------------------------------------------
   APPLY TO BOLD TEXT
---------------------------------------------------------- */
:is(.elite, .ulse-elite) strong {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #8a4c00, #5a2b00, #220e00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

:is(.elite, .ulse-elite) strong::before {
  content: "";
  position: absolute;
  top: -15%;
  left: -70%;
  width: 180%;
  height: 160%;

  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.20) 40%,
    rgba(255,255,255,0.90) 50%,
    rgba(255,255,255,0.20) 60%,
    transparent 100%
  );

  transform: translateX(-150%) rotate(10deg);
  animation: eliteGlossStrong 5.5s linear infinite;
  pointer-events: none;
}

/* ----------------------------------------------------------
   APPLY TO LINKS
---------------------------------------------------------- */
:is(.elite, .ulse-elite) a {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

:is(.elite, .ulse-elite) a::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -70%;
  width: 180%;
  height: 180%;

  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.25) 40%,
    rgba(255,255,255,1) 50%,
    rgba(255,255,255,0.25) 60%,
    transparent 100%
  );

  transform: translateX(-150%) rotate(12deg);
  animation: eliteGlossStrong 4.8s linear infinite;
  pointer-events: none;
}
/* ==========================================================
   ELITE2 — Warm Gold / Coffee Edition
   Χρήση: <div class="elite2">...κείμενο...</div>
========================================================== */

/* MAIN CONTAINER */
.elite2 {
  font-family: "Noto Sans", "Roboto", Arial, sans-serif;

  max-width: 950px;
  margin: 60px auto;
  padding: 60px 55px;

  /* Πιο ζεστό χρυσο-καφέ φόντο */
  background: linear-gradient(135deg, #f2ddc3, #fff6ea, #e9c59a);

  border-radius: 26px;
  position: relative;
  overflow: hidden;

  animation: aepFade 1.2s ease forwards;
  opacity: 0;

  box-shadow:
    0 0 40px rgba(255,255,255,0.10),
    inset 0 0 35px rgba(255,255,255,0.08),
    inset 0 0 60px rgba(80,42,10,0.65);

  color: #3b1f0c;
}

/* DIAGONAL SPOTLIGHT */
.elite2::before {
  content: "";
  position: absolute;

  width: 180%;
  height: 180%;
  top: -40%;
  left: -40%;

  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(120, 70, 20, 0.10) 40%,
    rgba(90, 50, 15, 0.30) 50%,
    rgba(140, 80, 25, 0.12) 60%,
    transparent 100%
  );

  filter: blur(1px);
  animation: aepBeam 6s linear infinite;
  pointer-events: none;
}

/* HEADINGS (golden metallic) */
.elite2 h2 {
  margin-top: 45px;
  margin-bottom: 20px;
  font-size: 34px;
  font-weight: 800;

  background: linear-gradient(90deg, #b87822, #8b5214, #3a1b07);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 12px rgba(255,255,255,0.35),
    0 0 22px rgba(120,60,10,0.4);
}

/* metallic underline */
.elite2 h2::after {
  content: "";
  display: block;
  width: 110px;
  height: 3px;

  background: linear-gradient(90deg, #c88b33, #8a571a, #3a2310);
  box-shadow: 0 0 12px rgba(110,70,30,0.9);

  border-radius: 2px;
  margin-top: 10px;
  transition: width 0.3s ease;
}

.elite2 h2:hover::after {
  width: 160px;
}

/* TEXT */
.elite2 p {
  font-size: 19px;
  line-height: 1.85;
  margin-bottom: 26px;
  color: #3c2613;
  text-shadow: 0 0 8px rgba(80, 55, 35, 0.12);
}

/* FIX — prevent long emails / long words from escaping */
.elite2 {
  overflow-wrap: break-word;
  word-break: break-word;
}

.elite2 p,
.elite2 a {
  overflow-wrap: anywhere;
}

/* LINKS (gold coffee) */
.elite2 a {
  color: #5a2b00;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}

.elite2 a:hover {
  color: #8c4911;
  text-shadow: 0 0 12px rgba(110, 70, 35, 0.7);
}

.elite2 a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #3a1f0f, #d2a76b);
  box-shadow: 0 0 10px rgba(120, 80, 40, 0.9);
  transition: width 0.3s ease;
}

.elite2 a:hover::after {
  width: 100%;
}

/* IMAGES */
.elite2 img {
  width: 100%;
  border-radius: 18px;
  margin: 35px 0;

  box-shadow:
    0 0 25px rgba(255,255,255,0.14),
    0 0 65px rgba(60,30,10,0.85);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.elite2 img:hover {
  transform: scale(1.04);
  box-shadow:
    0 0 45px rgba(255,255,255,0.22),
    0 0 90px rgba(50,25,8,0.95);
}

/* CENTER TEXT */
.elite2 .center {
  text-align: center;
  font-size: 20px;
  margin-top: 10px;
  color: #4b2d16;
  text-shadow: 0 0 14px rgba(255,255,255,0.35);
}

/* ==========================================================
   ELITE2 — Clean Word-Shine bold  links H2 
========================================================== */

@keyframes elite2LetterShine {
  0%   { opacity: 0; transform: translateX(-40%); }
  45%  { opacity: 0; }
  55%  { opacity: 1; }
  70%  { opacity: 0.7; }
  100% { opacity: 0; transform: translateX(150%); }
}

/* ΒΑΣΗ */
.elite2 h2,
.elite2 strong,
.elite2 a {
  position: relative;
  display: inline-block;
  overflow: visible;
}

/* ΛΕΠΤΟ, ΠΕΡΑΣΜΑ ΠΑΝΩ ΑΠΟ ΤΑ ΓΡΑΜΜΑΤΑ */
.elite2 h2::before,
.elite2 strong::before,
.elite2 a::before {
  content: "";
  position: absolute;

  /* ΣΤΕΝΟΤΕΡΟ ΣΕ ΥΨΟΣ */
  top: 20%;
  height: 60%;

  /* ιδανική γραμμή πάνω στο κέντρο των χαρακτήρων */
  width: 45%;

  /* ξεκινάει μέσα στη λέξη */
  left: -20%;

  background: linear-gradient(
    90deg,
    rgba(255,255,255,0)    0%,
    rgba(255,255,255,0.75) 40%,
    rgba(255,255,255,1)    50%,
    rgba(255,255,255,0.75) 60%,
    rgba(255,255,255,0)   100%
  );

  transform: translateX(-20%);
  animation: elite2LetterShine 3.4s linear infinite;
  pointer-events: none;
}
