/* Modern Black & Grey Contrasting Color Scheme */
:root {
    --background-color: #111216;
    --section-gray-bg: #23242a;
    --text-color: #fff;
    --accent-color: #fff;
    --border-color: #2a2b2f;
    --nav-bg: rgba(20, 21, 25, 0.95);
    --nav-text: #fff;
    --nav-hover: #fff;
    --footer-bg: #18191d;
    --footer-text: #fff;
    --btn-bg: rgba(255,255,255,0.08);
    --btn-hover-bg: rgba(255,255,255,0.18);
    --btn-border: #fff;
}

body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    margin: 0;
    color: var(--text-color);
    background: linear-gradient(180deg, #18191d 0%, #111216 100%);
    min-height: 100vh;
    scroll-behavior: smooth;
}

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
header {
    background: var(--nav-bg);
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.18);
    border-radius: 0 0 18px 18px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-shadow: 0 2px 8px #0008;
    font-family: 'Geom', cursive;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: var(--nav-text);
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.3s, border-bottom 0.3s;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    border-radius: 8px;
}

nav a:hover, nav a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    background: var(--btn-bg);
}

/* Hero Section */
.hero {
    width: 100vw;
    min-height: 60vh;
    background: linear-gradient(120deg, #18191d 60%, #23242a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 32px 32px;
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-color);
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-shadow: 0 4px 24px #000a;
}
.hero-content p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    color: #fff;
    text-shadow: 0 2px 8px #0008;
}

/* Section Styling */
.section-padding {
    padding: 4rem 0;
    border-radius: 24px;
    background: transparent;
}

.section-gray {
    background: var(--section-gray-bg);
    border-radius: 24px;
    margin: 2rem 0;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.10);
}

h2 {
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--accent-color);
    letter-spacing: 1px;
}

p, ul {
    line-height: 1.7;
    font-size: 1.15rem;
}

ul {
    padding-left: 24px;
}

/* Gallery Section */
.gallery-section {
    width: 100vw;
    background: linear-gradient(90deg, #18191d 60%, #23242a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    border-radius: 24px;
}
.gallery-image {
    width: 100vw;
    max-height: 340px;
    object-fit: cover;
    display: block;
    filter: brightness(0.7) saturate(1.1) drop-shadow(0 4px 24px #000a);
    border-radius: 24px;
}

/* Button */
.btn {
    display: inline-block;
    background: var(--btn-bg);
    color: var(--accent-color);
    padding: 1rem 2.2rem;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s, color 0.3s, border 0.3s;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 2px 8px #0003;
    border: 2px solid var(--btn-border);
    backdrop-filter: blur(4px);
}

.btn:hover {
    background: var(--btn-hover-bg);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

/* Merch Page */
.merch-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto 2rem auto;
    max-width: 900px;
    border-radius: 24px;
    background: var(--section-gray-bg);
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.10);
}
.merch-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}
.merch-item {
    min-width: 300px;
    max-width: 320px;
    flex: 0 0 100%;
    margin: 2rem 1rem;
    background: var(--section-gray-bg);
    border-radius: 18px;
    box-shadow: 0 2px 8px #0002;
    text-align: center;
    border: 1px solid var(--border-color);
    padding: 2rem 1rem;
    transition: box-shadow 0.3s;
}
.merch-item img {
    max-width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--btn-bg);
    color: var(--accent-color);
    border: 2px solid var(--btn-border);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s, border 0.2s;
    backdrop-filter: blur(4px);
}
.carousel-btn:hover {
    background: var(--btn-hover-bg);
    border: 2px solid var(--accent-color);
}
.carousel-btn.prev {
    left: 10px;
}
.carousel-btn.next {
    right: 10px;
}
@media (max-width: 600px) {
    .merch-item {
        min-width: 220px;
        max-width: 240px;
        margin: 1rem 0.5rem;
        padding: 1rem 0.5rem;
    }
    .merch-carousel {
        max-width: 98vw;
    }
}

/* Videos Page */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-item {
    text-align: center;
    background: var(--section-gray-bg);
    border-radius: 18px;
    box-shadow: 0 2px 8px #0002;
    padding: 1.5rem 1rem;
}

.video-item iframe {
    width: 100%;
    height: 180px;
    border-radius: 12px;
}

.video-item h3 {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--accent-color);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    font-size: 1rem;
    color: var(--footer-text);
    background: var(--footer-bg);
    border-top: 2px solid var(--border-color);
    letter-spacing: 1px;
    border-radius: 18px 18px 0 0;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
    background: #23242a;
}
::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 8px;
}

/* Section Fade-in Animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.section-padding, .gallery-section {
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero-content h1 { font-size: 2.2rem; }
    h2 { font-size: 1.5rem; }
    .gallery-image { max-height: 180px; }
}
@media (max-width: 768px) {
    nav { flex-direction: column; gap: 1rem; }
    .section-padding { padding: 2rem 0; }
    h2 { font-size: 1.2rem; }
    .gallery-image { max-height: 120px; }
}