/* General Page Style */
body {
    color: white;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    overflow-x: hidden;

    /* Static, fixed background */
    background-image: url('img/Untitled\ design\ \(4\).png');
    background-size: cover;           
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;   
}

h1 {
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 5rem;
    color: black;           
    letter-spacing: 0.05em;
  
    /* Animated neon glow */
    text-shadow:
      0 0 10px black,
      0 0 20px black,
      0 0 30px black,
      0 0 40px black;
    animation: neonPulse 1.5s infinite alternate;
    margin: 40px 0;
    text-align: center;
  }
  

h2 {

    text-shadow: 0 0 10px #00eaff;
}

/* Booth container */
.booth {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px auto;
}

/* Video container */
.video-container {
    position: relative;
    border: 10px solid #0077ff; /* blue base */
    border-radius: 20px;
    box-shadow: 
        0 0 20px #0077ff,   /* blue glow */
        0 0 40px #8000ff,   /* purple glow */
        0 0 60px #0077ff,   /* alternating for depth */
        0 0 80px #8000ff;   /* purple glow outer */
    overflow: hidden;
    background: black;
    transition: box-shadow 0.5s ease; /* optional smooth effect */
}

/* Camera video */
#video {
    width: 900px;
    height: 550px;
    object-fit: cover;
    border-radius: 10px;
}

/* Buttons container */
.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* Buttons */
button {
    background: linear-gradient(135deg, #0077ff, #8000ff); /* Blue → Purple gradient */
    border: none;
    color: white;
    font-size: 1.1em;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 119, 255, 0.6), 0 0 20px rgba(128, 0, 255, 0.6);
    text-transform: uppercase; 
}

/* Hover effect */
button:hover {
    transform: scale(1.08);
    box-shadow: 
        0 6px 20px rgba(0, 119, 255, 0.7), 
        0 0 30px rgba(128, 0, 255, 0.7), 
        0 0 40px rgba(0, 119, 255, 0.5);
}


/* Gallery */
#gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px auto;
    gap: 15px;
    max-width: 90%;
}

#gallery img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border: 3px solid #0077ff;
    border-radius: 10px;
    box-shadow: 0 0 20px #0077ff;
    transition: transform 0.3s;
}

#gallery img:hover {
    transform: scale(1.1);
}

