<!--CustomCSS.css-->
@charset "UTF-8";


:root {
  scroll-behavior: auto;
}

html {
    scroll-behavior: smooth;
    direction: ltr;
    width: 100%;
    width: -webkit-fill-available;
    /*overflow-x: hidden;*/
    box-shadow: none !important;
    box-sizing: border-box;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden !important;
  /* overflow-y: auto; */
  height: auto;
  margin: 0px;
  background: black; 
  font-family: 'MyFont', sans-serif;
  color: #000000d9;

}

a.screen-reader-text.skip-link {
    display: none;
    visibility: hidden;
}

#page {
    margin-top: -100px;
}

#gdl-publish-guide {
    display: none;
    visibility: hidden;

}

#trustedsite-tm-image {
    display: none;
    visibility: hidden;

}

h1 {
  margin: 0.8em 0 0.8em;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  font-family: 'MyFont', sans-serif;
}

h2 {
  margin: 0.4em 0 0.4em;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  font-family: 'MyFont', sans-serif;
}

h3, h4, h5, h6 {
  margin: 0.4em 0 0.4em;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  font-family: 'MyFont', sans-serif;
}

h1 { font-size: clamp(2rem, 5vw, 2.75rem); }  /* ~32px to 44px */
h2 { font-size: clamp(1.35rem, 3vw, 1.8rem); } /* ~28px to 32px */
h3 { font-size: clamp(1.25rem, 2.2vw, 1.4rem) }  /* ~24px to 32px */
h4 { font-size: clamp(1.25rem, 2.2vw, 1.4rem); } /* ~20px to 28px */
h5 { font-size: clamp(1.125rem, 2.2vw, 1.3rem); } /* ~18px to 24px */
h6 { font-size: clamp(1rem, 2vw, 1.25rem); } /* ~16px to 20px */

p {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem); /* ~15px to 17px */
  line-height: 1.6;
  font-family: 'MyFont', sans-serif;
  color: #000000d9;
}

.MYPageContent { 
  background: black; 
}
*, *::before, *::after {
   /* box-sizing: border-box; */
}
.site-content {
    display: block !important;
    height: 100vh;
    position: relative;
    z-index: 0;
}

.ArticleTag {
	overflow-x: hidden;
    box-sizing: border-box;
   
}

.MySections {
    /*overflow-x: hidden;*/
}
a { color: #000000d9; }
a:hover, a:active, a:focus { color: white; }
img { height: auto; }

/* Underline Link 1 */
.LinksUnderlineEffect1 {
    display: inline-block;
    position: relative;
    text-decoration: none;
}

.LinksUnderlineEffect1::after {
    transform-origin: bottom left;
}

.LinksUnderlineEffect1::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to right, #0cadb6 0%, #873f93 50%);
    transition: transform 0.25s ease-out;
    z-index: 1;
}

.LinksUnderlineEffect1:hover::after {
    transform: scaleX(1);
}

.LinksUnderlineEffect1:hover::after {
    transform-origin: bottom left;
}

/* Buttons used on Site */
 /* Button 1 */
        .KDRB1 {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 32px;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            color: #ffffff;
            background-color: transparent;
            border-radius: 3px;
            overflow: hidden;
            transition: all 0.3s ease;
            z-index: 1;
            border: 1px solid transparent;
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
        }
        
        .KDRB1 span {
            position: relative;
            z-index: 2;
        }
        
        /* Glowing Border Effect */
        .KDRB1::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 3px;
            padding: 1px;
            background: linear-gradient(90deg, #1b878d, #873f93, #1b878d);
            background-size: 200% 100%;
            -webkit-mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            animation: borderFlow 3s linear infinite;
            z-index: -1;
        }
        
        /* Subtle Glow Animation */
        .KDRB1::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 3px;
            background: linear-gradient(90deg, #0cadb6, #0cadb6, #873f93);
            background-size: 200% 100%;
            opacity: 0;
            filter: blur(8px);
            animation: borderFlow 3s linear infinite, glowPulse 2s ease-in-out infinite;
            z-index: -2;
            transition: opacity 0.3s ease;
        }
        
        /* Hover Effects */
        .KDRB1:hover::after {
            opacity: 0.4;
        }
        
        .KDRB1:hover {
            color: #ffffff;
        }
        
        .KDRB1:active {
            transform: scale(0.98);
        }
        
        /* Animations */
        @keyframes borderFlow {
            0% {
                background-position: 200% 0;
            }
            100% {
                background-position: -200% 0;
            }
        }
        
        @keyframes glowPulse {
            0%, 100% {
                opacity: 0.2;
            }
            50% {
                opacity: 0.4;
            }
        }
        
/* Button 2 */        
        
.KDRB2 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #ffffff;
    background-color: transparent;
    border-radius: 3px;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.KDRB2 span {
    position: relative;
    z-index: 2;
}

/* Solid border all around */
.KDRB2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1;
}

/* Bottom Glow Overlay Effect */
.KDRB2::after {
    content: '';
    position: absolute;
    bottom: 1px; /* Align with border */
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(12, 173, 182, 0) 0%, 
        rgba(12, 173, 182, 0.3) 20%,
        rgba(12, 173, 182, 0.7) 50%,
        rgba(135, 63, 147, 0.7) 50%,
        rgba(135, 63, 147, 0.3) 80%,
        rgba(135, 63, 147, 0) 100%);
    background-size: 200% 100%;
    animation: bottomGlowMove 4s linear infinite;
    border-radius: 0 0 3px 3px;
    z-index: 2;
}

/* Hover Effects */
.KDRB2:hover::after {
    height: 2px;
    bottom: -2px;
    background: linear-gradient(90deg, 
        rgba(12, 173, 182, 0) 0%, 
        rgba(12, 173, 182, 0.5) 20%,
        rgba(12, 173, 182, 0.9) 50%,
        rgba(135, 63, 147, 0.9) 50%,
        rgba(135, 63, 147, 0.5) 80%,
        rgba(135, 63, 147, 0) 100%);
    filter: drop-shadow(0 0 3px rgba(12, 173, 182, 0.3));
}

.KDRB2:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.KDRB2:active {
    transform: translateY(1px);
}

/* Animations */
@keyframes bottomGlowMove {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Button Collision*/
/*
<div class="CollisionBTN1">
  <a class="CollisionBTNA1" href="#">Collision</a>
</div>
*/
.CollisionBTN1 *:before, *:after {
  z-index: -1;
}

.CollisionBTN1 {
  width: max-content;
  height: 60px;
  border-radius: 2px;
}
.CollisionBTNA1{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 100%;
    /* border: 2px solid #d662e7; */
    color: #ffffff;
    align-content: center;
    text-align: center;
    border-radius: 3px;
    background: radial-gradient(50% 70% at 50% 90%, #3b78c3, transparent 70%), #000000d6;
    text-decoration: none;
    z-index: 1;
    width: max-content;
    padding: 5px 15px 0px 15px;
}

@keyframes criss-cross-left1 {
  0% { left: -20px; width:20px; height:20px; }
  50% { left: 50%; width:20px; height:20px; }
  100% { left: 50%; width:250px; height:250px; }
}
@keyframes criss-cross-right1 {
  0% { right: -20px; width:20px; height:20px; }
  50% { right: 50%; width:20px; height:20px; }
  100% { right: 50%; width:250px; height:250px; }
}

.CollisionBTNA1:before,
.CollisionBTNA1:after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background-color: #3498db;
  border-radius: 50%;
}

.CollisionBTNA1:before {
  left: -20px;
  transform: translate(-50%, -50%);
  background-color: #12D6DF;
}

.CollisionBTNA1:after {
  right: -20px;
  transform: translate(50%, -50%);
  background-color: #7b3985;
}

.CollisionBTNA1:hover {
  color: white;
}

.CollisionBTNA1:hover:before {
  animation: criss-cross-left1 0.8s both alternate;
}

.CollisionBTNA1:hover:after {
  animation: criss-cross-right1 0.8s both alternate;
}

/* Glowing Dots */

/* Glowing Dot 1 */
.GlowingD1 {
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
    position: relative;
    background: #873f93;
    box-shadow: 0 0 10px #0cadb6, 0 0 20px #0cadb6, 0 0 30px #0cadb6;
    animation: neonPulse 1.5s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        box-shadow: 0 0 10px #0cadb6, 0 0 20px #0cadb6, 0 0 30px #0cadb6;
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 15px #0cadb6, 0 0 30px #0cadb6, 0 0 45px #0cadb6, 0 0 60px rgba(12, 173, 182, 0.5);
        transform: scale(1.05);
    }
}

/* Glowing Dot 2 */
.GlowingD2 {
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
    position: relative;
    background: #873f93a8;
    position: relative;
}

.GlowingD2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgb(12 173 182 / 86%);
    animation: wavePulse 2s linear infinite;
}


.GlowingD2::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgb(12 173 182 / 86%);
    animation: wavePulse 2s linear infinite;
}

.GlowingD2::after {
    animation-delay: 1s;
}

@keyframes wavePulse {
    0% {
        width: 10px;
        height: 10px;
        opacity: 1;
    }
    100% {
        width: 30px;
        height: 30px;
        opacity: 0;
    }
}



/* Text Effect Gradient */

.KDGT1 {
background-image: linear-gradient(to top, #0cadb6 0%, #873f93 50%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}

.KDGT2 {
background-image: linear-gradient(to right, #0cadb6 0%, #873f93 50%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}

.KDGT3 {
background-image: radial-gradient(circle, #0cadb6 0%, #873f93 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}

/* Aura Background */

/* Aura Background1 */
.AuraBack1 {
  position: relative;
  background: #000;
  overflow: hidden;
  isolation: isolate;   /* prevents overlap from other sections */
  z-index: 0;
}

/* Aura light layers */
.AuraBack1::before,
.AuraBack1::after {
  content: "";
  position: absolute;
  width: 40vmax;
  height: 60vmax;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  z-index: -1;
  pointer-events: none;
  animation: AuraBack1Float 3s ease-in-out infinite;
}

/* Teal light */
.AuraBack1::before {
  background: #0cadb6;
  top: -25%;
  left: -20%;
  animation-delay: 0s;
}

/* Purple light */
.AuraBack1::after {
  background: #873f93;
  bottom: -30%;
  right: -20%;
  animation-delay: 3s;
}

/* Smooth ambient motion */
@keyframes AuraBack1Float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(12%, -10%) scale(1.15);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* Optional: reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .AuraBack1::before,
  .AuraBack1::after {
    animation: none;
  }
}

/* Aura Background 2 */
.AuraBack2 {
  position: relative;
  background:
    radial-gradient(
      circle at center,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.85) 45%,
      rgba(0, 0, 0, 1) 75%
    ),
    linear-gradient(
      to top,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.7) 60%,
      rgba(0, 0, 0, 0.5) 100%
    );
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
}

/* Aura light layers */
.AuraBack2::before,
.AuraBack2::after {
  content: "";
  position: absolute;
  width: 55vmax;
  height: 55vmax;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}

/* Bottom-left → top-right teal */
.AuraBack2::before {
  background: #0cadb65c;
  bottom: -30%;
  left: -30%;
  animation: auraDiagOne 6s ease-in-out infinite;
}

/* Top-right → bottom-left purple */
.AuraBack2::after {
  background: #873f936e;
  top: -35%;
  right: -30%;
  animation: auraDiagTwo 6s ease-in-out infinite;
}

/* Diagonal movement paths */
@keyframes auraDiagOne {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(35%, -35%) scale(1.2);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes auraDiagTwo {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-35%, 35%) scale(1.2);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .AuraBack2::before,
  .AuraBack2::after {
    animation: none;
  }
}

/* Aura Background 3 */
/* =========================
   AURA BACKGROUND – VERSION 3
   Mostly black + left ↔ right motion
   ========================= */

.AuraBack3 {
  position: relative;
  background: #000;
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
}

/* Shared orb styles */
.AuraBack3::before,
.AuraBack3::after {
  content: "";
  position: absolute;
  width: 50vmax;
  height: 50vmax;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  z-index: -1;
  pointer-events: none;
}

/* Teal orb: left → right */
.AuraBack3::before {
  background: #0cadb6;
  top: 50%;
  left: -35%;
  transform: translateY(-50%);
  animation: auraLR 6s ease-in-out infinite;
}

/* Purple orb: right → left */
.AuraBack3::after {
  background: #873f93;
  top: 50%;
  right: -35%;
  transform: translateY(-50%);
  animation: auraRL 6s ease-in-out infinite;
}

/* Horizontal motion paths */
@keyframes auraLR {
  0% {
    transform: translate(-0%, -50%) scale(1);
  }
  50% {
    transform: translate(140%, -50%) scale(1.15);
  }
  100% {
    transform: translate(-0%, -50%) scale(1);
  }
}

@keyframes auraRL {
  0% {
    transform: translate(0%, -50%) scale(1);
  }
  50% {
    transform: translate(-140%, -50%) scale(1.15);
  }
  100% {
    transform: translate(0%, -50%) scale(1);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .AuraBack3::before,
  .AuraBack3::after {
    animation: none;
  }
}

/* Aura Background 4 */
.AuraBack4 {
    position: relative;
    background: radial-gradient(circle at center, rgb(255 253 253 / 60%) 0%, rgb(237 233 233 / 85%) 45%, rgb(154 191 195) 75%), linear-gradient(to top, rgb(175 172 172) 0%, rgb(140 180 189 / 70%) 60%, rgb(130 45 137) 100%);
    overflow: hidden;
    isolation: isolate;
    z-index: 0;
}

/* Aura light layers */
.AuraBack4::before, .AuraBack4::after {
    content: "";
    position: absolute;
    width: 25vmax;
    height: 25vmax;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

/* Bottom-left → top-right teal */
.AuraBack4::before {
    background: #0cadb65c;
    bottom: -30%;
    left: -0%;
    animation: auraDiagOne 6s ease-in-out infinite;
}

/* Top-right → bottom-left purple */
.AuraBack4::after {
    background: #873f936e;
    top: -35%;
    right: -0%;
    animation: auraDiagTwo 6s ease-in-out infinite;
}

/* Diagonal movement paths */
@keyframes auraDiagOne {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(35%, -35%) scale(1.2);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes auraDiagTwo {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-35%, 35%) scale(1.2);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .AuraBack4::before,
  .AuraBack4::after {
    animation: none;
  }
}

/* Aura Background 5 */
.AuraBack5 {
    position: relative;
    background: #e7e7e7;
    overflow: hidden;
    isolation: isolate;
    z-index: 0;
}

.AuraBack5::before, .AuraBack5::after {
    content: "";
    position: absolute;
    width: 40vmax;
    height: 60vmax;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.45;
    z-index: -1;
    pointer-events: none;
    animation: AuraBack5Float 3s ease-in-out infinite;
}

.AuraBack5::before {
    background: #0accd7;
    top: -30%;
    left: -20%;
    animation-delay: 0s;
}

.AuraBack5::after {
    background: #873f93;
    bottom: -30%;
    right: -20%;
    animation-delay: 3s;
}

@keyframes AuraBack5Float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20%, -10%) scale(1.15);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}