:root {
    --brand-dark: #0a0a0a;
    --brand-darker: #050505;
    --brand-red: #d32f2f;
    --brand-neon: #ccff00;
    --text-main: #cccccc;
    --border-color: #222222;
}

body {
    background-color: var(--brand-dark);
    color: var(--text-main);
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

.oswald-font {
    font-family: 'Digital Numbers', sans-serif;
    text-transform: uppercase;
}

.text-brand-red {
    color: var(--brand-red) !important;
}

.text-brand-neon {
    color: var(--brand-neon) !important;
}

.bg-brand-neon {
    background-color: var(--brand-neon) !important;
    color: #000 !important;
}

/* Buttons */
.btn-neon {
    background-color: var(--brand-neon);
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 0;
    padding: 8px 20px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.btn-neon:hover {
    background-color: #aacc00;
    color: #000;
}

.btn-outline-neon {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-main);
    border-radius: 0;
    padding: 8px 20px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.btn-outline-neon:hover {
    border-color: var(--brand-neon);
    color: var(--brand-neon);
}

/* Layout */
.sidebar {
    background-color: var(--brand-darker);
    border-right: 1px solid var(--border-color);
    height: 100vh;
    position: sticky;
    top: 0;
    overflow-y: auto;
    padding: 20px 0;
}

/* Custom Scrollbar for Sidebar */
.sidebar::-webkit-scrollbar {
    width: 5px;
}

.sidebar::-webkit-scrollbar-track {
    background: var(--brand-darker);
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--border-color);
}

.main-content {
    padding-bottom: 50px;
}

/* Sidebar Elements */
.sidebar-section {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    border-left: 2px solid var(--brand-red);
    padding-left: 10px;
}

.icon-text-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.icon-text-row i {
    color: var(--text-main);
    font-size: 1.2rem;
    width: 30px;
    margin-top: 3px;
}

.class-box {
    border: 1px solid var(--border-color);
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    background: #111;
}

.class-box.pro {
    border-left: 3px solid var(--brand-red);
}

.class-box.reborn {
    border-left: 3px solid var(--brand-neon);
}

.class-title {
    font-size: 1.2rem;
    font-weight: bold;
    width: 80px;
    line-height: 1.1;
}

.class-desc {
    font-size: 0.8rem;
    margin-left: 10px;
}

.social-icons a {
    color: #fff;
    margin-right: 10px;
    font-size: 1.2rem;
    text-decoration: none;
}

/* Main Nav */
.top-nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.top-nav a:hover {
    color: var(--brand-neon);
}

/* Hero Section */
.hero-section {
    border-bottom: 1px solid var(--border-color);
}

.hero-title {
    font-size: 5rem;
    line-height: 1;
    margin: 0;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #fff;
    margin-top: 10px;
}

.img-wrapper {
    position: relative;
    display: inline-block; /* Keeps container size to image size */
}

.hero-title-loc {
    font-size: 3rem;
    line-height: 1;
    margin: 0;
    color: #fff;
}

.hero-subtitle-loc {
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #fff;
    margin-top: 10px;
}

.stats-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid #444;
    padding: 5px 15px;
    border-radius: 20px;
    font-family: 'Oswald', sans-serif;
    margin: 20px 0;
    background: rgba(0, 0, 0, 0.5);
}

/* Countdown & Quick Info */
.countdown-number {
    font-size: 2rem;
    color: var(--brand-neon);
}

.countdown-label {
    font-size: 0.8rem;
    color: #fff;
    letter-spacing: 1px;
}

.info-grid-box {
    border-right: 1px solid var(--border-color);
    padding: 10px 20px;
    display: flex;
    align-items: center;
}

.info-grid-box:last-child {
    border-right: none;
}

.info-grid-box i {
    font-size: 1.5rem;
    color: #666;
    margin-right: 15px;
}

.info-grid-title {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0;
    text-transform: uppercase;
}

.info-grid-val {
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 0;
    line-height: 1.2;
}

/* Content Sections */
.content-section {
    padding: 40px 20px;
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    font-size: 1.5rem;
    color: #fff;
    border-left: 3px solid #fff;
    padding-left: 15px;
    margin-bottom: 30px;
}

/* Lists */
ul.custom-list {
    list-style: none;
    padding-left: 0;
}

ul.custom-list li {
    position: relative;
    margin-bottom: 10px;
    color: #ccc;
}


.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.day-title {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
}

.day-title i {
    margin-right: 10px;
}

.date-badge {
    text-align: right;
    color: var(--brand-neon);
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    line-height: 1.1;
}

.date-badge i {
    font-size: 4rem;
    color: var(--brand-neon);
    margin-bottom: 5px;
}

/* Gallery */
.gallery-img {
    width: 100%;
    border: 1px solid #333;
    transition: 0.3s;
}

.gallery-img:hover {
    border-color: var(--brand-red);
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .sidebar {
        height: auto;
        position: relative;
    }

    .info-grid-box {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 15px 0;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}
@media screen and (min-width: 769px) {
    .img-wrapper::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /* Define your gradient here */
        background: linear-gradient(to right, rgba(10, 10, 10, 1) 1%, rgba(10, 10, 10, 0.001)) center/cover no-repeat;
        pointer-events: none; /* Allows users to click 'through' to the image */
    }
}
