* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #0e0e0e;
    color: #fff;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 65px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 999;
}

.logo {
    font-weight: bold;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.burger {
    font-size: 30px;
    cursor: pointer;
    user-select: none;
}

.nav-menu {
    position: fixed;
    right: -250px;
    top: 65px;
    width: 250px;
    height: 100vh;
    background: rgba(0,0,0,0.95);
    padding: 20px;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

/* HERO SECTION */
.hero {
    min-height: 55vh;
    padding: 80px 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden; /* prevents video spillover */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-links {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.hero-links a {
    padding: 10px 16px;
    background: #ffffff20;
    border: 1px solid #ffffff40;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.hero-links a:hover {
    background: #ffffff40;
}

/* LORE */
.lore {
    padding: 80px 20px;
    background: #111;
    text-align: center;
}

.lore h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.lore p {
    max-width: 700px;
    margin: 15px auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* BACK TO TOP BUTTON */
#backToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #ffffff25;
    color: white;
    border: 1px solid #ffffff50;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 20px;
    display: none;
    cursor: pointer;
    z-index: 999;
    backdrop-filter: blur(4px);
    transition: 0.3s;
}

#backToTop:hover {
    background: #ffffff40;
}

/* FOOTER */
.footer {
    padding: 40px 20px;
    text-align: center;
    background: #0a0a0a;
    color: #aaa;
}
.top-banner {
    width: 100%;
    overflow: hidden;
    height: 260px;               /* adjust this height as needed */
    position: relative;
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* LIVE FEED SECTION */
.feed {
    padding: 80px 20px;
    background: #0f0f0f;
    text-align: center;
}

.feed h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.feed p {
    opacity: 0.7;
    margin-bottom: 30px;
}

/* Make the feed centered and clean */
.feed .sk-ww-twitter-hashtag-feed {
    max-width: 900px;
    margin: 0 auto;
}
.hero {
    margin-top: -20px;  /* pulls hero slightly upward */
}