:root {
    /* Color Palette - Dark Pantone Theme */
    --bg-body: #000000;
    --bg-surface: #111111;
    --text-main: #ffffff;
    --text-muted: #aaaaaa;
    --accent-color: #ffffff;
    /* Keeping consistent white accent for high contrast */
    --link-hover: #cccccc;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 100px;
    --radius-md: 0.5rem;

    /* Typography */
    --font-heading: 'Roboto', 'Arial Black', sans-serif;
    --font-body: 'Roboto', 'Arial', sans-serif;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.site-header {
    height: var(--header-height);
    background-color: var(--bg-body);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-img {
    height: 50px;
    /* Adjust based on logo aspect ratio */
    width: auto;
    object-fit: contain;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--text-main);
    text-transform: uppercase;
}

.nav-link:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    padding: 4rem 0 6rem;
    text-align: center;
    background-color: var(--bg-body);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.brand-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: left;
}

.brand-description p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* Icons Section */
.store-links,
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.store-links a,
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    color: #ffffff;
    background: transparent;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-links a:hover,
.social-links a:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Footer */
.site-footer {
    padding: 3rem 0;
    background-color: var(--bg-body);
    border-top: 1px solid #222;
    margin-top: auto;
    text-align: center;
}

.logotxt {
    display: inline;
}

.footer-brand .logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    display: inline;
    margin-bottom: 0.5rem;
    padding: 0px;
    margin-right: 0px;
}

.footer-brand .logo-text2 {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 1.5rem;
    display: inline;
    margin-bottom: 0.5rem;
    padding: 0px;
    margin-left: 0px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .logo-img {
        height: 50px;
    }

    .store-links,
    .social-links {
        gap: 1.5rem;
    }

    .store-links a,
    .social-links a {
        font-size: 1.5rem;
    }
}