/* Mobile-specific styles */
@media screen and (max-width: 768px) {
    /* Mobile Navigation */
    .nav-container {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
    }

    .logo {
        color: var(--text-color);
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: bold;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg1);
        padding: 1rem;
        z-index: 1000;
        border-top: 2px solid var(--red);
    }

    .nav-links.responsive {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links a {
        color: var(--text-color);
        text-decoration: none;
        padding: 0.5rem;
        display: block;
        text-align: center;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background-color: var(--bg2);
        border-radius: 4px;
    }

    .hamburger {
        display: block;
        color: var(--text-color);
        font-size: 1.5rem;
        text-decoration: none;
    }

    /* Showcase Layout */
    .showcase-item {
        flex-direction: column-reverse;
        margin-bottom: 1rem;
    }

    .showcase-info {
        margin-left: 0;
        margin-bottom: 1rem;
        border-radius: 8px;
    }

    /* Preview section adjustments */
    .preview-section .showcase-item {
        margin: 0;
    }

    .preview-section .text-center {
        margin-top: 1rem;
    }

    /* Scrollable Image Gallery */
    .showcase-previews {
        display: flex;
        overflow-x: scroll;
        gap: 0.5rem;
        padding: 0.5rem 0 0.5rem 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--red) var(--bg1);
        margin: 0;
        width: 100%;
    }

    .showcase-previews .pixel-frame {
        flex: 0 0 200px;
        height: 150px;
        margin: 0;
    }

    .showcase-previews::-webkit-scrollbar {
        height: 6px;
        display: block;
    }

    .showcase-previews::-webkit-scrollbar-track {
        background: var(--bg1);
        border-radius: 3px;
    }

    .showcase-previews::-webkit-scrollbar-thumb {
        background: var(--red);
        border-radius: 3px;
    }

    /* Container for showcase images to ensure alignment */
    .showcase-images {
        width: 100%;
        padding: 0;
    }

    /* Other mobile adjustments */
    .about-section {
        grid-template-columns: 1fr;
    }

    .about-preview {
        flex-direction: column; /* Stack elements vertically */
        gap: 1rem;
        align-items: center; /* Center content horizontally */
    }

    .about-preview .pixel-frame {
        max-width: 250px; /* Limit image width */
        margin: 0 auto; /* Center the image */
    }

    /* Adjust button position on mobile */
    .about-preview .text-center {
        margin-top: 0rem; /* Reduce top margin */
    }

    .titles {
        flex-direction: column;
        gap: 1rem;
    }

    .preview-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .order-section {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    footer {
        padding: 1rem;
    }
} 