@font-face {
    font-family: 'Belanosima';
    src: url('/assets/fonts/Belanosima-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Belanosima';
    src: url('/assets/fonts/Belanosima-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Belanosima';
    src: url('/assets/fonts/Belanosima-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    color: #fff;
    background-color: #000;
}

.container {
    background-color: rgba(20, 24, 33, 0.8);
    border: 1px solid rgba(0, 242, 255, 0.15);
    padding: 48px;
    border-radius: 10px;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.brand img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.brand span {
    font-family: 'Belanosima', sans-serif;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 2px;
    color: #fff;
}

h1 {
    font-family: 'Belanosima', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
    border-bottom: 2px solid rgba(0, 242, 255, 1);
    padding-bottom: 14px;
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.35);
}

h2 {
    font-family: 'Belanosima', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(0, 242, 255, 1);
    margin-top: 34px;
    font-size: 18px;
}

p,
li {
    color: rgba(255, 255, 255, 0.85);
}

a {
    color: rgba(0, 242, 255, 1);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.nav {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav a {
    margin: 0 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav.nav-footer {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    padding-top: 20px;
    padding-bottom: 0;
}

.info-block {
    background-color: rgba(0, 242, 255, 0.05);
    padding: 16px 20px;
    border-left: 4px solid rgba(0, 242, 255, 1);
    border-radius: 0 6px 6px 0;
    margin: 20px 0;
}

.tagline {
    font-size: 1.15em;
    color: #fff;
}

.gallery {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 8px 4px 20px;
    margin: 30px 0;
    scroll-snap-type: x proximity;
}

.gallery img {
    height: 420px;
    width: auto;
    border-radius: 12px;
    border: 1px solid rgba(0, 242, 255, 0.2);
    box-shadow: 0 0 24px rgba(0, 242, 255, 0.12);
    scroll-snap-align: start;
    flex-shrink: 0;
    cursor: zoom-in;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 32px rgba(0, 242, 255, 0.25);
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    padding: 30px;
    cursor: zoom-out;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.3);
}

.gallery::-webkit-scrollbar {
    height: 6px;
}

.gallery::-webkit-scrollbar-thumb {
    background: rgba(0, 242, 255, 0.3);
    border-radius: 3px;
}

.store-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 36px 0;
}

.store-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 8px;
    border: 1px solid rgba(0, 242, 255, 0.3);
    background-color: rgba(0, 242, 255, 0.08);
    color: #fff;
    font-family: 'Belanosima', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.store-links a:hover {
    background-color: rgba(0, 242, 255, 0.16);
    border-color: rgba(0, 242, 255, 0.6);
    text-decoration: none;
}

.store-links svg {
    width: 22px;
    height: 22px;
    fill: rgba(0, 242, 255, 1);
    flex-shrink: 0;
}