
        /* Base Styles */
        body {
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: #000000; /* True black base */
            color: #ffffff;
            line-height: 1.6;
        }

        /* Gold/Yellow Theme Color */
        :root {
            --elite-gold: #ffcb05; /* Matching the classic Pokemon/Logo yellow */
        }

        /* Floating Sticky Menu */
        .floating-menu {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: rgba(11, 14, 20, 0.95);
            border-bottom: 2px solid var(--elite-gold);
            padding: 1.5% 0;
            width: 100%;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
        }

        .nav-container {
            display: flex;
            justify-content: center;
            gap: 3%;
            max-width: 90%;
            margin: 0 auto;
        }

        .nav-item {
            color: #ffffff;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .nav-item2 {
            display: inline-block;
            padding: 1% 2%;
            background-color: #000000;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 1.2rem;
            transition: all 0.3s ease;

        }


        .nav-item2:hover {
            transform: scale(1.05);
            background-color: #ffffff;
            box-shadow: 0 0 20px var(--elite-gold);
            color: var(--elite-gold);
        }

        .nav-item:hover {
            color: var(--elite-gold);
            text-shadow: 0 0 8px var(--elite-gold);
        }
        a:link, a:visited, a:active {
            color: var(--elite-gold);
}

a:hover {
color: var(--elite-gold);
            text-shadow: 0 0 8px var(--elite-gold);
        }

        /* Hero Section */
        .hero {
            height: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('/images/logo-background.png'); 
            background-size: cover;
            background-position: center;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 2%;
            color: var(--elite-gold);
            text-transform: uppercase;
            text-shadow: 3px 3px 15px rgba(0,0,0,1);
        }

        /* Main Content with Parallax Background */
        .main-content {
            position: relative;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/background1.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed; 
            padding: 1% 0;
        }

        .cta-button {
            display: inline-block;
            padding: 1% 2%;
            background-color: var(--elite-gold);
            color: #000000;
            text-decoration: none;
            font-weight: 900;
            border-radius: 1.5%;
            margin-top: 2%;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }
        .cta-button:link {
            color: #000000;
        }
        .cta-button:visited {
            color: #000000;
        }

        .cta-button:hover {
            transform: scale(1.05);
            background-color: #ffffff;
            box-shadow: 0 0 20px var(--elite-gold);
            color: var(--elite-gold);
        }


/* Force the row to be a flex container that stays in one line */
.shop-row {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 1.5%; /* Space between the image row and text row */
}

/* Each slot takes up exactly 32% to fit 3 in a row with gaps */
.item-slot {
    width: 32%;
    text-align: center;
}

/* Make sure images don't grow larger than their 32% slot */
.item-slot img {
    width: 100%;
    height: auto;
    display: block;
}

/* The text box styling */
.price-box {
    border: 2px solid #d4af37; /* Elite Gold */
    background-color: #000; /* Black background */
    color: #fff;
    padding: 1.5% 1%;
    font-size: 14px;
    font-family: sans-serif;
    text-transform: uppercase;
    margin-bottom: 3%; /* Space after the text before next set of images */
}
        .section {
            padding: 3% 2%;
            max-width: 80%;
            margin: 0 auto 3% auto;
            text-align: center;
            background: rgba(255, 255, 255, 0.05); /* Transparent card look */
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 203, 5, 0.2); /* Subtle gold border */
            border-radius: 1.5%;
        }

        .section h2 {
            color: var(--elite-gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 2rem;
        }

        .textpop {
            color: var(--elite-gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 2rem;
        }

        .full {
            width: 90%;
        }

        .half {
            width: 50%;
        }

        .third {
            width: 33%;
        }

        .quarter {
            width: 25%;
        }

        .ten {
            width: 10%;
        }

        .five {
            width: 5%;
        }

html {
  scroll-behavior: smooth;
}


        /* Transition back to Black */
        .black-footer-section {
            background-color: #000000;
            padding: 5% 3%;
            text-align: center;
            border-top: 2px solid var(--elite-gold);
        }

        footer {
            padding: 2%;
            text-align: center;
            font-size: 0.85rem;
            color: #888;
            background-color: #000000;
        }

 .container {
	width: 90%;
	margin: auto;

}
