:root {
    --bg-color: #ADD8E6;
    --card-bg: rgba(255, 255, 255, 0.4);
    --text-color: #2c3e50;
    --accent-color: #3498db;
    --header-bg: rgba(255, 255, 255, 0.7);
    --border-radius: 20px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --title-font: 'Luckiest Guy', cursive;
    --body-font: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
nav a {
    font-family: var(--title-font);
    letter-spacing: 2px;
}

/* Header & Banner */
header {
    width: 100%;
    position: relative;
}

.banner-container {
    width: 100%;
    position: relative;
    max-height: 500px;
    overflow: hidden;
}

#hero-banner {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.live-indicator-wrapper {
    position: absolute;
    top: 20px;
    right: 20px;
}

.live-indicator {
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    cursor: default;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.live-indicator .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #95a5a6;
}

.live-indicator.live .dot {
    background: #e74c3c;
    box-shadow: 0 0 10px #e74c3c;
    animation: pulse 1.5s infinite;
}

.hover-tip {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: #2c3e50;
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

.live-indicator:hover .hover-tip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

nav {
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

nav a:hover,
nav a.active-nav {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Main Content Area */
main,
.more-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

section {
    scroll-margin-top: 100px;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.15);
}

.section-title-img {
    max-width: 250px;
    margin-bottom: 25px;
    display: block;
}

/* Sections Specifics */
.flex-row {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pfp-container {
    flex-shrink: 0;
}

.pfp {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-list p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.fancy-list {
    list-style: none;
}

.fancy-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Schedule */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.day {
    background: rgba(255, 255, 255, 0.5);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-size: 0.9rem;
    position: relative;
    cursor: help;
    transition: var(--transition);
}

.day span {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.day:hover {
    background: white;
    transform: scale(1.05);
}

.day::after {
    content: attr(data-message);
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: #2c3e50;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 10;
}

.day:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: 120%;
}

.day.active {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

/* Commands */
.commands-search input {
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.command-item {
    background: rgba(255, 255, 255, 0.6);
    padding: 20px;
    border-radius: 15px;
    transition: var(--transition);
}

.command-name {
    display: block;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

/* Buttons */
.button-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 25px 0;
}

.btn {
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.primary-btn {
    background: #3498db;
    color: white;
}

.secondary-btn {
    background: #2ecc71;
    color: white;
}

.tertiary-btn {
    background: #9b59b6;
    color: white;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    filter: brightness(1.1);
}

/* Social links grid */
.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.social-btn {
    display: block;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: white;
    font-weight: 700;
    transition: var(--transition);
}

.social-btn.yt {
    background: #ff0000;
}

.social-btn.twitch {
    background: #9146ff;
}

.social-btn.discord {
    background: #5865f2;
}

.social-btn.tiktok {
    background: #000000;
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Extra Panels */
.footer-panels {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.panel-row {
    display: flex;
    gap: 20px;
}

.panel-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    padding: 0;
    border-radius: var(--border-radius);
    height: 250px;
    background: transparent;
    /* Changed from white to transparent */
}

.panel-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* "Zoom out" effect */
    display: block;
}

.panel-overlay,
.panel-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.8);
    color: white;
    padding: 20px;
    backdrop-filter: blur(5px);
    transform: translateY(100%);
    transition: var(--transition);
}

.panel-card:hover .panel-overlay,
.panel-card:hover .panel-info {
    transform: translateY(0);
}

.mini-btn {
    display: inline-block;
    padding: 5px 15px;
    background: var(--accent-color);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.8rem;
    margin-top: 10px;
}

/* Footer */
footer {
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    padding: 60px 20px;
    text-align: center;
    margin-top: 50px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    transition: var(--transition);
}

.social-icons img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.social-icons a:hover {
    transform: translateY(-8px) rotate(8deg);
}

/* Responsive */
@media (max-width: 768px) {
    .flex-row {
        justify-content: center;
        text-align: center;
    }

    nav ul {
        gap: 15px;
    }

    nav a {
        font-size: 0.75rem;
    }

    .glass-card {
        padding: 25px;
    }

    .panel-row {
        flex-direction: column;
    }
}