html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body {
    flex: 1;
    margin: 0;
    padding: 0 20px; /* Add horizontal padding */
    box-sizing: border-box;
}

.main-nav {
    margin: 0;
    padding: 0;
    background: #000;
}

.nav-toggle {
    display: none; /* Hide by default, show on mobile */
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    transition: none;
    max-width: 100%;
    padding: 0 20px; /* Add consistent horizontal padding */
    margin: 0 auto; /* Center content horizontally */
}

.main-nav li {
    margin: 8px 12px;
    padding: 0;
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #111;
    min-width: 180px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    z-index: 100;
    padding: 0;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    font-weight: 400;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
    background: #222;
    color: #ff4081;
    text-decoration: underline;
}

/* Removed hover functionality for dropdown */
.dropdown:hover > .dropdown-menu {
    display: none;
}

.main-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    word-break: keep-all;
    transition: color 0.2s;
    font-family: 'Share Tech Mono', monospace;
    position: relative;
    overflow: hidden;
    animation: glitch 1.5s infinite linear alternate-reverse;

}

.glitch-text {
    /* not used, but restored for completeness */
}

@keyframes glitch {
    0% {
        text-shadow: 2px 0 #ff4081, -2px 0 #00fff9;
        transform: skew(0deg);
    }
    20% {
        text-shadow: -2px 0 #ff4081, 2px 0 #00fff9;
        transform: skew(-2deg);
    }
    40% {
        text-shadow: 2px 2px #ff4081, -2px -2px #00fff9;
        transform: skew(2deg);
    }
    60% {
        text-shadow: -2px -2px #ff4081, 2px 2px #00fff9;
        transform: skew(-1deg);
    }
    80% {
        text-shadow: 2px 0 #ff4081, -2px 0 #00fff9;
        transform: skew(1deg);
    }
    100% {
        text-shadow: none;
        transform: skew(0deg);
    }
}


.main-nav a:hover {
    color: #ff4081;
    text-decoration: underline;
}
body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
}

.banner {
    width: 100%;
    max-width: 100vw;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 100%;
    padding: 0 20px; /* Add consistent horizontal padding */
    margin: 0 auto; /* Center content horizontally */
}

@media (max-width: 900px) {
    /* Allow hover functionality for larger screens */
    .dropdown:hover > .dropdown-menu {
        display: block;
    }
    /* Ensure dropdown functionality is handled by JS for smaller screens */
    .main-nav a {
        font-size: 16px;
    }
    .banner {
        height: 120px;
    }
}

@media (max-width: 600px) {
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
    }
    .main-nav li {
        margin: 6px 0;
    }
    .main-nav a {
        font-size: 14px;
    }
    .banner {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .main-nav ul {
        display: none;
        flex-direction: column;
        background: #000;
        padding: 10px;
    }

    .main-nav.active ul {
        display: flex;
    }

    .nav-toggle {
        display: block;
        cursor: pointer;
        color: #fff;
        font-size: 20px;
        padding: 10px;
        text-align: center;
        background: #111;
    }
}


.banner-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
}


.glitch-text {
    /* fully removed */
}

footer {
    background: #000;
    padding: 20px 0;
    text-align: center;
    margin-top: auto;
    width: 100%;
}

.footer-extras ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Add spacing between items */
}

.footer-extras a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Share Tech Mono', monospace;
    position: relative;
    overflow: hidden;
    animation: glitch 1.5s infinite linear alternate-reverse;
    transition: color 0.2s;
}

.coming-soon {
    position: relative;
    margin: auto;
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    font-family: 'Share Tech Mono', monospace;
    animation: glitch 1.5s infinite linear alternate-reverse;
    text-align: center;
    z-index: 1;
    padding: 20px;
}

.contact-section {
  position: relative;
  min-width: 320px;
  max-width: 600px;
  width: 90%;
  margin: 50px auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
}

.glitch-contact {
  font-family: 'Share Tech Mono', monospace;
  font-weight: bold;
  color: #fff;
  animation: glitch 1.5s infinite linear alternate-reverse;
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 0.5em;
  word-break: break-word;
}

.contact-section h2.glitch-contact {
  font-size: 2.2rem;
}

.contact-section h3.glitch-contact {
  font-size: 1.5rem;
}

.contact-socials .glitch-contact {
  font-size: 1.1rem;
}
