/* styles.css - All your site styling in one clean file */

/* Main layout */
html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    color: #fff;
    background: url('img/wp.jpg') no-repeat center center fixed;
    background-size: cover;
}
body {
    display: flex;
    flex-direction: row;
}
main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Glass cards */
.glass {
    background: rgba(20, 20, 50, 0.35);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 240, 255, 0.08);
    padding: 35px;
    width: 100%;
    transition: all 0.4s ease;
}
.glass:hover {
    box-shadow: 0 16px 48px rgba(0, 240, 255, 0.25), inset 0 0 30px rgba(0, 240, 255, 0.12);
    backdrop-filter: blur(26px);
}

/* Section layout – tight spacing */
.section-group {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    margin-bottom: 30px; /* Tight – feel free to drop to 20px or 25px */
    align-items: stretch;
}
.section-group:last-child {
    margin-bottom: 0;
}
.section-group > * {
    flex: 1 1 50%;
    min-width: 0;
}
@media (max-width: 992px) {
    .section-group {
        flex-wrap: wrap;
    }
    .section-group > * {
        flex: 1 1 100%;
    }
}

/* Text & headings */
h1 {
    font-size: 3.2em;
    text-align: center;
    margin: 25px 0 40px;
    font-weight: bold;
    text-shadow: 0 0 16px rgba(0, 240, 255, 0.5);
}
h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}
p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 18px;
    font-weight: 500;
    text-shadow: 0 1px 4px #000;
}

/* Bio image */
.bio-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}
.bio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.2);
}
.overlay-quote {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    text-align: center;
    font-style: italic;
    font-size: 1.5em;
    background: rgba(0, 0, 0, 0.65);
    padding: 18px;
    text-shadow: 0 0 12px #000;
}

/* Buttons – consistent neon cyan/green */
.watch-btn,
.download-link,
.review-btn {
    display: block;
    text-align: center;
    background: rgba(0, 240, 255, 0.35);
    color: #fff;
    padding: 15px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    margin: 15px auto 0;
    max-width: 320px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.watch-btn::before,
.download-link::before,
.review-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}
.watch-btn:hover::before,
.download-link:hover::before,
.review-btn:hover::before {
    left: 100%;
}
.watch-btn:hover,
.download-link:hover,
.review-btn:hover {
    background: rgba(0, 240, 255, 0.6);
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.8);
}

/* Neon vars */
:root {
    --neon-blue: #00f0ff;
    --neon-pink: #ff00ff;
    --neon-green: #00ff00;
}

/* Calendar */
.calendar-container {
    border-radius: 14px;
    overflow: hidden;
    background: transparent;
    padding: 12px;
}
.calendar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
}
.day {
    background: rgba(0, 0, 0, 0.4);
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    color: var(--neon-blue);
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid var(--neon-pink);
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.6), inset 0 -4px 10px rgba(0, 0, 0, 0.6);
    transition: all 0.3s;
}
.day:hover {
    transform: scale(1.08);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 240, 255, 0.4);
    filter: brightness(1.2);
}
.live-now {
    border: 2px solid var(--neon-green);
    animation: neon-pulse 1.6s infinite;
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.6), 0 0 20px var(--neon-green);
}
.category {
    font-size: 1em;
    color: var(--neon-green);
    margin-top: 8px;
    text-shadow: 0 0 8px var(--neon-green);
    animation: flicker 2s infinite alternate;
}
.schedule-text {
    font-size: 0.9em;
    margin-top: 8px;
    text-shadow: 0 0 6px var(--neon-blue);
}
@keyframes neon-pulse {
    0%, 100% { box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.6), 0 0 15px var(--neon-green); }
    50% { box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.6), 0 0 25px var(--neon-green); }
}
@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Discord widget */
.widget {
    width: 100%;
    background: transparent;
    border: 2px solid var(--neon-blue);
    border-radius: 14px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    overflow: hidden;
    position: relative;
}
.header {
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    padding: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%);
    animation: s 4s infinite;
}
@keyframes s {
    100% { transform: translateX(100%); }
}
.name {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
    color: #fff;
    text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
    animation: g 2.5s infinite;
}
.name::before, .name::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.name::before {
    color: var(--neon-blue);
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    animation: g1 0.25s infinite;
}
.name::after {
    color: var(--neon-pink);
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    animation: g2 0.25s infinite;
}
@keyframes g {
    0%, 100% { text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue); }
    50% { text-shadow: 0 0 15px var(--neon-blue), 0 0 25px var(--neon-blue); }
}
@keyframes g1 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-3px); }
}
@keyframes g2 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3px); }
}
.members {
    max-height: 240px;
    overflow: hidden;
    position: relative;
    background: rgba(10, 5, 30, 0.7);
    backdrop-filter: blur(6px);
}
.member {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.15);
}
.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    margin-right: 12px;
    border: 1px solid var(--neon-blue);
}
.uname {
    flex: 1;
    font-size: 1em;
    color: #fff;
    text-shadow: 0 0 6px var(--neon-blue);
}
.status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 10px;
}
.online { background: #0f0; box-shadow: 0 0 8px #0f0; }
.idle { background: #fa0; box-shadow: 0 0 8px #fa0; }
.dnd { background: #f00; box-shadow: 0 0 8px #f00; }
.join {
    display: block;
    margin: 12px 18px;
    padding: 10px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.6);
    transition: .3s;
    position: relative;
    overflow: hidden;
}
.join::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}
.join:hover::before { left: 100%; }
.join:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 240, 255, 0.9);
}
.grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 240, 255, .12) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 240, 255, .12) 1px, transparent 1px);
    background-size: 25px 25px;
    pointer-events: none;
    z-index: -1;
}
@keyframes p {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* Player */
.player-container {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}
#kick-player {
    width: 100%;
    height: 100%;
    background: #000;
    display: none;
}
#kick-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6em;
    color: #aaa;
    text-shadow: 0 0 12px #000;
    border: 2px solid rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

/* Sticky left nav */
.sidebar-nav {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    width: 80px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(20, 20, 50, 0.35);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 20px;
    padding: 20px 10px;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.25);
}
.nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    background: rgba(0, 240, 255, 0.15);
    color: #fff;
    font-size: 0.8em;
    font-weight: bold;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.2);
    position: relative;
    overflow: hidden;
}
.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}
.nav-btn:hover::before { left: 100%; }
.nav-btn:hover {
    background: rgba(0, 240, 255, 0.5);
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
}
.nav-btn.live {
    background: rgba(0, 255, 0, 0.4);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 15px rgba(0, 255, 0, 0.4); }
    50% { box-shadow: 0 0 30px rgba(0, 255, 0, 0.8); }
}
@media (max-width: 992px) {
    .sidebar-nav { display: none; }
}

/* Download popup */
#download-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 30, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
#download-overlay.active { display: flex; opacity: 1; }
.download-modal {
    background: rgba(20, 20, 50, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 240, 255, 0.35);
    border-radius: 24px;
    box-shadow: 0 20px 80px rgba(0, 240, 255, 0.4), inset 0 0 40px rgba(0, 240, 255, 0.15);
    padding: 40px;
    max-width: 600px;
    width: 90%;
    color: #fff;
    position: relative;
    text-align: center;
    animation: modalPop 0.4s ease;
}
@keyframes modalPop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.download-modal h3 {
    margin: 0 0 20px;
    font-size: 2.2em;
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.7);
}
.download-modal p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ddd;
}
.download-btn {
    display: inline-block;
    padding: 18px 50px;
    background: rgba(0, 240, 255, 0.55);
    color: #fff;
    font-size: 1.4em;
    font-weight: bold;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
    transition: all 0.3s;
}
.download-btn:hover {
    background: rgba(0, 240, 255, 0.85);
    transform: scale(1.08);
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.9);
}
.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2em;
    color: #aaa;
    cursor: pointer;
    transition: all 0.3s;
}
.close-modal:hover {
    color: #ff6666;
    transform: rotate(90deg);
}

/* Reviews section – compact cards */
.product-preview {
    width: 100%;
    max-width: 200px;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    display: block;
    margin: 15px auto 10px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.3);
}
.review-btn {
    background: rgba(0, 240, 255, 0.45) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 14px !important;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5) !important;
    transition: all 0.3s !important;
    font-weight: bold !important;
    cursor: pointer !important;
    padding: 10px 20px !important;
    font-size: 0.95em !important;
    width: 90% !important;
    max-width: 220px !important;
    margin: 0 auto !important;
    display: block !important;
}
.review-btn:hover {
    background: rgba(0, 240, 255, 0.75) !important;
    transform: scale(1.05) translateY(-2px) !important;
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.8) !important;
}
.review-btn:focus,
.review-btn:active {
    outline: none !important;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5) !important;
}
#reviews-list > div {
    background: rgba(20, 20, 50, 0.4);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
#reviews-list > div:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 240, 255, 0.4);
}