body {
    margin: 0;
    font-family: 'Press Start 2P', cursive;
    background: black;
    color: #00ffea;
}

header {
    background: #111;
    padding: 20px;
    text-align: center;
    border-bottom: 4px solid #00ffea;
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    color: #00ffea;
    text-decoration: none;
    font-size: 14px;
}

nav a:hover {
    color: #ff0077;
}

.container {
    padding: 40px;
    text-align: center;
}
       
.containercart {
    padding: 40px;
    text-align: center;
    max-width: 700px;
    margin: 30px auto;          /* centers it */
    padding: 20px;

    background: #111;
    border: 3px solid #00ffea;
    border-radius: 10px;

    box-shadow: 0 0 12px #00ffea;
    text-align: center;
}
.containercart h5 {
    font-size: 12px;
    margin-bottom: 1px;
    color: #ff0077;
}
#cartItems div {
    line-height: 1.2;     /* adds vertical breathing space */
    font-size: 12px;      /* slightly reduces crowding */
}

#cartItems button {
    margin: 5px 5px 0 0;  /* space between buttons */
}

#cartItems strong {
    display: block;
    margin-bottom: 1px;   /* space under game name */
}

button {
    background: #ff0077;
    border: none;
    padding: 12px 20px;
    color: white;
    cursor: pointer;
    font-family: inherit;
}

button:hover {
    background: #00ffea;
    color: black;
}

input, textarea, select {
    font-family: inherit;
    width: 250px;
    padding: 10px;
    margin-top: 10px;
    background: #111;
    color: #00ffea;
    border: 2px solid #00ffea;
}
/* membership card layout */
.membership-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.card {
    width: 260px;
    padding: 20px;
    background: #111;
    border: 3px solid #00ffea;
    border-radius: 10px;
    box-shadow: 0 0 10px #00ffea;
    text-align: center;
}

.card h3 {
    color: #ff0077;
}

.card ul {
    list-style: none;
    padding: 0;
    font-size: 12px;
}

.card li {
    margin: 8px 0;
}

/* Ssubscription tier colors */
.normal { border-color: #00ffea; }
.silver { border-color: #c0c0c0; box-shadow: 0 0 10px #c0c0c0; }
.gold { border-color: gold; box-shadow: 0 0 10px gold; }

/* recharge box*/
.recharge-box {
    background: #111;
    border: 3px solid #00ffea;
    padding: 25px;
    width: 300px;
    margin: 0 auto;
    margin-bottom: 15px;
    text-align: center;
    box-shadow: 0 0 10px #00ffea;
}

/*new bookings page*/
/* full page no-scroll event booking */
.booking-wrapper {
     /* fit page under header */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #00ffea;
    padding-top: 20px;
}

.booking-wrapper h2 {
    margin-bottom: 20px;
}

/* Two-column layout */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 70%;
}

.form-box {
    background: #111;
    padding: 30px;
    border: 3px solid #00ffea;
    box-shadow: 0 0 12px #00ffea;
    border-radius: 10px;
}

/* Inputs of booking page*/
.form-box label {
    font-size: 12px;
    color: #ff0077;
    display: block;
    margin-bottom: 5px;
    
}

.form-box input,
.form-box select,
.form-box textarea {
    width: 90%;
    background: #000;
    border: 2px solid #00ffea;
    color: #00ffea;
    padding: 10px;
    margin-bottom: 15px;
    font-family: 'Press Start 2P', cursive;

}

.form-box textarea {
    height: 60px;
    resize: none;
}

/* Button */
.book-btn {
    margin-top: 20px;
    padding: 12px 25px;
    background: #ff0077;
    border: none;
    color: white;
    cursor: pointer;
    font-family: 'Press Start 2P', cursive;
}

.book-btn:hover {
    background: #00ffea;
    color: black;
}
/*website background*/
/* Hero section with background image */
.hero {
    background-image: url("images/arcade-bg.jpg"); ;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: calc(100vh - 120px); /* height below header */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Keep text readable */
.hero .container {
    background: rgba(0, 0, 0, 0.65);
    padding: 40px;
    border: 3px solid #00ffea;
    box-shadow: 0 0 15px #00ffea;
    max-width: 800px;
}
.hero-bg {
    background-attachment: fixed;
}
/* Main Layout */
.checkout-container {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 50px auto;
    align-items: flex-start;
}

/* LEFT SIDE */
.cart-section {
    flex: 2;
    background: #111;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* RIGHT SIDE */
.summary-section {
    flex: 1;
    background: #111;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #ff0077;
    height: fit-content;
}

/* Individual Cart Item */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #1a1a1a;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #00ffea;
}

/* Game Name */
.item-name {
    flex: 2;
    text-align: left;
}

/* Quantity Controls */
.qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-controls span {
    min-width: 20px;
    text-align: center;
    font-size: 14px;
}

/* Item Price */
.item-total {
    flex: 1;
    text-align: right;
    font-weight: bold;
}

/* Buttons */
.qty-controls button {
    padding: 6px 12px;
    font-size: 12px;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    font-size: 14px;
    background: #ff0077;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.checkout-btn:hover {
    background: #00ffea;
    color: black;
}
