:root {
    --bg-blue: #0a192f;
    --card-blue: #112240;
    --text-white: #e6f1ff;
    --accent-red: #ff4d4d;
    --accent-hover: #cc3d3d;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-blue);
    color: var(--text-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
header {
    padding: 1rem 2rem;
    display: flex;
    justify-content: center; /* Centers logo and nav next to each other */
    align-items: center; /* Vertically centers everything */
    gap: 1rem; /* Adds small gap between logo and nav */
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
    max-width: 80px; /* Slightly smaller to fit the row better */
    height: auto;
}

nav {
    display: flex;
    gap: 20px; /* Consistent spacing between links */
}

a {
    color: var(--accent-red);
    text-decoration: underline;
}

nav a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    margin: 0; /* Removing the old margins */
    border-bottom: 2px solid var(--accent-red);
}

/* Mobile Responsive: Stack them back up on small screens */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    nav {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Fix image width on mobile without changing desktop layout */
    #my-story img {
        max-width: 100% !important;
        height: auto;
    }
}

nav a:hover {
    color: var(--accent-red);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Force a 2-column layout on the shop page (wraps to new line for additional items) */
.shop-grid {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }
}

.card {
    background: var(--card-blue);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.btn {
    display: inline-block;
    background: var(--accent-red);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
    font-weight: bold;
}

.btn:hover {
    background