/* ========================================
   1. FULL RESET & DARK PURPLE → PINKISH-PURPLE GRADIENT
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: linear-gradient(135deg,
        #1a0b2e 0%,    /* Deep midnight purple */
        #2d1b69 50%,   /* Rich indigo */
               #8b1ab8 75%,   /* Deep magenta-purple */
#9932CC 100%   /* Your perfect dark pinkish-purple */
    );
    background-attachment: fixed;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    text-align: center;
}

/* ========================================
   2. BODY & CONTAINER — FULL HEIGHT
   ======================================== */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    min-height: 100vh;
}

/* ========================================
   3. TITLE — NO UNDERLINE
   ======================================== */
.title {
    font-family: Consolas, "Andale Mono", "Lucida Console", Monaco, "Courier New", monospace;
    font-weight: normal;
    font-size: 72px;
    text-transform: uppercase;
    margin: 20px 0;
    line-height: 1;
}
.title a {
    color: #fff;
    text-decoration: none !important;
}

/* ========================================
   4. MENU BAR — NOW WITH HORIZONTAL DROPDOWN
   ======================================== */
.menu-bar {
    width: 100%;
    padding: 10px 0;
    background: rgba(0,0,0,.5);
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
}
.menu-bar a {
    color: #FFE1AA;
    text-decoration: none;
    font-size: 18px;
}
.menu-bar a:hover {
    text-decoration: underline;
}

.dropdown-container {
    position: relative;
    display: inline-block;
}

/* HORIZONTAL DROPDOWN — KEY CHANGE */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,.7);
    padding: 12px 20px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
    z-index: 10;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    
    /* HORIZONTAL LAYOUT */
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.dropdown a {
    color: #fff;
    display: inline-block;
    margin: 0;
    font-size: 16px;
    padding: 6px 0;
    transition: color 0.2s ease;
}
.dropdown a:hover {
    color: #FFE1AA;
    text-decoration: underline;
}

/* Show on hover */
.menu-bar .dropdown-container:hover .dropdown,
.dropdown:hover {
    display: flex !important;   /* Force flex for horizontal */
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(4px);
}

/* ========================================
   5. PAGE TITLE & BOXES
   ======================================== */
.page-title {
    width: 100%;
    padding: 10px 0;
    margin-bottom: 50px;
    font-size: 24px;
    text-transform: uppercase;
    background: transparent;
color: #FFE1AA;
}

.boxes-container {
    width: 100%;
}
.boxes {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}
.box {
    flex: 1 1 30%;
    min-width: 250px;
    border: 1px solid #FFE1AA;
    display: flex;
    flex-direction: column;
}
.box-top {
    background: #ff00ff;
    padding: 5px;
    color: #fff;
    font-size: 14px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
color: #FFE1AA;
}
.box-bottom {
    background: #fff;
    flex: 1;
    padding: 10px;
    color: #1e1a3c;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box-bottom img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   6. LIGHTBOX
   ======================================== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
gap: 40px; 
    z-index: 1000;
}
.lightbox.active {
    display: flex;
}
.lightbox-content img,
.lightbox-content video {
    max-width: 80%;
    max-height: 75vh;
    object-fit: contain;
}
.lightbox-caption {
    color: #FFE1AA;
    margin-top: 0;
    max-width: 80%;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #FFE1AA;
    font-size: 40px;
    cursor: pointer;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
.lightbox-prev, .lightbox-next {
    color: #FFE1AA;
    font-size: 40px;
    padding: 0 20px;
    cursor: pointer;
}
.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-close:hover {
    color: #fff;
}

/* ========================================
   7. LINK DEFAULTS
   ======================================== */
a {
    color: inherit;
}
a:hover {
    text-decoration: underline;
}

