/* -------------------------------
   1. Base Styles
---------------------------------- */
body {
    margin: 0;
    padding: 0;
    background-color: #2c2c2c;
    font-family: 'Space Mono', monospace;
    color: #ffffff;
}

p {
  margin: 0 0 3.0em 0;
}

html, body {
  height: 100%;
  margin: 0;
}

#page-wrapper {
  min-height: 100vh; /* Full viewport height */
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}





.intro-text a,
.intro-text a:visited,
.intro-text a:hover,
.intro-text a:active {
    color: white;
    text-decoration: underline; /* optional */
}

.intro-text {
    margin-top: 40px; /* add space below the banner */
    font-family: 'Space Mono', monospace;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0 15px;
     margin-bottom: 40px;
}

.about-text p {
  margin-bottom: 1.5em; /* adds space after each paragraph */
}

.videos-text a,
.videos-text a:visited,
.videos-text a:hover,
.videos-text a:active {
    color: white;
    text-decoration: underline; /* optional */
}


/* Footer text styling */
footer {
  text-align: center;       
  font-size: 12px;          
  color: white;             
  padding: 20px;            
  background-color:  #2c2c2c;
  text-align: center;
  padding: 20px 0;
  font-size: 12px;
  z-index: 1000;
}



footer, 
.footer, 
#footer {
  text-align: center;
}

/* Footer link styles */
footer a,
footer a:visited {
  color: white;             /* Make footer links white */
  text-decoration: none;    /* Remove underline, optional */
}

footer a:hover,
footer a:focus {
  color: #ddd;              /* Slightly lighter on hover/focus */
  text-decoration: underline; /* Optional underline on hover */
}

footer.visible {
  bottom: 0; /* slide footer up into view */
}


/* -------------------------------
   2. Typography
---------------------------------- */
.electrified-text {
    font-family: 'Press Start 2P', cursive;
    color: yellow;
    text-decoration: none;
    font-size: 24px;
    text-align: center;
    margin: 0;
    padding: 20px 10px;
    text-shadow:
        0 0 5px #39ff14,
        0 0 10px #39ff14,
        0 0 20px #39ff14,
        0 0 30px #39ff14,
        0 0 40px #39ff14,
        0 0 55px #39ff14,
        0 0 75px #39ff14;
    animation: flicker 2s infinite alternate;
}

.electrified-text a {
  color: yellow;
  text-decoration: none;
}

@keyframes flicker {
    0%, 100% {
        opacity: 1;
        transform: translate(0, 0);
    }
    50% {
        opacity: 0.9;
        transform: translate(-1px, 1px);
        text-shadow:
            0 0 6px #39ff14,
            0 0 12px #39ff14,
            0 0 25px #39ff14,
            0 0 35px #39ff14,
            0 0 50px #39ff14,
            0 0 60px #39ff14,
            0 0 85px #39ff14;
    }
}


/* -------------------------------
   3. Header & Banner
---------------------------------- */
header {
    position: relative;
    text-align: center;
    padding-top: 60px;
    background-color: #2c2c2c;
}

.header-top {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2c2c2c;
    padding: 15px 20px;
    flex-wrap: nowrap;
    z-index: 1000;
}

.header-top .responsive-banner {
    max-height: 80px;
    height: auto;
    width: auto;
    max-width: 100%;
    flex-shrink: 1;
}

.banner {
    text-align: center;
    padding: 20px;
}

.responsive-banner {
    max-height: 80px;
    height: auto;
    width: auto;
    max-width: 100%;
    max-width: calc(100% - 60px);
    flex-shrink: 1;
    z-index: 2000;
    position: relative;
}


/* -------------------------------
   4. Hamburger Menu
---------------------------------- */
.hamburger-container {
    position: fixed;
    top: 15px;
    right: 15px;
    text-align: center;
    z-index: 2000;
}

.hamburger-icon {
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2001;
}

.hamburger-icon.active {
    transform: rotate(45deg);
}

.hamburger {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: visible;
    transform-origin: center;
    transition: transform 0.3s ease;
}

.hamburger span {
    display: block;
    height: 4px;
    background-color: yellow;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.hamburger.active {
    transform: rotate(45deg);
}

.menu-label {
    color: yellow;
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    margin-top: 5px;
}


/* -------------------------------
   5. Side Menu
---------------------------------- */
.side-menu {
    position: fixed;
    top: 0;
    right: -180px;
    height: 100vh;
    width: 180px;
    background-color: #000000;
    z-index: 1300;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
    background-color: rgba(0, 0, 0, 0.9);
}

.side-menu.open {
    right: 0;
}

.side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    font-family: 'Press Start 2P', cursive;
}

.side-menu ul li {
    margin: 20px 0;
}

.side-menu ul li a {
    color: yellow;
    text-decoration: none;
    font-size: 12px;
    word-spacing: 2px;
}

.menu-logo {
    max-width: 150px;
    height: auto;
    display: block;
     margin: 0 auto;
}





/*BLOG**************************/



.blog-index ul a {
  color: white;
  text-align: center;
  /**  text-decoration: none;
}


