/* Add this to the .logo-container img style in the code I gave you */
.logo-container img {
    max-width: 400px;
    width: 90%;
    height: auto;
    /* This makes the black background of your JPG invisible on a dark site */
    mix-blend-mode: screen;
    filter: brightness(1.2) contrast(1.1);
}

:root {
    --cyan: #00f2ff;
    --purple: #bc13fe;
    --dark-bg: #050505;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--dark-bg);
    background-image: radial-gradient(circle at center, #1a0b2e 0%, #050505 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Navigation & Burger Menu */
nav {
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.burger-menu {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.burger-menu span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*justify-content: center;*/
    text-align: center;
    padding: 50px 20px 20px 20px;
    /*padding-top: 50px;*/
    position: relative;
}

.logo-container img {
    max-width: 250px;
    width: 80%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(188, 19, 254, 0.6));
    margin-bottom: 50px;
}

/* Buttons Group */
.btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
    min-width: 150px;
}

.btn-cyan {
    border: 2px solid var(--cyan);
    box-shadow: inset 0 0 10px rgba(0, 242, 255, 0.2), 0 0 15px rgba(0, 242, 255, 0.3);
}

.btn-cyan:hover {
    background: var(--cyan);
    color: black;
    box-shadow: 0 0 30px var(--cyan);
}

.btn-purple {
    border: 2px solid var(--purple);
    box-shadow: inset 0 0 10px rgba(188, 19, 254, 0.2), 0 0 15px rgba(188, 19, 254, 0.3);
}

.btn-purple:hover {
    background: var(--purple);
    box-shadow: 0 0 30px var(--purple);
}

/* Footer */
footer {
    padding: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

.timestamp {
    color: #ccc;
    margin-bottom: 10px;
}

/* Background Smoke Effect (Decorative) */
.smoke-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
    opacity: 0.2;
    pointer-events: none;
}

@media (max-width: 600px) {
    .btn-group {
        flex-direction: column;
        width: 80%;
    }

    .btn {
        width: 100%;
    }
}

/* ==============================
   Sidebar (Left expandable menu)
   ============================== */

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 280px;
  background: linear-gradient(180deg, #0b0218 0%, #050505 100%);
  border-right: 1px solid rgba(188, 19, 254, 0.25);
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.8);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1001;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar.open {
  transform: translateX(0);
}

/* Close button */
.sidebar .closebtn {
  align-self: flex-end;
  font-size: 32px;
  color: var(--cyan);
  text-decoration: none;
  margin-bottom: 10px;
  text-shadow: 0 0 10px var(--cyan);
}

.sidebar .closebtn:hover {
  color: white;
}

/* Sidebar links */
.sidebar a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 12px 10px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.sidebar a:hover {
  background: rgba(0, 242, 255, 0.1);
  box-shadow: inset 0 0 15px rgba(0, 242, 255, 0.25);
  color: var(--cyan);
}

/* Overlay behind sidebar */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.bottom-fixed {
  position: absolute;
  bottom: 0;
  text-align: center;
  padding: 16px 0;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
  z-index: 1001;
}


.input-enex {
    background: #0b0218;
    border: 2px solid var(--cyan);
    color: white;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    margin-bottom: 18px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 10px rgba(0,242,255,0.08);
    width: 100%;
}

.input-enex:focus {
    border-color: var(--purple);
    box-shadow: 0 0 20px var(--purple), 0 0 8px var(--cyan);
    background: #1a0b2e;
}

.input-enex::placeholder {
    color: #bc13fe;
    opacity: 0.7;
    font-style: italic;
}

label {
    color: var(--cyan);
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    letter-spacing: 0.5px;
}
