/*!*******************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./app/obs/page.module.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************/
@keyframes page_marquee__Q5Ejh {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

@keyframes page_rotate__DI8i4 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.page_marqueeText__xAxgU {
  animation: page_marquee__Q5Ejh 40s linear infinite;
  white-space: nowrap;
  display: inline-block;
}

.page_rotateLogo__Rj91G {
  animation: page_rotate__DI8i4 20s linear infinite;
}

.page_watermarkContainer__232xY {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: -1;
}

.page_watermarkLogo__Xu8iL {
  width: 30%;
  height: auto;
  opacity: 100;
  object-fit: contain;
  transform: scale(1.5);
}
/*!************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./app/components/EventAnimation.module.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************************/
/* Container covering the area */
.EventAnimation_container__dH1eY {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 50;
    pointer-events: none;
}

/* Impact Flash */
.EventAnimation_flash__076Py {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Use primary color for flash tint */
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, var(--primary-color-transparent, rgba(255, 255, 255, 0)) 70%);
    opacity: 0;
    animation: EventAnimation_flashAnim__o0Q1s 0.3s ease-out forwards;
}

@keyframes EventAnimation_flashAnim__o0Q1s {
    0% {
        opacity: 1;
        transform: scale(0.8);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

/* Main Text Wrapper */
.EventAnimation_textWrapper__My0X2 {
    position: relative;
    z-index: 10;
    animation: EventAnimation_zoomInShake__aVj96 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* 3D Text Style */
.EventAnimation_mainText__QB6Wt {
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary-color);
    text-transform: uppercase;
    line-height: 1;
    transform: skew(-10deg);
    text-shadow:
        1px 1px 0px var(--shadow-color),
        2px 2px 0px var(--shadow-color),
        3px 3px 0px var(--shadow-color),
        4px 4px 0px var(--shadow-color),
        5px 5px 0px var(--shadow-color),
        6px 6px 0px var(--shadow-dark-color, #000),
        0px 0px 20px var(--glow-color, rgba(255, 255, 255, 0.5)),
        0px 0px 40px var(--glow-accent-color, rgba(0, 0, 0, 0.3));
    background: linear-gradient(180deg, var(--gradient-start) 0%, var(--primary-color) 40%, var(--gradient-end) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.5));
}

/* Metallic Stroke Overlay */
.EventAnimation_mainText__QB6Wt::after {
    /* Content is handled by standard text rendering, this is pseudo for effect.. actually React handles content */
    /* Wait, css pseudo content needs to match. We can use attr() or just duplicate in React if needed. 
       For now, let's use a class that expects data-text attribute */
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-text-stroke: 2px #ffffff;
    -webkit-text-fill-color: transparent;
    opacity: 0.5;
}

@keyframes EventAnimation_zoomInShake__aVj96 {
    0% {
        transform: scale(0) rotate(-10deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.2) rotate(5deg);
        opacity: 1;
    }

    65% {
        transform: scale(0.9) rotate(-3deg);
    }

    75% {
        transform: scale(1.05) rotate(2deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Particles */
.EventAnimation_particleSystem__yfmEB {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.EventAnimation_particle__2TRZr {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
}

/* Fire/Spark Sprites */
.EventAnimation_spark__rUeUu {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, var(--spark-color, #00ffff), transparent);
    transform-origin: center;
    opacity: 0;
    animation: EventAnimation_sparkShoot__QfeUC 0.4s ease-out forwards;
}

@keyframes EventAnimation_sparkShoot__QfeUC {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(var(--r)) scaleY(1) scaleX(0.1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(var(--r)) scaleY(0) scaleX(2.5);
    }
}

/* Motion Logic same as before */
@keyframes EventAnimation_particleFly1__CGzxM {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-100px, -100px) scale(0);
    }
}

@keyframes EventAnimation_particleFly2__ckaUv {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(100px, -80px) scale(0);
    }
}

@keyframes EventAnimation_particleFly3__T79y9 {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50px, 120px) scale(0);
    }
}

@keyframes EventAnimation_particleFly4__RNQSX {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(80px, 90px) scale(0);
    }
}

.EventAnimation_p1__Kf_8m {
    left: 45%;
    top: 45%;
    animation: EventAnimation_particleFly1__CGzxM 0.8s ease-out 0.2s forwards;
    background: var(--secondary-color);
}

.EventAnimation_p2__lRkZw {
    left: 55%;
    top: 45%;
    animation: EventAnimation_particleFly2__ckaUv 0.7s ease-out 0.25s forwards;
    background: var(--primary-color);
}

.EventAnimation_p3__pH6H9 {
    left: 48%;
    top: 55%;
    animation: EventAnimation_particleFly3__T79y9 0.9s ease-out 0.3s forwards;
    background: #ffffff;
}

.EventAnimation_p4__p4BAN {
    left: 52%;
    top: 52%;
    animation: EventAnimation_particleFly4__RNQSX 0.6s ease-out 0.2s forwards;
    background: var(--spark-color, #00ffff);
}

/* Smooth Fade Out of entire container */
.EventAnimation_fadeOut__IbgVU {
    animation: EventAnimation_fadeOutAnim__wjYpr 0.5s ease-out 2.5s forwards;
}

@keyframes EventAnimation_fadeOutAnim__wjYpr {
    to {
        opacity: 0;
    }
}
/*!**************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./app/obs/transparent.module.css ***!
  \**************************************************************************************************************************************************************************************************************************************************************************/
/* Force transparency with high specificity */
.transparent_forceTransparent__zIobT {
    background-color: transparent !important;
    background-image: none !important;
}
