@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    background-color: #0d0d0d; 
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    text-align: center;
    margin: 0;
    padding: 25px; 
}


nav {
    background: url('../assets/animatedlogo.gif') center/cover no-repeat;
    padding: 15px 15px;
    width: 100%;
    height: 45vh;
    object-fit: fill;
    max-width: 1100px;
    margin: 0 auto; 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-end;
    text-align: center;
    font-family: 'Press Start 2P', cursive; 
    border-radius: 10px;
    background-color: rgba(20, 20, 20, 0.8);
    box-shadow: 0 0 20px #8B00FF;
}


nav ul {
    list-style: none;
    margin-top: auto;
    padding: 0;
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 15px; 
    max-width: 1200px; 
    margin: 0 auto; 
}


nav ul li {
    flex-grow: 1; 
    text-align: center; 
    min-width: 120px; 
}


nav ul li a {
    color: #f0f0f0; 
    font-size: 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    transition: 0.3s;
    letter-spacing: 2px; 
    padding: 10px 20px; 
    display: inline-block; 

    
    -webkit-text-stroke: 1px black; 
    text-shadow: 
        -1px -1px 0 black, 
         1px -1px 0 black, 
        -1px  1px 0 black, 
         1px  1px 0 black, 
         0 0 10px #b22222, 
         0 0 15px #8b0000; 
}


nav ul li a:hover {
    text-shadow: 
        -1px -1px 0 black, 
         1px -1px 0 black, 
        -1px  1px 0 black, 
         1px  1px 0 black, 
         0 0 10px #ff4500, 
         0 0 20px #ff6347, 
         0 0 30px #ff6347; 
    color: #ff4500; 
}


@media (max-width: 768px) {
    nav ul {
        justify-content: space-evenly; 
        row-gap: 5px; 
        column-gap: 8px; 
    }

    nav ul li {
        flex-grow: 0; 
        min-width: 100px; 
        margin: 2px; 
    }
}

@media screen and (max-width: 300px) {
    .hero h1 {
      font-size: 20px
    }
    .hero p {
        font-size: 15px
      }
}

.hero {
    background: url('../assets/arcadebackgroung.webp') center/cover no-repeat;
    width: 100%;
    height: 45vh; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 10px #ffffff;
    padding: 15px 15px;
    border-radius: 10px;
}

.hero h1 {
    font-family: 'Press Start 2P', cursive; 
    font-size: 30px;
    color: #ffcc00; 
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    padding: 20px;
    margin-bottom: 10px; 
    
    
    -webkit-text-stroke: 1px black;

    
    text-shadow: 
        0 0 10px #8A2BE2,  
        0 0 20px #9400D3,  
        0 0 30px #9932CC,  
        0 0 40px #BA55D3;  

    
    animation: neon-glow 1.2s infinite alternate, pulse-scale 2s infinite alternate;
}

.hero p {
    font-family: 'Press Start 2P', cursive; 
    font-size: 30px; 
    color: #ffcc00; 
    text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff8800, 0 0 30px #ff4400;
    text-align: center;
    letter-spacing: 2px;
    padding: 10px;
    -webkit-text-stroke: 1px black;

}

@keyframes neon-glow {
    0% {
        text-shadow: 
            0 0 5px #8A2BE2, 
            0 0 10px #9400D3, 
            0 0 15px #9932CC, 
            0 0 20px #BA55D3;
    }
    50% {
        text-shadow: 
            0 0 15px #8A2BE2, 
            0 0 25px #9400D3, 
            0 0 35px #9932CC, 
            0 0 45px #BA55D3;
    }
    100% {
        text-shadow: 
            0 0 10px #8A2BE2, 
            0 0 20px #9400D3, 
            0 0 30px #9932CC, 
            0 0 40px #BA55D3;
    }
}



@keyframes pulse-scale {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}


.arcadehero {
    background: url('../assets/games.webp') center/cover no-repeat;
    width: 100%;
    height: 45vh; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 10px #ffffff;
    padding: 15px 15px;
    border-radius: 10px;
}

.arcadehero h1 {
    font-family: 'Press Start 2P', cursive; 
    font-size: 30px;
    color: #ffcc00; 
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    padding: 20px;
    margin-bottom: 10px; 
    
    
    -webkit-text-stroke: 1px black;

    
    text-shadow: 
        0 0 10px #8A2BE2,  
        0 0 20px #9400D3,  
        0 0 30px #9932CC,  
        0 0 40px #BA55D3;  

    
    animation: neon-glow 1.2s infinite alternate, pulse-scale 2s infinite alternate;
}

.arcadehero p {
    font-family: 'Press Start 2P', cursive; 
    font-size: 30px; 
    color: #ffcc00; 
    text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff8800, 0 0 30px #ff4400;
    text-align: center;
    letter-spacing: 2px;
    padding: 10px;
    -webkit-text-stroke: 1px black;

}

.foodhero {
    background: url('../assets/food.webp') center/cover no-repeat;
    width: 100%;
    height: 45vh; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 10px #ffffff;
    padding: 15px 15px;
    border-radius: 10px;
}

.foodhero h1 {
    font-family: 'Press Start 2P', cursive; 
    font-size: 30px;
    color: #ffcc00; 
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    padding: 20px;
    margin-bottom: 10px; 
    
    
    -webkit-text-stroke: 1px black;

    
    text-shadow: 
        0 0 10px #8A2BE2,  
        0 0 20px #9400D3,  
        0 0 30px #9932CC,  
        0 0 40px #BA55D3;  

    
    animation: neon-glow 1.2s infinite alternate, pulse-scale 2s infinite alternate;
}


.foodhero p {
    font-family: 'Press Start 2P', cursive; 
    font-size: 30px; 
    color: #ffcc00; 
    text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff8800, 0 0 30px #ff4400;
    text-align: center;
    letter-spacing: 2px;
    padding: 10px;
    -webkit-text-stroke: 1px black;

}

.contacthero {
    background: url('../assets/visitus.webp') center/cover no-repeat;
    width: 100%;
    height: 45vh; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 10px #ffffff;
    padding: 15px 15px;
    border-radius: 10px;
}

.contacthero h1 {
    font-family: 'Press Start 2P', cursive; 
    font-size: 30px;
    color: #ffcc00; 
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    padding: 20px;
    margin-bottom: 10px; 
    
    
    -webkit-text-stroke: 1px black;

    
    text-shadow: 
        0 0 10px #8A2BE2,  
        0 0 20px #9400D3,  
        0 0 30px #9932CC,  
        0 0 40px #BA55D3;  

    
    animation: neon-glow 1.2s infinite alternate, pulse-scale 2s infinite alternate;
}


.contacthero p {
    font-family: 'Press Start 2P', cursive; 
    font-size: 30px; 
    color: #ffcc00; 
    text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff8800, 0 0 30px #ff4400;
    text-align: center;
    letter-spacing: 2px;
    padding: 10px;
    -webkit-text-stroke: 1px black;

}

.eventshero {
    background: url('../assets/eventsbackground.webp') center/cover no-repeat;
    width: 100%;
    height: 45vh; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 10px #ffffff;
    padding: 15px 15px;
    border-radius: 10px;
}

.eventshero h1 {
    font-family: 'Press Start 2P', cursive; 
    font-size: 30px;
    color: #ffcc00; 
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    padding: 20px;
    margin-bottom: 10px; 
    
    
    -webkit-text-stroke: 1px black;

    
    text-shadow: 
        0 0 10px #8A2BE2,  
        0 0 20px #9400D3,  
        0 0 30px #9932CC,  
        0 0 40px #BA55D3;  

    
    animation: neon-glow 1.2s infinite alternate, pulse-scale 2s infinite alternate;
}


.eventshero p {
    font-family: 'Press Start 2P', cursive; 
    font-size: 30px; 
    color: #ffcc00; 
    text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff8800, 0 0 30px #ff4400;
    text-align: center;
    letter-spacing: 2px;
    padding: 10px;
    -webkit-text-stroke: 1px black;

}
.events {
    background: url('../assets/eventsbackground.webp') center/cover no-repeat;
    width: 100%;
    padding: 15px; 
    color: white; 
    text-align: center;
    position: relative;
    border-radius: 10px;
    
}


.events::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}


.events h2,
.events p {
    position: relative;
    z-index: 2;
}


.events h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 32px;
    color: #ffcc00; 
    text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff8800, 0 0 30px #ff4400;
    margin-bottom: 15px;
    -webkit-text-stroke: 1px black;

}


.events p {
    font-family: 'Press Start 2P', cursive;
    font-size: 16px;
    color: #00ffff; 
    text-shadow: 0 0 5px #00ffff, 0 0 10px #008888, 0 0 20px #006666;
    max-width: 800px;
    margin: 0 auto;
}

.featured-games {
    background: url('../assets/games.webp') center/cover no-repeat;
    width: 100%;
    padding: 15px;
    color: white;
    text-align: center;
    position: relative;
    border-radius: 10px;
}


.featured-games::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}


.featured-games h2,
.featured-games p {
    position: relative;
    z-index: 2;
}


.featured-games h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 32px;
    color: #ffcc00; 
    text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff8800, 0 0 30px #ff4400;
    margin-bottom: 15px;
    -webkit-text-stroke: 1px black;

}


.featured-games p {
    font-family: 'Press Start 2P', cursive;
    font-size: 16px;
    color: #00ffff; 
    text-shadow: 0 0 5px #00ffff, 0 0 10px #008888, 0 0 20px #006666;
    max-width: 800px;
    margin: 0 auto;
}

.visit-us {
    background: url('../assets/visitus.webp') center/cover no-repeat;
    width: 100%;
    padding: 15px;
    color: white;
    text-align: center;
    position: relative;
    border-radius: 10px;
}


.visit-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}


.visit-us h2,
.visit-us p {
    position: relative;
    z-index: 2;
}


.visit-us h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 32px;
    color: #ffcc00; 
    text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff8800, 0 0 30px #ff4400;
    margin-bottom: 15px;
    -webkit-text-stroke: 1px black;

}


.visit-us p {
    font-family: 'Press Start 2P', cursive;
    font-size: 16px;
    color: #00ffff; 
    text-shadow: 0 0 5px #00ffff, 0 0 10px #008888, 0 0 20px #006666;
    max-width: 800px;
    margin: 0 auto;
}



.visit-us h2,
.visit-us p {
    position: relative;
    z-index: 2;
}

.arcade {
    background: url('../assets/arcade.webp') center/cover no-repeat;
    width: 100%;
    padding: 60px 20px; 
    color: rgb(235, 227, 227); 
    text-align: center;
    position: relative;
    border-radius: 10px;
}


.arcade::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}


.arcade h2,
.arcade p {
    position: relative;
    z-index: 2;
}


.arcade h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 32px;
    color: #ffcc00; 
    text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff8800, 0 0 30px #ff4400;
    margin-bottom: 15px;
}


.arcade p {
    font-family: 'Press Start 2P', cursive;
    font-size: 32px;
    color: #99d4d4; 
    text-shadow: 0 0 5px #00ffff, 0 0 10px #008888, 0 0 20px #006666;
    max-width: 800px;
    margin: 0 auto;
}

.arcade a {
    color: #00AFFF; 
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    transition: 0.3s;
    letter-spacing: 2px; 
    padding: 10px 20px; 
    display: inline-block; 

    
    -webkit-text-stroke: 1px black; 
    text-shadow: 
        -1px -1px 0 black, 
         1px -1px 0 black, 
        -1px  1px 0 black, 
         1px  1px 0 black, 
         0 0 12px #00D8FF,  
         0 0 18px #00F7FF;  
}


.arcade a:hover {
    text-shadow: 
        -1px -1px 0 black, 
         1px -1px 0 black, 
        -1px  1px 0 black, 
         1px  1px 0 black, 
         0 0 15px #00E6FF, 
         0 0 25px #00FFFF, 
         0 0 35px #80FFFF; 
    color: #00E6FF; 
}



.pinball {
    background: url('../assets/pinball.jpg') center/cover no-repeat;
    width: 100%;
    padding: 60px 20px; 
    color: rgb(235, 227, 227); 
    text-align: center;
    position: relative;
    border-radius: 10px;
}


.pinball::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}


.pinball h2,
.pinball p {
    position: relative;
    z-index: 2;
}


.pinball h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 32px;
    color: #ffcc00; 
    text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff8800, 0 0 30px #ff4400;
    margin-bottom: 15px;
}


.pinball p {
    font-family: 'Press Start 2P', cursive;
    font-size: 32px;
    color: #99d4d4; 
    text-shadow: 0 0 5px #00ffff, 0 0 10px #008888, 0 0 20px #006666;
    max-width: 800px;
    margin: 0 auto;
}
.pinball a {
    color: #00AFFF; 
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    transition: 0.3s;
    letter-spacing: 2px; 
    padding: 10px 20px; 
    display: inline-block; 

    
    -webkit-text-stroke: 1px black; 
    text-shadow: 
        -1px -1px 0 black, 
         1px -1px 0 black, 
        -1px  1px 0 black, 
         1px  1px 0 black, 
         0 0 12px #00D8FF,  
         0 0 18px #00F7FF;  
}


.pinball a:hover {
    text-shadow: 
        -1px -1px 0 black, 
         1px -1px 0 black, 
        -1px  1px 0 black, 
         1px  1px 0 black, 
         0 0 15px #00E6FF, 
         0 0 25px #00FFFF, 
         0 0 35px #80FFFF; 
    color: #00E6FF; 
}
.menu-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 15px #8A2BE2;
    border-radius: 10px;
    overflow: hidden;
}
.menu-table th, .menu-table td {
    border: 1px solid #8A2BE2;
    padding: 15px;
    font-size: 18px;
    text-align: left;
    color: #fff;
}
.menu-table th {
    background-color: #8A2BE2;
    color: #fff;
    text-transform: uppercase;
}
.menu-table tr:nth-child(even) {
    background-color: rgba(138, 43, 226, 0.2);
}
.events-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 15px #8A2BE2;
    border-radius: 10px;
    overflow: hidden;
}
.events-table th, .events-table td {
    border: 1px solid #8A2BE2;
    padding: 15px;
    font-size: 18px;
    text-align: left;
    color: #fff;
}
.events-table th {
    background-color: #8A2BE2;
    color: #fff;
    text-transform: uppercase;
}
.events-table tr:nth-child(even) {
    background-color: rgba(138, 43, 226, 0.2);
}
.contact-container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    box-shadow: 0 0 15px #8A2BE2;
    text-align: center;
}
.contact-container h2 {
    font-size: 28px;
    color: #fff;
}
.contact-container p {
    font-size: 18px;
    color: #ddd;
}
.contact-form {
    margin-top: 20px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #8A2BE2;
    border-radius: 5px;
    background: #222;
    color: #fff;
    font-size: 16px;
}
.contact-form button {
    padding: 10px 20px;
    background: #8A2BE2;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s;
}
.contact-form button:hover {
    background: #9400D3;
}
section {
    padding: 30px 20px;
    margin: 20px auto;
    width: 80%;
    max-width: 1000px;
    border-radius: 10px;
    background-color: rgba(20, 20, 20, 0.8);
    box-shadow: 0 0 20px #8B00FF;
}
.cabhero {
    background: url('../assets/arcade.webp') center/cover no-repeat;
    width: 100%;
    height: 45vh; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 10px #ffffff;
    padding: 15px 15px;
    border-radius: 10px;
}

.cabhero h1 {
    font-family: 'Press Start 2P', cursive; 
    font-size: 50px;
    color: #ffcc00; 
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    padding: 20px;
    margin-bottom: 10px; 
    
    
    -webkit-text-stroke: 1px black;

    
    text-shadow: 
        0 0 10px #8A2BE2,  
        0 0 20px #9400D3,  
        0 0 30px #9932CC,  
        0 0 40px #BA55D3;  

    
    animation: neon-glow 1.2s infinite alternate, pulse-scale 2s infinite alternate;
}


.cabhero p {
    font-family: 'Press Start 2P', cursive; 
    font-size: 30px; 
    color: #ffcc00; 
    text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff8800, 0 0 30px #ff4400;
    text-align: center;
    letter-spacing: 2px;
    padding: 10px;
    -webkit-text-stroke: 1px black;

}

.cab-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 15px #8A2BE2;
    border-radius: 10px;
    overflow: hidden;
}
.cab-table th, .cab-table td {
    border: 1px solid #8A2BE2;
    padding: 15px;
    font-size: 18px;
    text-align: left;
    color: #fff;
}
.cab-table th {
    background-color: #8A2BE2;
    color: #fff;
    text-transform: uppercase;
}
.cab-table tr:nth-child(even) {
    background-color: rgba(138, 43, 226, 0.2);
}

.pinhero {
    background: url('../assets/pinball.jpg') center/cover no-repeat;
    width: 100%;
    height: 45vh; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 10px #ffffff;
    padding: 15px 15px;
    border-radius: 10px;
}

.pinhero h1 {
    font-family: 'Press Start 2P', cursive; 
    font-size: 50px;
    color: #ffcc00; 
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    padding: 20px;
    margin-bottom: 10px; 
    
    
    -webkit-text-stroke: 1px black;

    
    text-shadow: 
        0 0 10px #8A2BE2,  
        0 0 20px #9400D3,  
        0 0 30px #9932CC,  
        0 0 40px #BA55D3;  

    
    animation: neon-glow 1.2s infinite alternate, pulse-scale 2s infinite alternate;
}


.pinhero p {
    font-family: 'Press Start 2P', cursive; 
    font-size: 30px; 
    color: #ffcc00; 
    text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff8800, 0 0 30px #ff4400;
    text-align: center;
    letter-spacing: 2px;
    padding: 10px;
    -webkit-text-stroke: 1px black;

}

.pin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 15px #8A2BE2;
    border-radius: 10px;
    overflow: hidden;
}
.pin-table th, .pin-table td {
    border: 1px solid #8A2BE2;
    padding: 15px;
    font-size: 18px;
    text-align: left;
    color: #fff;
}
.pin-table th {
    background-color: #8A2BE2;
    color: #fff;
    text-transform: uppercase;
}
.pin-table tr:nth-child(even) {
    background-color: rgba(138, 43, 226, 0.2);
}

footer {
    background-color: #1a1a1a;
    padding: 15px;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

footer a {
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
}

.game-thumb {
    width: 300px;   
    height: 120px;  
    object-fit: cover; 
    border-radius: 8px; 
  }
  
.pin-thumb {
    width: 300px;   
    height: 300px;  
    object-fit: cover; 
    border-radius: 8px; 
  }  