* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --retro-blue: #0099DD;
    --retro-yellow: #FFD500;
    --retro-red: #FF4444;
    --retro-orange: #FF8C42;
    --retro-pink: #FF6B9D;
    --retro-green: #00CC88;
    --retro-purple: #AA66CC;
    --retro-cyan: #00D4FF;
    --dark-text: #2C3E50;
    --light-bg: #FAFAFA;
}

body {
    font-family: 'Arial Black', 'Arial Bold', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background: linear-gradient(135deg, var(--retro-blue) 0%, var(--retro-cyan) 100%);
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: linear-gradient(90deg, var(--retro-yellow) 0%, var(--retro-orange) 100%);
    color: var(--dark-text);
    padding: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: transform 0.2s, text-shadow 0.2s;
}

.nav-links a:hover {
    transform: translateY(-2px);
    text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
}

.nav-links a.nav-highlight {
    background: var(--retro-red);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 0 #CC2222, 0 6px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-links a.nav-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 0 #CC2222, 0 8px 20px rgba(0,0,0,0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--dark-text);
    margin: 5px 0;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 153, 221, 0.85) 0%, rgba(170, 102, 204, 0.85) 100%),
                url('images/schober-hero-image.jpg') center/cover no-repeat;
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: relative;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 4px 4px 0px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
}

.cta-button {
    display: inline-block;
    background: var(--retro-yellow);
    color: var(--dark-text);
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 0 #CC9900, 0 8px 20px rgba(0,0,0,0.3);
    position: relative;
    overflow: visible;
}

.cta-button::before,
.cta-button::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFFFFF'%3E%3Cpath d='M12 0L14.59 9.41L24 12L14.59 14.59L12 24L9.41 14.59L0 12L9.41 9.41L12 0Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(0 0 3px rgba(255,255,255,0.8));
}

.cta-button::before {
    top: -10px;
    left: 10px;
}

.cta-button::after {
    bottom: -10px;
    right: 10px;
}

.cta-button:hover::before {
    animation: sparkle1 0.6s ease-in-out forwards;
}

.cta-button:hover::after {
    animation: sparkle2 0.6s ease-in-out 0.1s forwards;
}

@keyframes sparkle1 {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0.5) rotate(360deg) translateY(-10px);
    }
}

@keyframes sparkle2 {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(-180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0.5) rotate(-360deg) translateY(10px);
    }
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 0 #CC9900, 0 12px 25px rgba(0,0,0,0.4);
}

.cta-button:active {
    transform: translateY(3px);
    box-shadow: 0 3px 0 #CC9900, 0 4px 10px rgba(0,0,0,0.3);
}

/* About Section */
.about {
    padding: 4rem 2rem;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--retro-red);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.8;
    font-weight: 600;
}

/* Rental Pricing Section */
.rental-pricing {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--retro-purple) 0%, var(--retro-blue) 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.rental-pricing h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 4px 4px 0px rgba(0,0,0,0.3);
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
}

.pricing-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 2.5rem;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 0 rgba(0,0,0,0.2), 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 0 rgba(0,0,0,0.25), 0 15px 40px rgba(0,0,0,0.4);
}

.pricing-card-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.pricing-card h3 {
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}

.pricing-amount {
    background: linear-gradient(135deg, var(--retro-green) 0%, var(--retro-cyan) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.3rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 0 rgba(0,0,0,0.1);
    text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
}

.pricing-card p {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 1rem;
}

.pricing-table-wrapper {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 0 rgba(0,0,0,0.2), 0 10px 30px rgba(0,0,0,0.3);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 1.1rem;
}

.pricing-table thead th {
    background: linear-gradient(135deg, var(--retro-yellow) 0%, var(--retro-orange) 100%);
    color: var(--dark-text);
    padding: 1rem 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    text-shadow: 1px 1px 0px rgba(255,255,255,0.3);
}

.pricing-table tbody td {
    padding: 1rem 1.25rem;
    text-align: center;
    font-weight: 700;
    border-bottom: 2px solid #f0f0f0;
    color: var(--dark-text);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr:hover {
    background: rgba(0, 153, 221, 0.06);
}

.pricing-table tbody td:first-child {
    text-align: left;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-table-sub {
    display: block;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: 0;
    color: #777;
    margin-top: 2px;
}

.pricing-hold-notice {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
    border: 2px solid rgba(255,255,255,0.3);
}

.pricing-hold-notice strong {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .rental-pricing h2 {
        font-size: 2rem;
    }

    .pricing-subtitle {
        font-size: 1.2rem;
    }

    .pricing-details {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 1.5rem;
    }

    .pricing-table {
        font-size: 0.95rem;
    }

    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 0.75rem 0.75rem;
    }

    .pricing-table-sub {
        font-size: 0.7rem;
    }
}

/* Games Section */
.games {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--retro-orange) 0%, var(--retro-pink) 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.games h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 4px 4px 0px rgba(0,0,0,0.3);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.game-card {
    background: white;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 8px 0 rgba(0,0,0,0.2), 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: visible;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    aspect-ratio: 1;
    position: relative;
}

.game-card::before,
.game-card::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    opacity: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFFFFF'%3E%3Cpath d='M12 0L14.59 9.41L24 12L14.59 14.59L12 24L9.41 14.59L0 12L9.41 9.41L12 0Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.9));
    z-index: 10;
}

.game-card::before {
    top: -12px;
    right: 15px;
}

.game-card::after {
    bottom: -12px;
    left: 15px;
}

.game-card:hover::before {
    animation: sparkle1 0.6s ease-in-out forwards;
}

.game-card:hover::after {
    animation: sparkle2 0.6s ease-in-out 0.15s forwards;
}

.game-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 15px;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 0 rgba(0,0,0,0.25), 0 15px 40px rgba(0,0,0,0.4);
}

.game-card:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 0 rgba(0,0,0,0.2), 0 6px 20px rgba(0,0,0,0.3);
}

.game-card-inner {
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
}

.game-card { color: white; }
.game-card:nth-child(1) { background: linear-gradient(135deg, var(--retro-red) 0%, var(--retro-pink) 100%); }
.game-card:nth-child(2) { background: linear-gradient(135deg, var(--retro-orange) 0%, var(--retro-yellow) 100%); }
.game-card:nth-child(3) { background: linear-gradient(135deg, var(--retro-blue) 0%, var(--retro-cyan) 100%); }
.game-card:nth-child(4) { background: linear-gradient(135deg, var(--retro-green) 0%, var(--retro-cyan) 100%); }
.game-card:nth-child(5) { background: linear-gradient(135deg, var(--retro-purple) 0%, var(--retro-pink) 100%); }
.game-card:nth-child(6) { background: linear-gradient(135deg, var(--retro-yellow) 0%, var(--retro-orange) 100%); }
.game-card:nth-child(7) { background: linear-gradient(135deg, var(--retro-cyan) 0%, var(--retro-blue) 100%); }
.game-card:nth-child(8) { background: linear-gradient(135deg, var(--retro-red) 0%, var(--retro-orange) 100%); }

.game-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.2);
}

.game-card p {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.1);
}

/* Bundling Section */
.bundling {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--retro-green) 0%, var(--retro-cyan) 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    margin: 2rem 0;
}

.bundling h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 4px 4px 0px rgba(0,0,0,0.3);
}

.bundling-intro {
    text-align: center;
    font-size: 1.3rem;
    color: white;
    font-weight: 700;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
}

.bundle-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bundle-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 0 rgba(0,0,0,0.2), 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.bundle-tag {
    position: absolute;
    top: 12px;
    right: -30px;
    background: var(--retro-red);
    color: white;
    padding: 4px 40px;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(35deg);
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.bundle-label {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--retro-red);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bundle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 0 rgba(0,0,0,0.25), 0 15px 40px rgba(0,0,0,0.4);
}

.bundle-card:nth-child(1) .bundle-card-inner {
    background: linear-gradient(135deg, var(--retro-orange) 0%, var(--retro-red) 100%);
}

.bundle-card:nth-child(2) .bundle-card-inner {
    background: linear-gradient(135deg, var(--retro-purple) 0%, var(--retro-blue) 100%);
}

.bundle-card:nth-child(3) .bundle-card-inner {
    background: linear-gradient(135deg, #CD7F32 0%, #A0522D 100%);
}

.bundle-card:nth-child(4) .bundle-card-inner {
    background: linear-gradient(135deg, #E8E8E8 0%, #A8A8A8 100%);
}

.bundle-card:nth-child(5) .bundle-card-inner {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
}

.bundle-card-inner {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
}

.bundle-icon {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 0 rgba(0,0,0,0.1);
}

.bundle-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
}

.bundle-card p {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.1);
}

.bundle-discount {
    background: white;
    color: var(--dark-text);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    box-shadow: 0 4px 0 rgba(0,0,0,0.1);
}

.bundle-original-price {
    text-decoration: line-through;
    color: #e74c3c;
    font-size: 0.85em;
    margin-right: 0.3rem;
}

.bundle-detail-original-price {
    text-decoration: line-through;
    color: #e74c3c;
    font-size: 0.6em;
    margin-right: 0.3rem;
    vertical-align: middle;
}

.bundling-cta {
    text-align: center;
    font-size: 1.2rem;
    color: white;
    font-weight: 700;
    margin-top: 3rem;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
}

@media (max-width: 1000px) {
    .bundle-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .bundle-icon {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
    }

    .bundle-card h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .bundling h2 {
        font-size: 2rem;
    }

    .bundling-intro {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .bundle-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--retro-blue);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--retro-yellow) 0%, var(--retro-orange) 100%);
    border-radius: 15px;
    box-shadow: 0 6px 0 rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item h3 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.contact-item p {
    font-weight: 700;
}

.contact-item a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 700;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: linear-gradient(90deg, var(--retro-purple) 0%, var(--retro-blue) 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

footer p {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Game Detail Pages */
.game-detail {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 0 rgba(0,0,0,0.1), 0 15px 40px rgba(0,0,0,0.3);
}

.game-detail-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.game-detail h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.game-detail-content {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 600;
}

.game-detail-content h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.game-detail-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.game-detail-content li {
    margin-bottom: 0.5rem;
}

.back-button {
    display: inline-block;
    background: var(--retro-blue);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 0 #0066AA, 0 6px 15px rgba(0,0,0,0.3);
}

.back-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 0 #0066AA, 0 10px 20px rgba(0,0,0,0.4);
}

.back-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #0066AA, 0 4px 10px rgba(0,0,0,0.3);
}

/* FAQ Page */
.faq-hero {
    background: linear-gradient(135deg, rgba(0, 153, 221, 0.85) 0%, rgba(170, 102, 204, 0.85) 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.faq-hero h2 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 4px 4px 0px rgba(0,0,0,0.3);
    margin-bottom: 0.5rem;
}

.faq-hero p {
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
}

.faq-section {
    padding: 4rem 2rem;
    background: white;
    margin: 2rem 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 0 rgba(0,0,0,0.08), 0 6px 15px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--retro-yellow) 0%, var(--retro-orange) 100%);
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.15rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-text);
    text-align: left;
    transition: transform 0.2s;
}

.faq-question:hover {
    filter: brightness(1.05);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 900;
    transition: transform 0.3s;
    min-width: 24px;
    text-align: center;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background: #fafafa;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 1.25rem 1.5rem;
}

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 600;
    color: var(--dark-text);
}

.faq-answer a {
    color: var(--retro-blue);
    font-weight: 700;
    text-decoration: underline;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-cta p {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .faq-hero h2 {
        font-size: 2rem;
    }

    .faq-hero p {
        font-size: 1.1rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }
}

/* Bundle Detail Pages */
.bundle-detail {
    max-width: 900px;
    margin: 3rem auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 0 rgba(0,0,0,0.1), 0 15px 40px rgba(0,0,0,0.3);
    overflow: hidden;
}

.bundle-detail-header {
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.bundle-detail-header h2 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 4px 4px 0px rgba(0,0,0,0.3);
    margin-bottom: 0.5rem;
}

.bundle-detail-price {
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.3);
    margin-bottom: 0.5rem;
}

.bundle-detail-desc {
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
}

.bundle-detail-content {
    padding: 2.5rem 2rem;
}

.bundle-select-instructions {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark-text);
}

.bundle-game-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.bundle-game-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 3px solid #e0e0e0;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.1s;
    user-select: none;
}

.bundle-game-option:hover {
    border-color: var(--retro-blue);
    background: rgba(0, 153, 221, 0.05);
    transform: translateX(4px);
}

.bundle-game-option:has(input:checked) {
    border-color: var(--retro-green);
    background: rgba(0, 204, 136, 0.1);
    box-shadow: 0 2px 8px rgba(0, 204, 136, 0.2);
}

.bundle-game-option.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.bundle-game-option input[type="checkbox"],
.bundle-game-option input[type="radio"] {
    display: none;
}

.bundle-game-checkbox {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border: 3px solid #ccc;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

.bundle-game-option:has(input:checked) .bundle-game-checkbox {
    background: var(--retro-green);
    border-color: var(--retro-green);
}

.bundle-game-option:has(input:checked) .bundle-game-checkbox::after {
    content: '\2713';
    color: white;
    font-size: 1.1rem;
    font-weight: 900;
}

.bundle-game-thumb {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.bundle-game-name {
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-text);
}

.bundle-selection-status {
    text-align: center;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #f0f0f0;
    color: var(--dark-text);
    margin-bottom: 2rem;
    transition: background 0.3s, color 0.3s;
}

.bundle-selection-status.complete {
    background: var(--retro-green);
    color: white;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
}

.bundle-selection-status.over {
    background: var(--retro-red);
    color: white;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
}

.bundle-credit-hold {
    margin-bottom: 2rem;
    padding: 1.25rem 1.5rem;
    background: #fff8f8;
    border: 2px solid #e74c3c;
    border-radius: 12px;
}

.bundle-credit-hold-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    user-select: none;
}

.bundle-credit-hold-label input[type="checkbox"] {
    display: none;
}

.bundle-credit-hold-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border: 3px solid #e74c3c;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    margin-top: 2px;
}

.bundle-credit-hold-label input[type="checkbox"]:checked ~ .bundle-credit-hold-check {
    background: var(--retro-green);
    border-color: var(--retro-green);
}

.bundle-credit-hold-label input[type="checkbox"]:checked ~ .bundle-credit-hold-check::after {
    content: '\2713';
    color: white;
    font-size: 1.1rem;
    font-weight: 900;
}

.bundle-credit-hold-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    line-height: 1.5;
}

.required-asterisk {
    color: #e74c3c;
    font-weight: 900;
    font-size: 1.2rem;
}

.bundle-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.bundle-purchase-btn {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.bundle-purchase-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
}

.bundle-detail .bundle-tag {
    position: absolute;
    top: 15px;
    right: -25px;
    background: var(--retro-red);
    color: white;
    padding: 4px 40px;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(35deg);
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Duration Selector */
.duration-selector {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
    background: #f0f0f0;
    border-radius: 50px;
    padding: 4px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.duration-option {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 900;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    color: var(--dark-text);
    user-select: none;
}

.duration-option:hover {
    background: rgba(0, 153, 221, 0.1);
}

.duration-option.active {
    background: var(--retro-blue);
    color: white;
    box-shadow: 0 3px 0 #006699, 0 4px 10px rgba(0,0,0,0.2);
    text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
}

.duration-option input[type="radio"] {
    display: none;
}

@media (max-width: 600px) {
    .bundle-detail {
        margin: 1rem;
        border-radius: 15px;
    }

    .bundle-detail-header h2 {
        font-size: 2rem;
    }

    .bundle-detail-price {
        font-size: 2.5rem;
    }

    .bundle-detail-content {
        padding: 1.5rem 1rem;
    }

    .bundle-game-option {
        padding: 0.75rem 1rem;
    }

    .bundle-game-name {
        font-size: 1rem;
    }

    .bundle-actions {
        flex-direction: column;
    }

    .bundle-actions .back-button,
    .bundle-actions .bundle-purchase-btn {
        width: 100%;
        text-align: center;
    }

    .duration-option {
        font-size: 0.8rem;
        padding: 0.6rem 0.5rem;
        letter-spacing: 0;
    }
}

/* Purchase Success Page - Game Card Style */
.success-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--retro-orange) 0%, var(--retro-pink) 100%);
}

.success-card-container {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.success-game-card {
    background: linear-gradient(135deg, var(--retro-green) 0%, var(--retro-cyan) 100%);
    border-radius: 15px;
    box-shadow: 0 8px 0 rgba(0,0,0,0.2), 0 10px 30px rgba(0,0,0,0.3);
    overflow: hidden;
    color: white;
    transition: transform 0.2s, box-shadow 0.2s;
}

.success-game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 0 rgba(0,0,0,0.25), 0 15px 40px rgba(0,0,0,0.4);
}

.success-card-inner {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.success-icon {
    color: white;
    margin-bottom: 1.5rem;
    animation: successPop 0.5s ease-out;
    filter: drop-shadow(3px 3px 0px rgba(0,0,0,0.3));
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-game-card h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 4px 4px 0px rgba(0,0,0,0.3);
}

.success-tagline {
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
}

.success-details-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 0 rgba(0,0,0,0.1), 0 10px 30px rgba(0,0,0,0.3);
    overflow: hidden;
}

.success-content {
    padding: 2.5rem 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 600;
}

.success-content > p:first-child {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.next-steps-card,
.questions-card {
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.next-steps-card {
    background: linear-gradient(135deg, var(--retro-blue) 0%, var(--retro-cyan) 100%);
    color: white;
    box-shadow: 0 4px 0 rgba(0,0,0,0.15), 0 6px 15px rgba(0,0,0,0.2);
}

.questions-card {
    background: linear-gradient(135deg, var(--retro-yellow) 0%, var(--retro-orange) 100%);
    box-shadow: 0 4px 0 rgba(0,0,0,0.15), 0 6px 15px rgba(0,0,0,0.2);
}

.next-steps-card h3,
.questions-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
}

.next-steps-card ul {
    margin-left: 1.5rem;
    list-style: none;
}

.next-steps-card li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.next-steps-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 900;
}

.questions-card p {
    margin: 0;
}

.questions-card a {
    color: var(--dark-text);
    font-weight: 800;
    text-decoration: underline;
}

.success-buttons {
    margin-top: 2rem;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.success-btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s, box-shadow 0.2s;
    color: white;
}

.success-btn-green {
    background: var(--retro-green);
    box-shadow: 0 4px 0 #009966, 0 6px 15px rgba(0,0,0,0.3);
}

.success-btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 0 #009966, 0 10px 20px rgba(0,0,0,0.4);
}

.success-btn-green:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #009966, 0 4px 10px rgba(0,0,0,0.3);
}

.success-btn-orange {
    background: var(--retro-orange);
    box-shadow: 0 4px 0 #CC6600, 0 6px 15px rgba(0,0,0,0.3);
}

.success-btn-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 0 #CC6600, 0 10px 20px rgba(0,0,0,0.4);
}

.success-btn-orange:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #CC6600, 0 4px 10px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
    }
}

@media (max-width: 900px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .game-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(90deg, var(--retro-yellow) 0%, var(--retro-orange) 100%);
        flex-direction: column;
        padding: 1rem 20px 1.5rem;
        gap: 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        font-size: 1rem;
    }

    header {
        position: relative;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .games h2 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .game-detail {
        padding: 2rem 1.5rem;
    }

    .game-detail h2 {
        font-size: 2rem;
    }

    .success-card-inner {
        padding: 2rem 1.5rem;
    }

    .success-game-card h2 {
        font-size: 1.8rem;
    }

    .success-content {
        padding: 1.5rem 1rem;
    }

    .success-buttons {
        flex-direction: column;
    }

    .success-btn {
        width: 100%;
        text-align: center;
    }

    .next-steps-card,
    .questions-card {
        padding: 1rem;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--retro-purple) 0%, var(--retro-blue) 100%);
    color: white;
    padding: 1rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cookie-btn-accept {
    background: var(--retro-yellow);
    color: var(--dark-text);
    box-shadow: 0 4px 0 #CC9900, 0 6px 15px rgba(0,0,0,0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #CC9900, 0 8px 20px rgba(0,0,0,0.4);
}

.cookie-btn-accept:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #CC9900, 0 3px 10px rgba(0,0,0,0.3);
}

.cookie-btn-decline {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 0 rgba(255,255,255,0.3), 0 6px 15px rgba(0,0,0,0.2);
}

.cookie-btn-decline:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 6px 0 rgba(255,255,255,0.3), 0 8px 20px rgba(0,0,0,0.3);
}

.cookie-btn-decline:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 rgba(255,255,255,0.3), 0 3px 10px rgba(0,0,0,0.2);
}

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Popup Modal */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-modal {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 550px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 0 rgba(0,0,0,0.15), 0 15px 40px rgba(0,0,0,0.4);
    transform: scale(0.8);
    transition: transform 0.3s;
}

.popup-overlay.show .popup-modal {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark-text);
    font-weight: 900;
    line-height: 1;
    transition: transform 0.2s, color 0.2s;
    z-index: 1;
}

.popup-close:hover {
    transform: scale(1.2);
    color: var(--retro-red);
}

@media (max-width: 600px) {
    .popup-modal {
        padding: 2rem 1.5rem;
        width: 95%;
    }
}
