body {
    font-family: 'Bangers', cursive;
    background-color: #0d0d0d;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
    background-image: url('images/grunge.png');
    background-size: cover;
}

.navbar {
    background-color: #111;
    display: flex;
    justify-content: center;
    padding: 1rem;
    border-bottom: 3px solid #FF9900;
    gap: 1rem;
    flex-wrap: wrap;
}

.navbar a {
    color: #000;
    font-weight: bold;
    text-shadow: none;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    font-size: 1.4rem;
    background: linear-gradient(135deg, #FF9900, #FF3300);
    background-size: 200%;
    background-position: left;
    border-radius: 8px;
    box-shadow: 3px 3px #000;
    transition: 0.3s;
}

.navbar a:hover {
    background-position: right;
    box-shadow: 5px 5px #000;
    transform: translateY(-2px);
    color: #000;
}

header.hero {
    text-align: center;
    padding: 60px 20px;
}

header.hero h1 {
    font-size: 4rem;
    color: #FF9900;
    text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    display: inline-block;
    padding: 0.5rem 1rem;
}

header.hero p {
    font-size: 1.5rem;
    color: #b3b3b3;
}

header.hero a {
    background: linear-gradient(135deg, #FF9900, #FF3300);
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 1.6rem;
    font-weight: bold;
    box-shadow: 4px 4px #000;
    text-decoration: none;
    display: inline-block;
    color: #000;
}

header.hero a:hover {
    background-position: right;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px #000;
}

main {
    padding: 40px;
}

section {
    background-color: rgba(0, 0, 0, 0.6);
    margin: 40px auto;
    padding: 40px;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 2px 2px #000;
}

section h2 {
    color: #FF9900;
    text-shadow: 2px 2px #000;
    margin-bottom: 1rem;
}

.about p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #ccc;
    text-shadow: 1px 1px #000;
}

.quick-links {
    margin-top: 60px;
}

.links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.links-grid a {
    background: linear-gradient(135deg, #FF9900, #FF3300);
    padding: 1.5rem 3rem;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: bold;
    box-shadow: 3px 3px #000;
    text-decoration: none;
    color: #000;
    transition: 0.3s;
}

.links-grid a:hover {
    background-position: right;
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px #000;
}

.merch-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.merch-gallery img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    background-color: #000;
    border: 2px solid #FF9900;
    border-radius: 8px;
    box-shadow: 4px 4px #000;
    transition: 0.3s;
    padding: 10px;
}


.merch-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 6px 6px #000;
}

.big-button {
    background: linear-gradient(135deg, #FF9900, #FF3300);
    display: inline-block;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 1.6rem;
    font-weight: bold;
    box-shadow: 4px 4px #000;
    color: #000;
    text-decoration: none;
    margin-top: 20px;
    transition: 0.3s;
}

.big-button:hover {
    background-position: right;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px #000;
}

.discord-sidebar iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 8px;
}

.gallery-grid {
    background-color: rgba(0, 0, 0, 0.6);
    margin: 40px auto;
    padding: 40px;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 2px 2px #000;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.thumbnail-grid img {
    width: 100%;
    border: 2px solid #FF9900;
    border-radius: 8px;
    box-shadow: 4px 4px #000;
    transition: 0.3s;
    cursor: pointer;
}

.thumbnail-grid img:hover {
    transform: scale(1.05);
    box-shadow: 6px 6px #000;
}

#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border: 3px solid #FF9900;
    border-radius: 8px;
    box-shadow: 4px 4px #000;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #FF9900;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 40px 0;
}

.social-links a {
    color: #FF9900;
    font-size: 1.4rem;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
    box-shadow: 2px 2px #000;
    transition: 0.3s;
}

.social-links a:hover {
    background: #FF3300;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 4px 4px #000;
}

@media (max-width: 800px) {
    .navbar {
        flex-direction: column;
        gap: 10px;
    }
}

/* === Twitch embed (double size) === */
.twitch-embed {
  max-width: 1800px; /* doubled from 900px */
  margin: 24px auto 0;
}

.twitch-embed__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 4px 4px #000;
  border: 2px solid #FF9900;
  background: #000;
}

.twitch-embed__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.twitch-embed__fallback {
  margin-top: 10px;
  color: #b3b3b3;
  font-size: 0.95rem;
}

.twitch-embed__fallback a {
  color: #FF9900;
  text-decoration: none;
}
.twitch-embed__fallback a:hover {
  text-decoration: underline;
}