
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #007bff; 
  --secondary-color: #ff9900; 
  --accent-color: #ffffff;
  --dark-bg: #e6f2ff; 
  --glass-bg: rgba(255, 255, 255, 0.85); 
  --glass-border: rgba(255, 255, 255, 0.5);
  --text-main: #333333;
  --text-white: #ffffff;
}


html,
body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: black;
}

#signage {
  width: 100vh; 
  height: 100vw;
  transform: rotate(90deg);
  transform-origin: top left;

  position: absolute;
  top: 0;
  left: 100vw;

  /* Previous Body Styles applied to Wrapper */
  font-family: "Poppins", sans-serif;
  background-color: var(--dark-bg);
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: var(--text-main);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Background Animation handled inside signage */
.bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.3),
    transparent 70%
  );
  animation: pulseBg 10s infinite alternate;
}

@keyframes pulseBg {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Header - Compact Horizontal - FORCE ROW */
.glass-header {
    height: auto;
    min-height: 15vh;
    display: flex;
    flex-direction: row !important; 
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px; 
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 5px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 20;
    flex-wrap: nowrap !important; 
    gap: 15px; 
}


.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 0;

}

.logo-icon img {
    height: 60px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.logo-text h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.6rem); 
    color: var(--primary-color);
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.1;

    word-break: break-word;
}

.logo-text p {
    font-size: 0.8rem;
    color: #555;
    font-weight: 600;
}


.header-right {
    display: flex;
    align-items: center;
    flex-shrink: 0; 
}

.clock-container {
    text-align: right;
    background: transparent;
    padding: 5px;
    white-space: nowrap; 
}

.time {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    line-height: 1;
    font-weight: 700;
}

.date {
    font-size: 1rem;
    color: #444;
    font-weight: 500;
    margin-top: 5px;
}


.main-content {
    flex: 1;
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.slider-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}


.slider-track {
  display: flex;
  width: 100%; 
  height: 100%;
  transition: transform 1s ease-in-out;
}

.slide {
  min-width: 100%; 
  height: 100%;
  background-size: cover; 
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.slide::after {
 
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.slide-content {
  position: absolute;
  bottom: 50px;
  left: 40px;
  z-index: 5;
  text-align: left;
  color: #fff;
  opacity: 0; 
  transform: translateY(20px);
  transition: all 0.5s ease 0.5s;
}


.slide-content {
  opacity: 1;
  transform: translateY(0);
}

.slide-content h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.2rem;
  color: var(--secondary-color);
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
  font-size: 1.2rem;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}


.glass-footer {
    height: 12vh; 
    min-height: 100px;
    background: #004d99;
    border-top: 5px solid var(--secondary-color);
    display: flex;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 30;
    overflow: hidden;
}

.running-text-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.running-text {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 40s linear infinite;
}

.running-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem; /* Big readable text */
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}


@media (max-width: 768px) {
    .glass-header {
        flex-direction: row !important;
        height: auto;
        padding: 10px;
        gap: 10px;
        text-align: left;
    }
    .logo-container {
        flex-direction: row;
    }
    .logo-text h1 {
        font-size: 1.4rem;
    }
    .time {
        font-size: 1.8rem;
    }
}
```
