/* ========================================
   Color Palette - Hypnosis Theme
   ======================================== */

:root {
    --color-void: #150b26;
    --color-deep: #1e1033;
    --color-mid: #2d1f4e;
    --color-vivid: #7c3aed;
    --color-lavender: #b794f6;
    --color-pink: #e84393;
    --color-light: #f3eeff;
    --color-pale: #fdf2f8;

    --color-glow-purple: rgba(124, 58, 237, 0.35);
    --color-glow-pink: rgba(232, 67, 147, 0.3);

    --sidebar-width: 250px;
    --topbar-height: 50px;
    --transition-speed: 0.3s;
}

/* ========================================
   Base
   ======================================== */

body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    background: linear-gradient(160deg, #1a0f30 0%, #0f0a1e 40%, #170d2e 100%);
    color: #e0d6f2;
    min-height: 100vh;
}

a {
    color: var(--color-lavender);
}

a:hover,
a:focus {
    color: #d4b8ff;
}

h1, h2, h3, h4, h5, h6 {
    color: #f0e8ff;
}

p {
    color: #c8bade;
}

/* ========================================
   Bootstrap Overrides
   ======================================== */

.btn-primary {
    background: linear-gradient(135deg, var(--color-vivid), #9b59d9);
    border-color: #6c2bd4;
    box-shadow: 0 2px 12px var(--color-glow-purple);
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: linear-gradient(135deg, #8b4ce6, var(--color-pink));
    border-color: #7c3aed;
    box-shadow: 0 4px 20px var(--color-glow-purple), 0 2px 12px var(--color-glow-pink);
    color: #fff;
}

.btn-default {
    background-color: rgba(45, 31, 78, 0.6);
    border-color: #5a3d8a;
    color: var(--color-lavender);
}

.btn-default:hover,
.btn-default:focus {
    background-color: var(--color-mid);
    border-color: var(--color-vivid);
    color: #fff;
}

.btn-lg {
    box-shadow: 0 4px 20px var(--color-glow-purple);
}

.btn-lg:hover {
    box-shadow: 0 6px 28px var(--color-glow-purple), 0 2px 16px var(--color-glow-pink);
}

/* Alert overrides for dark theme */
.alert-danger {
    background-color: rgba(185, 28, 28, 0.2);
    border-color: #991b1b;
    color: #fca5a5;
}

.alert-success {
    background-color: rgba(22, 101, 52, 0.2);
    border-color: #166534;
    color: #86efac;
}

.alert-info {
    background-color: rgba(124, 58, 237, 0.15);
    border-color: var(--color-vivid);
    color: var(--color-lavender);
}

/* Panel overrides for dark theme */
.panel {
    background-color: rgba(21, 11, 38, 0.6);
    border-color: rgba(124, 58, 237, 0.2);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.panel-body {
    color: #c8bade;
}

.panel-primary {
    border-color: rgba(124, 58, 237, 0.3);
}

.panel-primary > .panel-heading {
    background: linear-gradient(135deg, var(--color-vivid), #6c2bd4);
    border-color: rgba(124, 58, 237, 0.3);
    color: #fff;
}

.panel-danger {
    border-color: rgba(185, 28, 28, 0.4);
}

.panel-danger > .panel-heading {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    border-color: rgba(185, 28, 28, 0.4);
    color: #fff;
}

.panel-default {
    border-color: rgba(124, 58, 237, 0.2);
}

.panel-default > .panel-heading {
    background-color: rgba(45, 31, 78, 0.6);
    border-color: rgba(124, 58, 237, 0.15);
    color: #f0e8ff;
}

.panel-footer {
    background-color: rgba(30, 16, 51, 0.5);
    border-color: rgba(124, 58, 237, 0.15);
    color: #8b7aaa;
}

/* Community activity feed on Default page */
.activity-feed {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activity-feed li {
    padding: 8px 4px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.15);
    color: var(--color-lavender);
    font-size: 14px;
}

.activity-feed li:last-child {
    border-bottom: none;
}

.activity-feed .glyphicon {
    margin-right: 6px;
}

.activity-feed .activity-time {
    float: right;
    color: #8b7aaa;
    font-size: 12px;
}

/* Table overrides for dark theme */
.table {
    color: #e0d6f2;
}

.table > thead > tr > th {
    border-bottom-color: rgba(124, 58, 237, 0.25);
    color: var(--color-lavender);
    background-color: rgba(45, 31, 78, 0.5);
}

.table > tbody > tr > td {
    border-top-color: rgba(124, 58, 237, 0.1);
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: rgba(30, 16, 51, 0.4);
}

.table-striped > tbody > tr:nth-of-type(even) {
    background-color: rgba(21, 11, 38, 0.3);
}

.table-hover > tbody > tr:hover {
    background-color: rgba(45, 31, 78, 0.5);
}

.table > tbody > tr > td a {
    color: var(--color-lavender);
}

.table > tbody > tr > td a:hover {
    color: #d4b8ff;
}

/* Breadcrumb override for dark theme */
.breadcrumb {
    background-color: rgba(30, 16, 51, 0.5);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 4px;
    color: #8b7aaa;
}

.breadcrumb > li + li::before {
    color: #5a3d8a;
}

.breadcrumb > .active {
    color: #8b7aaa;
}

/* Badge override for dark theme */
.badge {
    background-color: var(--color-vivid);
    color: #fff;
}

/* Label overrides for dark theme */
.label-primary {
    background-color: var(--color-vivid);
}

.label-info {
    background-color: rgba(124, 58, 237, 0.5);
    color: var(--color-lavender);
}

.label-warning {
    background-color: rgba(232, 67, 147, 0.5);
    color: #fce7f3;
}

.label-success {
    background-color: rgba(22, 101, 52, 0.6);
    color: #86efac;
}

.label-default {
    background-color: rgba(45, 31, 78, 0.6);
    color: #8b7aaa;
}

.label-danger {
    background-color: rgba(185, 28, 28, 0.5);
    color: #fca5a5;
}

.label-expired {
    background-color: rgba(139, 90, 43, 0.7);
    color: #e8c98a;
}

.label-purple {
    background-color: rgba(124, 58, 237, 0.5);
    color: #d8b4fe;
}

/* ========================================
   Sidebar
   ======================================== */

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--sidebar-width);
    background: linear-gradient(180deg, var(--color-deep) 0%, #120a22 100%);
    color: var(--color-lavender);
    z-index: 1040;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-speed) ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-right: 1px solid rgba(124, 58, 237, 0.15);
}

.sidebar-brand {
    background-color: var(--color-void);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--topbar-height);
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.sidebar-brand a {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 0 0 12px var(--color-glow-purple);
}

.sidebar-brand a:hover {
    text-decoration: none;
    color: #fff;
}

.sidebar-toggle {
    background: none;
    border: none;
    color: var(--color-lavender);
    font-size: 18px;
    cursor: pointer;
    padding: 5px 8px;
    line-height: 1;
}

.sidebar-toggle:hover {
    color: #fff;
}

/* CTA button */
.sidebar-cta {
    padding: 12px 16px;
}

.sidebar-cta-btn {
    display: block;
    text-align: center;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--color-pink), #d63384);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 2px 12px var(--color-glow-pink);
    transition: box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.sidebar-cta-btn:hover,
.sidebar-cta-btn:focus {
    background: linear-gradient(135deg, #f25cad, var(--color-pink));
    box-shadow: 0 4px 20px var(--color-glow-pink), 0 0 8px var(--color-glow-purple);
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

.sidebar-cta-btn .glyphicon {
    margin-right: 6px;
}

/* Nav links */
.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    flex: 1;
}

.sidebar-nav li a {
    display: block;
    padding: 12px 20px;
    color: var(--color-lavender);
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.sidebar-nav li a:hover {
    background-color: var(--color-mid);
    color: #fff;
    text-decoration: none;
}

.sidebar-nav li.active a {
    color: #fff;
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.25), transparent);
    border-left: 3px solid var(--color-pink);
    box-shadow: inset 0 0 20px rgba(124, 58, 237, 0.1);
}

.sidebar-nav li a .glyphicon {
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

/* Sidebar sub-menu */
.sidebar-submenu-toggle {
    position: relative;
}

.sidebar-submenu-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    transition: transform 0.2s ease;
}

.sidebar-submenu.open .sidebar-submenu-arrow {
    transform: translateY(-50%) rotate(90deg);
}

.sidebar-submenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    background-color: rgba(21, 11, 38, 0.4);
}

.sidebar-submenu.open .sidebar-submenu-list {
    max-height: 220px;
}

.sidebar-submenu-list li a {
    padding: 10px 20px 10px 36px;
    font-size: 13px;
}

.sidebar-submenu-list li a .glyphicon {
    font-size: 11px;
}

/* Sidebar footer (auth links) */
/* Theme picker */
.sidebar-theme-picker {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px 14px;
    color: #7a6b99;
    font-size: 12px;
}

.sidebar-theme-picker .glyphicon {
    flex-shrink: 0;
}

.sidebar-theme-picker .form-control {
    height: 28px;
    font-size: 12px;
    padding: 2px 8px;
    max-width: 100%;
}

.sidebar-footer {
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    padding: 10px 0;
}

.sidebar-footer .sidebar-nav {
    margin: 0;
}

/* ========================================
   Main Content
   ======================================== */

.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: margin-left var(--transition-speed) ease;
}

.main-content .content-body {
    flex: 1;
    padding: 20px 30px;
}

.main-content footer {
    padding: 15px 30px;
    border-top: 1px solid rgba(124, 58, 237, 0.15);
    color: #7a6b99;
}

/* ========================================
   Top Bar (mobile / collapsed)
   ======================================== */

.topbar {
    display: none;
    background-color: var(--color-void);
    padding: 10px 15px;
    min-height: var(--topbar-height);
    align-items: center;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.topbar .topbar-toggle {
    background: none;
    border: none;
    color: var(--color-lavender);
    font-size: 18px;
    cursor: pointer;
    padding: 5px 8px;
    line-height: 1;
}

.topbar .topbar-toggle:hover {
    color: #fff;
}

.topbar .topbar-brand {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-left: 15px;
    text-decoration: none;
    text-shadow: 0 0 12px var(--color-glow-purple);
}

.topbar .topbar-brand:hover {
    text-decoration: none;
    color: #fff;
}

/* Mobile overlay backdrop */
.sidebar-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 5, 20, 0.75);
    z-index: 1030;
}

/* ========================================
   Desktop: Sidebar collapse
   ======================================== */
@media screen and (min-width: 768px) {
    .sidebar-collapsed .sidebar {
        transform: translateX(calc(-1 * var(--sidebar-width)));
    }

    .sidebar-collapsed .main-content {
        margin-left: 0;
    }

    .sidebar-collapsed .topbar {
        display: flex;
    }
}

/* ========================================
   Mobile: Sidebar overlay
   ======================================== */
@media screen and (max-width: 767px) {
    .sidebar {
        transform: translateX(calc(-1 * var(--sidebar-width)));
    }

    .main-content {
        margin-left: 0;
    }

    .topbar {
        display: flex;
    }

    .sidebar-open .sidebar {
        transform: translateX(0);
    }

    .sidebar-open .sidebar-backdrop {
        display: block;
    }
}

/* ========================================
   Form / Content Styles
   ======================================== */

input,
select,
textarea {
    max-width: 280px;
}

.form-control,
.form-control[readonly],
.form-control[disabled],
select.form-control,
.input-group .form-control {
    background-color: rgba(30, 16, 51, 0.6);
    border-color: #5a3d8a;
    color: #e0d6f2;
}

.form-control:focus {
    background-color: rgba(30, 16, 51, 0.8);
    border-color: var(--color-vivid);
    color: #f0e8ff;
    box-shadow: 0 0 8px var(--color-glow-purple);
}

.form-control::placeholder {
    color: #7a6b99;
}

select.form-control option {
    background-color: #1e1033;
    color: #e0d6f2;
}

.page-header {
    margin-top: 0;
    padding-bottom: 9px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    color: #f0e8ff;
}

.jumbotron {
    padding: 60px 40px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(21, 11, 38, 0.75), rgba(45, 31, 78, 0.65)),
                url('/img/galaxy-hero.jpg') center center / cover no-repeat;
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(124, 58, 237, 0.15), inset 0 1px 0 rgba(183, 148, 246, 0.1);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jumbotron h1 {
    margin-top: 0;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6), 0 0 30px var(--color-glow-purple);
}

.jumbotron .lead {
    color: #e0d6f2;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.well {
    background-color: rgba(45, 31, 78, 0.4);
    border-color: rgba(124, 58, 237, 0.2);
    color: #c8bade;
}

/* Row feature columns on home page */
.row h2 {
    color: var(--color-lavender);
    font-size: 20px;
    border-bottom: 2px solid rgba(124, 58, 237, 0.3);
    padding-bottom: 8px;
}

.row p {
    color: #a899c2;
}

/* ========================================
   Calendar - Weekly View
   ======================================== */

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.calendar-header h2 {
    margin: 0;
    color: #f0e8ff;
}

/* Clock rings hero */
.calendar-hero-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.calendar-rings {
    position: relative;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
}

.cal-ring {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid transparent;
}

.cal-ring-1 {
    width: 40px;
    height: 40px;
    border-top-color: rgba(124, 58, 237, 0.45);
    border-right-color: rgba(124, 58, 237, 0.15);
    animation: cal-spin 60s linear infinite;
}

.cal-ring-2 {
    width: 62px;
    height: 62px;
    border-top-color: rgba(232, 67, 147, 0.3);
    border-left-color: rgba(232, 67, 147, 0.12);
    animation: cal-spin 45s linear infinite reverse;
}

.cal-ring-3 {
    width: 84px;
    height: 84px;
    border-top-color: rgba(183, 148, 246, 0.22);
    border-bottom-color: rgba(183, 148, 246, 0.08);
    animation: cal-spin 90s linear infinite;
}

@keyframes cal-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.calendar-hero-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: var(--color-vivid);
    text-shadow: 0 0 12px var(--color-glow-purple), 0 0 24px var(--color-glow-purple);
    animation: awards-glow 3s ease-in-out infinite;
}

.calendar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.calendar-nav .btn {
    padding: 5px 12px;
}

.calendar-nav .calendar-range {
    font-size: 16px;
    font-weight: 600;
    min-width: 220px;
    text-align: center;
    color: var(--color-lavender);
}

.calendar-wrapper {
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 6px;
    overflow: hidden;
    background-color: rgba(21, 11, 38, 0.5);
}

/* Day header row */
.calendar-day-headers {
    display: grid;
    grid-template-columns: 60px repeat(7, 1fr);
    background-color: rgba(45, 31, 78, 0.6);
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.calendar-day-headers .cal-corner {
    border-right: 1px solid rgba(124, 58, 237, 0.15);
}

.calendar-day-headers .cal-day-header {
    text-align: center;
    padding: 8px 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #8b7aaa;
    border-right: 1px solid rgba(124, 58, 237, 0.1);
}

.calendar-day-headers .cal-day-header:last-child {
    border-right: none;
}

.calendar-day-headers .cal-day-header .cal-day-date {
    display: block;
    font-size: 22px;
    font-weight: 400;
    color: var(--color-lavender);
    margin-top: 2px;
    line-height: 1.2;
}

.calendar-day-headers .cal-day-header.cal-today .cal-day-date {
    background: linear-gradient(135deg, var(--color-vivid), #9b59d9);
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    line-height: 36px;
    margin: 2px auto 0;
    display: block;
    box-shadow: 0 0 12px var(--color-glow-purple);
}

.calendar-day-headers .cal-day-header.cal-today {
    color: var(--color-vivid);
}

/* All-day area */
.calendar-allday-row {
    display: grid;
    grid-template-columns: 60px repeat(7, 1fr);
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    min-height: 28px;
}

.calendar-allday-row .cal-allday-label {
    font-size: 10px;
    color: #7a6b99;
    text-align: right;
    padding: 6px 6px 6px 0;
    border-right: 1px solid rgba(124, 58, 237, 0.15);
}

.calendar-allday-row .cal-allday-cell {
    border-right: 1px solid rgba(124, 58, 237, 0.08);
}

.calendar-allday-row .cal-allday-cell:last-child {
    border-right: none;
}

/* Scrollable time grid */
.calendar-scroll {
    max-height: 600px;
    overflow-y: auto;
}

.calendar-time-grid {
    display: grid;
    grid-template-columns: 60px repeat(7, 1fr);
    position: relative;
}

.calendar-time-grid .cal-time-label {
    grid-column: 1;
    text-align: right;
    padding: 0 6px 0 0;
    font-size: 10px;
    color: #7a6b99;
    border-right: 1px solid rgba(124, 58, 237, 0.15);
    height: 48px;
    position: relative;
}

.calendar-time-grid .cal-time-label span {
    position: relative;
    top: -7px;
}

.calendar-time-grid .cal-cell {
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
    border-right: 1px solid rgba(124, 58, 237, 0.08);
    height: 48px;
    position: relative;
}

.calendar-time-grid .cal-cell:nth-child(7n+8) {
    border-right: none;
}

.calendar-time-grid .cal-cell.cal-today-col {
    background-color: rgba(124, 58, 237, 0.06);
}

/* Current time indicator */
.cal-now-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-vivid), var(--color-pink));
    z-index: 5;
    pointer-events: none;
    box-shadow: 0 0 6px var(--color-glow-purple), 0 0 10px var(--color-glow-pink);
    animation: cal-now-pulse 2.5s ease-in-out infinite;
}

@keyframes cal-now-pulse {
    0%, 100% { box-shadow: 0 0 4px var(--color-glow-purple), 0 0 8px var(--color-glow-pink); }
    50% { box-shadow: 0 0 8px var(--color-glow-purple), 0 0 16px var(--color-glow-pink), 0 0 24px var(--color-glow-purple); }
}

.cal-now-line::before {
    content: '';
    position: absolute;
    left: -5px;
    top: -4px;
    width: 10px;
    height: 10px;
    background: var(--color-vivid);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--color-glow-purple), 0 0 12px var(--color-glow-pink);
    animation: cal-dot-pulse 2.5s ease-in-out infinite;
}

@keyframes cal-dot-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 4px var(--color-glow-purple), 0 0 8px var(--color-glow-pink);
    }
    50% {
        transform: scale(1.4);
        box-shadow: 0 0 8px var(--color-glow-purple), 0 0 16px var(--color-glow-pink);
    }
}

/* ========================================
   Group Card List (VRCGroups listing)
   ======================================== */

.sort-bar {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sort-bar-label {
    color: var(--color-lavender);
    font-size: 13px;
    margin-right: 4px;
}

.group-card-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.group-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(30, 16, 51, 0.7), rgba(45, 31, 78, 0.5));
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.group-card:hover,
.group-card:focus {
    border-color: var(--color-vivid);
    box-shadow: 0 6px 24px var(--color-glow-purple), 0 0 1px var(--color-vivid);
    text-decoration: none;
    color: inherit;
    transform: translateY(-3px);
}

/* Banner image at top of portrait card */
.group-card-banner {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    background-color: var(--color-mid);
}

/* Fallback when no banner image */
.group-card-banner-placeholder {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, var(--color-mid), var(--color-deep));
}

/* Icon overlapping the banner/body boundary */
.group-card-icon-wrap {
    position: relative;
    margin-top: -28px;
    padding: 0 16px;
}

.group-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    border: 3px solid rgba(30, 16, 51, 0.9);
    object-fit: cover;
    background-color: var(--color-deep);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Fallback when no icon image */
.group-card-icon-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    border: 3px solid rgba(30, 16, 51, 0.9);
    background: linear-gradient(135deg, var(--color-vivid), var(--color-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.group-card-body {
    padding: 10px 16px 0;
    flex: 1;
}

.group-card-name {
    margin: 0 0 6px 0;
    font-size: 17px;
    font-weight: 600;
    color: #f0e8ff;
}

.group-card:hover .group-card-name {
    color: var(--color-lavender);
    text-shadow: 0 0 8px var(--color-glow-purple);
}

.group-card-description {
    margin: 0;
    font-size: 13px;
    color: #a899c2;
    line-height: 1.5;
}

.group-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    margin-top: 12px;
    border-top: 1px solid rgba(124, 58, 237, 0.15);
}

.group-card-members {
    font-size: 12px;
    color: #8b7aaa;
}

.group-card-members .glyphicon {
    margin-right: 4px;
    font-size: 11px;
}

.group-card-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.group-card-arrow {
    color: #5a3d8a;
    font-size: 12px;
}

.group-card:hover .group-card-arrow {
    color: var(--color-vivid);
}

/* ========================================
   ViewGroup Detail Page
   ======================================== */

.group-detail {
    max-width: 720px;
}

/* Banner across the top of the detail page */
.group-detail-banner-wrap {
    margin: -20px -30px 0;
    position: relative;
}

.group-detail-banner {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.group-detail-banner-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--color-mid), var(--color-deep));
}

/* Icon overlapping the banner bottom */
.group-detail-icon-wrap {
    position: absolute;
    bottom: 0;
    left: 30px;
    transform: translateY(50%);
    z-index: 2;
}

.group-detail-icon {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    border: 4px solid rgba(30, 16, 51, 0.9);
    object-fit: cover;
    background-color: var(--color-deep);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.group-detail-icon-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    border: 4px solid rgba(30, 16, 51, 0.9);
    background: linear-gradient(135deg, var(--color-vivid), var(--color-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.group-detail-header {
    margin-bottom: 24px;
    padding-top: 48px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.group-detail-header h2 {
    margin: 0 0 8px 0;
    color: #fff;
    text-shadow: 0 0 16px var(--color-glow-purple);
}

.group-detail-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.group-detail-members {
    font-size: 14px;
    color: #8b7aaa;
}

.group-detail-members .glyphicon {
    margin-right: 4px;
}

.group-detail-section {
    margin-bottom: 24px;
}

.group-detail-section h4 {
    margin: 0 0 10px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-lavender);
}

.group-detail-section h4 .glyphicon {
    margin-right: 6px;
    font-size: 13px;
    color: var(--color-pink);
}

.group-detail-owner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.group-detail-owner .owner-name {
    font-size: 15px;
    font-weight: 500;
    color: #c8bade;
}

.group-detail-description {
    font-size: 15px;
    line-height: 1.7;
    color: #c8bade;
}

.group-detail-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.group-detail-rules {
    font-size: 14px;
    line-height: 1.7;
    color: #c8bade;
    background: rgba(45, 31, 78, 0.5);
    border: 1px solid rgba(232, 67, 147, 0.2);
    border-radius: 6px;
    padding: 15px 20px;
}

/* Calendar Events */
.cal-event {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    gap: 4px;
    padding: 2px 4px;
    background: linear-gradient(135deg, var(--color-vivid), #9b59d9);
    color: #fff;
    border-radius: 3px;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    font-size: 11px;
    line-height: 1.3;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    box-sizing: border-box;
    box-shadow: 0 1px 6px var(--color-glow-purple);
}

.cal-event:hover,
.cal-event:focus {
    filter: brightness(1.2);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 2px 12px var(--color-glow-purple);
}

.cal-event-restricted {
    background: linear-gradient(135deg, var(--color-pink), #d63384);
    border-left-color: #f9a8d4;
}

.cal-event-restricted:hover,
.cal-event-restricted:focus {
    box-shadow: 0 2px 12px var(--color-glow-pink);
}

.cal-event-c0 { background: linear-gradient(135deg, #7c3aed, #9b59d9); border-left-color: #a78bfa; }
.cal-event-c1 { background: linear-gradient(135deg, #0891b2, #06b6d4); border-left-color: #22d3ee; }
.cal-event-c2 { background: linear-gradient(135deg, #059669, #10b981); border-left-color: #34d399; }
.cal-event-c3 { background: linear-gradient(135deg, #b45309, #d97706); border-left-color: #fbbf24; }
.cal-event-c4 { background: linear-gradient(135deg, #4338ca, #6366f1); border-left-color: #818cf8; }
.cal-event-c5 { background: linear-gradient(135deg, #0369a1, #0284c7); border-left-color: #38bdf8; }

.cal-event-icon {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    flex-shrink: 0;
}

.cal-event-title {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Calendar - Mobile list view */
.cal-mobile-list {
    display: none;
}

@media (max-width: 767px) {
    .calendar-wrapper {
        display: none;
    }
    .cal-mobile-list {
        display: block;
    }
}

.cal-mobile-day {
    font-weight: bold;
    padding: 10px 0 5px 0;
    border-bottom: 1px solid var(--color-mid);
    color: var(--color-lavender);
    font-size: 14px;
}

.cal-mobile-event {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.cal-mobile-event:hover,
.cal-mobile-event:focus {
    background: var(--color-mid);
    color: #fff;
    text-decoration: none;
}

.cal-mobile-event small {
    margin-left: auto;
    white-space: nowrap;
}

.cal-mobile-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    flex-shrink: 0;
}

/* ========================================
   Link Cards (Links page)
   ======================================== */

.link-card-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-card {
    display: block;
    background: linear-gradient(135deg, rgba(30, 16, 51, 0.7), rgba(45, 31, 78, 0.5));
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.link-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.link-card:hover::before,
.link-card:focus::before {
    opacity: 0.25;
}

.link-card-ps::before {
    background: linear-gradient(135deg, var(--color-vivid), var(--color-pink));
}

.link-card-vrch::before {
    background: var(--color-vivid);
}

.link-card-yis::before {
    background-image: url('/img/thumbs/YourInductionSucks.jpg');
}

.link-card-lhk::before {
    background-image: url('/img/thumbs/LearnHypnokink.jpg');
}

.link-card-bh::before {
    background-image: url('/img/thumbs/BinauralHistolog.jpg');
}

.link-card-yh::before {
    background-image: url('/img/thumbs/yallhypno.jpg');
}

.link-card-vrc::before {
    background: linear-gradient(135deg, #4a90d9, var(--color-vivid));
}

.link-card-dh::before {
    background: linear-gradient(135deg, #5865F2, var(--color-vivid));
}

.link-card-jinxxy::before {
    background-image: url('/img/jinxxy.jpg');
}

.link-card-gumroad::before {
    background-image: url('/img/thumbs/Gumroad.png');
}

.link-card-itchio::before {
    background-color: #fa5c5c;
    background-image: url('/img/itchio.svg');
    background-position: right -10px center;
    background-size: auto 130%;
    background-repeat: no-repeat;
    opacity: 0.3;
}

.link-card-itchio:hover::before,
.link-card-itchio:focus::before {
    opacity: 0.45;
}

.link-card-steam::before {
    background-color: #1b2838;
    background-image: url('/img/steam.svg');
    background-position: right -10px center;
    background-size: auto 130%;
    background-repeat: no-repeat;
    opacity: 0.4;
}

.link-card-steam:hover::before,
.link-card-steam:focus::before {
    opacity: 0.55;
}

.link-card:hover,
.link-card:focus {
    border-color: var(--color-vivid);
    box-shadow: 0 4px 20px var(--color-glow-purple), 0 0 1px var(--color-vivid);
    text-decoration: none;
    color: inherit;
    transform: translateY(-2px);
}

.link-card-body {
    margin-bottom: 12px;
}

.link-card-name {
    margin: 0 0 6px 0;
    font-size: 18px;
    font-weight: 600;
    color: #f0e8ff;
}

.link-card-name .glyphicon {
    margin-right: 6px;
    font-size: 14px;
    color: var(--color-pink);
}

.link-card:hover .link-card-name {
    color: var(--color-lavender);
    text-shadow: 0 0 8px var(--color-glow-purple);
}

.link-card-description {
    margin: 0;
    font-size: 14px;
    color: #a899c2;
    line-height: 1.5;
}

.link-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid rgba(124, 58, 237, 0.15);
}

.link-card-url {
    font-size: 13px;
    color: #7a6b99;
}

.link-card-arrow {
    color: #5a3d8a;
    font-size: 12px;
}

.link-card:hover .link-card-arrow {
    color: var(--color-vivid);
}

/* ========================================
   Hypnotist Cards (FindHypnotist page)
   ======================================== */

.hypnotist-card-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 12px;
}

.hypnotist-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(30, 16, 51, 0.7), rgba(45, 31, 78, 0.5));
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hypnotist-card:hover {
    border-color: var(--color-vivid);
    box-shadow: 0 4px 20px var(--color-glow-purple);
    transform: translateY(-2px);
}

.hypnotist-card-image-wrapper {
    position: relative;
}

.supporter-badge-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2;
}

.supporter-badge-overlay .label-supporter {
    font-size: 13px;
    padding: 5px 10px;
}

.hypnotist-card-image-link {
    display: block;
}

.hypnotist-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(124, 58, 237, 0.15);
    background: rgba(21, 11, 38, 0.5);
}

.hypnotist-card-image-default {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(21, 11, 38, 0.5);
    border-bottom: 1px solid rgba(124, 58, 237, 0.15);
}

.hypnotist-card-image-default .glyphicon {
    font-size: 48px;
    color: var(--color-lavender);
}

.hypnotist-card-body {
    flex: 1;
    padding: 16px;
}

.hypnotist-card-name {
    margin: 0 0 6px 0;
    font-size: 16px;
    font-weight: 600;
    color: #f0e8ff;
}

.hypnotist-card:hover .hypnotist-card-name {
    color: var(--color-lavender);
    text-shadow: 0 0 8px var(--color-glow-purple);
}

.hypnotist-card-badges {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.hypnotist-card-badges .label {
    font-size: 11px;
}

.hypnotist-card-body p {
    margin: 0 0 6px 0;
    font-size: 13px;
    line-height: 1.5;
}

.hypnotist-card-rating {
    margin-bottom: 4px;
}

.hypnotist-card-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    padding: 10px 16px;
    border-top: 1px solid rgba(124, 58, 237, 0.15);
}

/* Activity indicator dots */
.activity-line {
    font-size: 12px;
    margin: 4px 0 0 0;
    color: var(--color-lavender);
    opacity: 0.7;
}

.activity-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 2px;
}

.activity-dot-green {
    background-color: #2ecc71;
}

.activity-dot-yellow {
    background-color: #f1c40f;
}

.activity-dot-grey {
    background-color: #7a6b99;
}

.activity-dot-hollow {
    background-color: transparent;
    border: 1.5px solid #7a6b99;
}

/* Stale users section */
.stale-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(124, 58, 237, 0.15);
}

.stale-toggle-btn {
    color: var(--color-lavender);
    border-color: rgba(124, 58, 237, 0.25);
    background-color: transparent;
}

.stale-toggle-btn:hover,
.stale-toggle-btn:focus {
    color: var(--color-light);
    border-color: rgba(124, 58, 237, 0.4);
    background-color: rgba(124, 58, 237, 0.1);
}

.stale-card {
    opacity: 0.55;
}

.stale-card:hover {
    opacity: 0.85;
}

/* Contact / Talk with me buttons */
.contact-btn {
    transition: background-color 0.2s;
}
.contact-btn:hover {
    background-color: var(--color-mid);
    color: #fff;
}

/* ========================================
   Featured Asset Cards (Assets page)
   ======================================== */

.asset-card-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 12px;
    margin-bottom: 30px;
}

.asset-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(30, 16, 51, 0.7), rgba(45, 31, 78, 0.5));
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.asset-card:hover,
.asset-card:focus {
    border-color: var(--color-vivid);
    box-shadow: 0 4px 20px var(--color-glow-purple);
    text-decoration: none;
    color: inherit;
    transform: translateY(-2px);
}

.asset-card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-bottom: 1px solid rgba(124, 58, 237, 0.15);
    background: rgba(21, 11, 38, 0.5);
}

.asset-card-body {
    flex: 1;
    padding: 16px;
}

.asset-card-title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #f0e8ff;
}

.asset-card:hover .asset-card-title {
    color: var(--color-lavender);
    text-shadow: 0 0 8px var(--color-glow-purple);
}

.asset-card-description {
    margin: 0;
    font-size: 13px;
    color: #a899c2;
    line-height: 1.5;
}

.asset-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-top: 1px solid rgba(124, 58, 237, 0.15);
}

.asset-card-creator {
    font-size: 13px;
    color: #7a6b99;
}

.asset-card-creator .glyphicon {
    margin-right: 4px;
    font-size: 11px;
}

/* ========================================
   Story Cards (Assets page)
   ======================================== */

.story-card-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin-top: 12px;
}

.story-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(30, 16, 51, 0.7), rgba(45, 31, 78, 0.5));
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    padding: 20px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.story-card:hover {
    border-color: var(--color-vivid);
    box-shadow: 0 4px 20px var(--color-glow-purple);
    transform: translateY(-2px);
}

.story-card-body {
    flex: 1;
}

.story-card-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #f0e8ff;
}

.story-card-title .glyphicon {
    margin-right: 6px;
    color: var(--color-pink);
    font-size: 14px;
}

.story-card-preview {
    margin: 0;
    font-size: 13px;
    color: #a899c2;
    line-height: 1.6;
}

.story-card-footer {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(124, 58, 237, 0.15);
}

/* Story Content (ViewStory page) */

.story-content {
    max-width: 720px;
    line-height: 1.8;
    font-size: 15px;
}

.story-content p {
    margin-bottom: 16px;
    color: #c8bade;
}

/* ========================================
   Assets Hero — bouncing lines
   ======================================== */

.assets-hero {
    position: relative;
    text-align: center;
    padding: 50px 20px 35px;
    margin-bottom: 24px;
    overflow: hidden;
}

.assets-bounce-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.assets-line {
    position: absolute;
    height: 2px;
}

.assets-line-1 {
    top: 18%;
    width: 120px;
    left: 5%;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.45), transparent);
    box-shadow: 0 0 8px rgba(124, 58, 237, 0.2);
    animation: assets-slide-1 4s ease-in-out infinite alternate;
}

@keyframes assets-slide-1 {
    to { left: calc(95% - 120px); }
}

.assets-line-2 {
    top: 36%;
    width: 180px;
    left: calc(90% - 180px);
    background: linear-gradient(90deg, transparent, rgba(232, 67, 147, 0.35), transparent);
    box-shadow: 0 0 8px rgba(232, 67, 147, 0.15);
    animation: assets-slide-2 5.5s ease-in-out infinite alternate;
}

@keyframes assets-slide-2 {
    to { left: 10%; }
}

.assets-line-3 {
    top: 52%;
    width: 80px;
    left: 15%;
    background: linear-gradient(90deg, transparent, rgba(183, 148, 246, 0.4), transparent);
    box-shadow: 0 0 6px rgba(183, 148, 246, 0.15);
    animation: assets-slide-3 3.5s ease-in-out infinite alternate;
}

@keyframes assets-slide-3 {
    to { left: calc(85% - 80px); }
}

.assets-line-4 {
    top: 68%;
    width: 150px;
    left: calc(92% - 150px);
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), transparent);
    box-shadow: 0 0 8px rgba(124, 58, 237, 0.12);
    animation: assets-slide-4 6s ease-in-out infinite alternate;
}

@keyframes assets-slide-4 {
    to { left: 8%; }
}

.assets-line-5 {
    top: 84%;
    width: 60px;
    left: 20%;
    background: linear-gradient(90deg, transparent, rgba(232, 67, 147, 0.25), transparent);
    box-shadow: 0 0 6px rgba(232, 67, 147, 0.1);
    animation: assets-slide-5 4.5s ease-in-out infinite alternate;
}

@keyframes assets-slide-5 {
    to { left: calc(80% - 60px); }
}

.assets-hero-content {
    position: relative;
    z-index: 1;
}

.assets-hero-icon {
    font-size: 48px;
    color: var(--color-vivid);
    display: block;
    margin-bottom: 14px;
    text-shadow: 0 0 16px var(--color-glow-purple), 0 0 32px var(--color-glow-purple);
    animation: awards-glow 3s ease-in-out infinite;
}

.assets-hero h1 {
    margin: 0 0 8px;
    font-size: 28px;
}

.assets-hero p {
    margin: 0;
    font-size: 15px;
    color: var(--color-lavender);
}

/* ========================================
   Blog Article (VRChatHypnosis guide)
   ======================================== */

.blog-article {
    max-width: 720px;
}

.blog-article h3 {
    margin-top: 32px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.25);
    color: var(--color-lavender);
    font-size: 20px;
    font-weight: 600;
}

.blog-article h3 .glyphicon {
    margin-right: 8px;
    font-size: 16px;
    color: var(--color-pink);
}

.blog-article p {
    font-size: 15px;
    line-height: 1.7;
    color: #c8bade;
}

.blog-article ul,
.blog-article ol {
    font-size: 15px;
    line-height: 1.7;
    color: #c8bade;
    padding-left: 24px;
}

.blog-article ul li,
.blog-article ol li {
    margin-bottom: 10px;
}

.blog-callout {
    border-radius: 6px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.blog-callout ul {
    margin-bottom: 0;
}

.blog-callout-warning {
    background: rgba(232, 67, 147, 0.1);
    border: 1px solid rgba(232, 67, 147, 0.25);
}

.blog-callout-tip {
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.25);
}

/* ========================================
   Scrollbar (Webkit)
   ======================================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-void);
}

::-webkit-scrollbar-thumb {
    background: var(--color-mid);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-vivid);
}

/* ========================================
   Calendar Responsive
   ======================================== */

@media screen and (max-width: 767px) {
    .calendar-day-headers,
    .calendar-allday-row,
    .calendar-time-grid {
        grid-template-columns: 40px repeat(7, 1fr);
    }

    .calendar-day-headers .cal-day-header {
        font-size: 10px;
        padding: 6px 2px;
    }

    .calendar-day-headers .cal-day-header .cal-day-date {
        font-size: 16px;
    }

    .calendar-day-headers .cal-day-header.cal-today .cal-day-date {
        width: 28px;
        height: 28px;
        line-height: 28px;
    }

    .calendar-time-grid .cal-time-label {
        font-size: 9px;
        padding-right: 3px;
    }

    .calendar-nav .calendar-range {
        font-size: 14px;
        min-width: 180px;
    }

    .calendar-rings {
        width: 60px;
        height: 60px;
    }

    .cal-ring-1 { width: 28px; height: 28px; }
    .cal-ring-2 { width: 42px; height: 42px; }
    .cal-ring-3 { width: 56px; height: 56px; }

    .calendar-hero-icon {
        font-size: 16px;
    }
}

/* ========================================
   Contact Page
   ======================================== */

/* Hero — radiating ripples */
.contact-hero {
    position: relative;
    text-align: center;
    padding: 50px 20px 35px;
    margin-bottom: 24px;
    overflow: hidden;
}

.contact-ripples {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.contact-ripple {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(124, 58, 237, 0.35);
    top: 50%;
    left: 50%;
    width: 320px;
    height: 320px;
    transform: translate(-50%, -50%) scale(0.15);
    opacity: 0;
    animation: contact-ripple-out 4.5s ease-out infinite;
}

.contact-ripple-1 { animation-delay: 0s; }
.contact-ripple-2 { animation-delay: 1.1s; }
.contact-ripple-3 { animation-delay: 2.2s; }
.contact-ripple-4 { animation-delay: 3.3s; }

@keyframes contact-ripple-out {
    0% {
        transform: translate(-50%, -50%) scale(0.15);
        opacity: 0.5;
        border-color: rgba(124, 58, 237, 0.4);
    }
    50% {
        opacity: 0.25;
        border-color: rgba(232, 67, 147, 0.25);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
        border-color: rgba(183, 148, 246, 0.05);
    }
}

.contact-hero-content {
    position: relative;
    z-index: 1;
}

.contact-hero-icon {
    font-size: 48px;
    color: var(--color-vivid);
    display: block;
    margin-bottom: 14px;
    text-shadow: 0 0 16px var(--color-glow-purple), 0 0 32px var(--color-glow-purple);
    animation: awards-glow 3s ease-in-out infinite;
}

.contact-hero h1 {
    margin: 0 0 8px;
    font-size: 28px;
}

.contact-hero p {
    margin: 0;
    font-size: 15px;
    color: var(--color-lavender);
}

/* Override the global max-width:280px on inputs/textareas */
.contact-form input,
.contact-form select,
.contact-form textarea {
    max-width: 100%;
}

/* Info panel cards (right sidebar) */
.contact-info-card {
    background: linear-gradient(135deg, rgba(30, 16, 51, 0.7), rgba(45, 31, 78, 0.5));
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-info-card:hover {
    border-color: var(--color-vivid);
    box-shadow: 0 4px 16px var(--color-glow-purple);
}

.contact-info-card a {
    color: var(--color-lavender);
    text-decoration: none;
}

.contact-info-card a:hover {
    color: #d4b8ff;
    text-decoration: underline;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-vivid), #9b59d9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 2px 10px var(--color-glow-purple);
}

.contact-info-card .contact-info-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #7a6b99;
    margin-bottom: 2px;
}

.contact-info-card .contact-info-value {
    font-size: 14px;
    color: #e0d6f2;
}

/* Category selector row */
.contact-category-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.contact-category {
    flex: 1 1 0;
    min-width: 100px;
    background: rgba(45, 31, 78, 0.5);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    color: var(--color-lavender);
}

.contact-category:hover {
    border-color: var(--color-vivid);
    background: rgba(45, 31, 78, 0.7);
    box-shadow: 0 2px 12px var(--color-glow-purple);
}

.contact-category .glyphicon {
    display: block;
    font-size: 20px;
    margin-bottom: 6px;
}

.contact-category .contact-category-label {
    font-size: 12px;
    font-weight: 600;
}

.contact-category-active {
    border-color: var(--color-pink);
    background: rgba(232, 67, 147, 0.12);
    box-shadow: 0 0 16px var(--color-glow-pink), 0 0 4px var(--color-glow-pink);
    color: #fff;
}

.contact-category-active:hover {
    border-color: var(--color-pink);
    box-shadow: 0 0 20px var(--color-glow-pink), 0 0 6px var(--color-glow-pink);
}

/* FAQ accordion */
.contact-faq .panel-group {
    margin-bottom: 0;
}

.contact-faq .panel {
    background: rgba(30, 16, 51, 0.5);
    border-color: rgba(124, 58, 237, 0.2);
    border-radius: 6px;
    margin-bottom: 6px;
}

.contact-faq .panel-heading {
    background: rgba(45, 31, 78, 0.5);
    border-color: rgba(124, 58, 237, 0.15);
    padding: 0;
}

.contact-faq .panel-heading a {
    display: block;
    padding: 10px 14px;
    color: var(--color-lavender);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.contact-faq .panel-heading a:hover {
    color: #fff;
}

.contact-faq .panel-heading a .glyphicon {
    margin-right: 6px;
    font-size: 11px;
    color: var(--color-pink);
}

.contact-faq .panel-body {
    color: #a899c2;
    font-size: 13px;
    line-height: 1.6;
    border-top-color: rgba(124, 58, 237, 0.15);
}

/* Message textarea + ring wrapper */
.contact-msg-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-msg-wrap textarea {
    flex: 1;
}

/* SVG ring */
.contact-ring-wrap {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    position: relative;
    margin-top: 4px;
}

.contact-ring-wrap svg {
    width: 64px;
    height: 64px;
    transform: rotate(-90deg);
}

.contact-ring-track {
    fill: none;
    stroke: rgba(124, 58, 237, 0.15);
    stroke-width: 4;
}

.contact-ring-progress {
    fill: none;
    stroke: var(--color-vivid);
    stroke-width: 4;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.15s ease, stroke 0.2s ease;
}

.contact-ring-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    color: #8b7aaa;
    text-align: center;
    line-height: 1.2;
    pointer-events: none;
}

.contact-ring-text .contact-ring-count {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-lavender);
}

.contact-ring-full .contact-ring-progress {
    animation: contact-pulse 1.2s ease-in-out infinite;
}

@keyframes contact-pulse {
    0%, 100% { stroke-opacity: 1; }
    50% { stroke-opacity: 0.5; }
}

/* Contact responsive */
@media screen and (max-width: 767px) {
    .contact-msg-wrap {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-ring-wrap {
        align-self: flex-end;
        margin-top: 8px;
    }

    .contact-category {
        min-width: 80px;
        padding: 10px 6px;
    }

    .contact-category .glyphicon {
        font-size: 16px;
    }

    .contact-category .contact-category-label {
        font-size: 11px;
    }
}

/* ========================================
   About Page - Spiral Image
   ======================================== */

.about-spiral {
    float: right;
    max-width: 300px;
    width: 40%;
    border-radius: 10px;
    border: 1px solid rgba(124, 58, 237, 0.25);
    box-shadow: 0 4px 24px var(--color-glow-purple);
    opacity: 0.85;
    margin: 0 0 16px 24px;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
}

.about-spiral:hover {
    opacity: 1;
    box-shadow: 0 6px 32px var(--color-glow-purple), 0 0 16px var(--color-glow-pink);
}

/* ========================================
   Blog Banner (VRChatHypnosis guide)
   ======================================== */

.blog-banner {
    height: 160px;
    background: linear-gradient(135deg, rgba(21, 11, 38, 0.6), rgba(45, 31, 78, 0.5)),
                url('/img/galaxy-hero.jpg') center center / cover no-repeat;
    border-radius: 8px;
    border: 1px solid rgba(124, 58, 237, 0.25);
    margin-bottom: 24px;
    box-shadow: 0 4px 24px var(--color-glow-purple);
}

/* ========================================
   Feature Icons (Default page)
   ======================================== */

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-vivid), #9b59d9);
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 2px 12px var(--color-glow-purple);
}

.feature-card {
    display: block;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #e0d4f5;
    color: #fff;
    text-decoration: none;
    transition: box-shadow 0.2s, border-color 0.2s;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.feature-card-overlay {
    padding: 24px 16px;
    background: rgba(21, 11, 38, 0.75);
    transition: background 0.2s;
}

.feature-card:hover .feature-card-overlay,
.feature-card:focus .feature-card-overlay {
    background: rgba(21, 11, 38, 0.6);
}

.feature-card:hover,
.feature-card:focus {
    border-color: var(--color-vivid);
    box-shadow: 0 4px 16px var(--color-glow-purple);
    text-decoration: none;
    color: #fff;
}

.feature-card h2 {
    font-size: 20px;
    margin-top: 0;
    color: var(--color-lavender);
}

.feature-card p {
    color: #ddd;
    margin-bottom: 0;
}

.feature-card-events {
    background-image: url('/img/media/dance.jpg');
}

.feature-card-hypnotists {
    background-image: url('/img/media/metronome.jpeg');
}

.feature-card-learn {
    background-image: url('/img/media/graduationcap.jpg');
}

/* ========================================
   Sidebar / Topbar Logo
   ======================================== */

.sidebar-logo,
.topbar-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    margin-right: 8px;
    vertical-align: middle;
}

/* ========================================
   Link Card Favicon
   ======================================== */

.link-card-favicon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
    border-radius: 4px;
    object-fit: contain;
}

/* ========================================
   About Page Responsive
   ======================================== */

@media screen and (max-width: 767px) {
    .about-spiral {
        float: none;
        width: 100%;
        max-width: 100%;
        display: block;
        margin: 0 auto 16px;
    }
}

/* ========================================
   Custom Checkboxes
   ======================================== */

.checkbox label,
.checkbox-inline label {
    padding-left: 0;
    cursor: pointer;
}

.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
    position: relative;
    margin: 0 8px 0 0;
}

input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #5a3d8a;
    border-radius: 5px;
    background-color: rgba(30, 16, 51, 0.6);
    cursor: pointer;
    vertical-align: middle;
    position: relative;
    margin: 0 12px 0 0;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

input[type="checkbox"]:hover {
    border-color: var(--color-vivid);
    background-color: rgba(45, 31, 78, 0.8);
    box-shadow: 0 0 8px var(--color-glow-purple);
}

input[type="checkbox"]:focus {
    outline: none;
    border-color: var(--color-vivid);
    box-shadow: 0 0 0 3px var(--color-glow-purple);
}

input[type="checkbox"]:checked {
    background: linear-gradient(135deg, var(--color-vivid), #9b59d9);
    border-color: var(--color-vivid);
    box-shadow: 0 0 12px var(--color-glow-purple);
}

input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

input[type="checkbox"]:active {
    transform: scale(0.92);
}

/* ========================================
   Page Header Row (title + action buttons)
   ======================================== */

.page-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}

.page-header-row h2 {
    margin: 0;
}

/* ========================================
   Session Filter Bar & Pager
   ======================================== */

.session-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin-top: 15px;
}

.session-filter-bar .btn.active {
    box-shadow: 0 2px 8px var(--color-glow-purple);
}

.session-role-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pager-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.pager-info {
    color: var(--color-lavender);
    font-size: 14px;
}

/* ========================================
   Supporter Badge
   ======================================== */

.label-supporter {
    background: linear-gradient(135deg, #d4a017, #f0c040);
    color: #fff;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(212, 160, 23, 0.5), 0 0 4px rgba(240, 192, 64, 0.4);
    border: 1px solid rgba(240, 192, 64, 0.6);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: supporter-glow 2s ease-in-out infinite alternate;
}

@keyframes supporter-glow {
    0%   { box-shadow: 0 0 8px rgba(212, 160, 23, 0.4), 0 0 3px rgba(240, 192, 64, 0.3); }
    100% { box-shadow: 0 0 14px rgba(212, 160, 23, 0.7), 0 0 6px rgba(240, 192, 64, 0.5); }
}

/* ========================================
   Professional Badge
   ======================================== */

.label-professional {
    background-color: #0e7490;
    color: #fff;
    box-shadow: 0 0 6px rgba(14, 116, 144, 0.4);
    border: 1px solid rgba(14, 116, 144, 0.6);
}

.label-award-winner {
    background-color: var(--color-vivid);
    color: #fff;
    box-shadow: 0 0 8px rgba(124, 58, 237, 0.5), 0 0 2px rgba(124, 58, 237, 0.3);
}

/* ========================================
   My Calendar - Status Event Colors
   ======================================== */

.cal-event-status-pending,
.cal-event-status-requested {
    background: linear-gradient(135deg, #d97706, #b45309);
}

.cal-event-status-pending:hover,
.cal-event-status-pending:focus,
.cal-event-status-requested:hover,
.cal-event-status-requested:focus {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 2px 12px rgba(217, 119, 6, 0.4);
}

.cal-event-status-accepted {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.cal-event-status-accepted:hover,
.cal-event-status-accepted:focus {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.4);
}

.cal-event-status-upcoming {
    background: linear-gradient(135deg, var(--color-vivid), #6d28d9);
}

.cal-event-status-upcoming:hover,
.cal-event-status-upcoming:focus {
    background: linear-gradient(135deg, #8b5cf6, var(--color-vivid));
    box-shadow: 0 2px 12px var(--color-glow-purple);
}

.cal-event-status-inprogress {
    background: linear-gradient(135deg, var(--color-pink), #d63384);
}

.cal-event-status-inprogress:hover,
.cal-event-status-inprogress:focus {
    background: linear-gradient(135deg, #f25cad, var(--color-pink));
    box-shadow: 0 2px 12px var(--color-glow-pink);
}

.cal-event-status-completed {
    background: linear-gradient(135deg, #059669, #047857);
}

.cal-event-status-completed:hover,
.cal-event-status-completed:focus {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 2px 12px rgba(5, 150, 105, 0.4);
}

.cal-event-role-badge {
    display: inline-block;
    width: 14px;
    height: 14px;
    line-height: 14px;
    text-align: center;
    font-size: 9px;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    flex-shrink: 0;
}

.mycal-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 12px;
    color: #c8bade;
}

.mycal-legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mycal-legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mycal-dot-pending {
    background: #d97706;
}

.mycal-dot-accepted {
    background: #2563eb;
}

.mycal-dot-upcoming {
    background: var(--color-vivid);
}

.mycal-dot-inprogress {
    background: var(--color-pink);
}

.mycal-dot-completed {
    background: #059669;
}

/* ========================================
   Discord Icon
   ======================================== */

.discord-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 127.14 96.36'%3E%3Cpath d='M107.7 8.07A105.15 105.15 0 0 0 81.47 0a72.06 72.06 0 0 0-3.36 6.83 97.68 97.68 0 0 0-29.11 0A72.37 72.37 0 0 0 45.64 0 105.89 105.89 0 0 0 19.39 8.09C2.79 32.65-1.71 56.6.54 80.21a105.73 105.73 0 0 0 32.17 16.15 77.7 77.7 0 0 0 6.89-11.11 68.42 68.42 0 0 1-10.85-5.18c.91-.66 1.8-1.34 2.66-2.03a75.57 75.57 0 0 0 64.32 0c.87.71 1.76 1.39 2.66 2.03a68.68 68.68 0 0 1-10.87 5.19 77.3 77.3 0 0 0 6.89 11.1 105.25 105.25 0 0 0 32.19-16.14c2.64-27.38-4.51-51.11-18.9-72.15ZM42.45 65.69C36.18 65.69 31 60 31 53.05s5-12.68 11.45-12.68S54 46.07 53.89 53.05c0 6.95-5.11 12.64-11.44 12.64Zm42.24 0C78.41 65.69 73.25 60 73.25 53.05s5-12.68 11.44-12.68S96.23 46.07 96.12 53.05c0 6.95-5.09 12.64-11.43 12.64Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 127.14 96.36'%3E%3Cpath d='M107.7 8.07A105.15 105.15 0 0 0 81.47 0a72.06 72.06 0 0 0-3.36 6.83 97.68 97.68 0 0 0-29.11 0A72.37 72.37 0 0 0 45.64 0 105.89 105.89 0 0 0 19.39 8.09C2.79 32.65-1.71 56.6.54 80.21a105.73 105.73 0 0 0 32.17 16.15 77.7 77.7 0 0 0 6.89-11.11 68.42 68.42 0 0 1-10.85-5.18c.91-.66 1.8-1.34 2.66-2.03a75.57 75.57 0 0 0 64.32 0c.87.71 1.76 1.39 2.66 2.03a68.68 68.68 0 0 1-10.87 5.19 77.3 77.3 0 0 0 6.89 11.1 105.25 105.25 0 0 0 32.19-16.14c2.64-27.38-4.51-51.11-18.9-72.15ZM42.45 65.69C36.18 65.69 31 60 31 53.05s5-12.68 11.45-12.68S54 46.07 53.89 53.05c0 6.95-5.11 12.64-11.44 12.64Zm42.24 0C78.41 65.69 73.25 60 73.25 53.05s5-12.68 11.44-12.68S96.23 46.07 96.12 53.05c0 6.95-5.09 12.64-11.43 12.64Z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.discord-login-btn {
    background-color: #5865F2;
    border-color: #5865F2;
}

.discord-login-btn:hover,
.discord-login-btn:focus {
    background-color: #4752c4;
    border-color: #4752c4;
}

/* ========================================
   Awards Page
   ======================================== */

/* Hero with rotating rings */
.awards-hero {
    position: relative;
    text-align: center;
    padding: 60px 20px 40px;
    margin-bottom: 30px;
    overflow: hidden;
}

.awards-hero-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
}

.awards-ring {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid transparent;
}

.awards-ring-1 {
    width: 180px;
    height: 180px;
    border-top-color: rgba(124, 58, 237, 0.4);
    border-right-color: rgba(124, 58, 237, 0.15);
    animation: awards-spin 8s linear infinite;
}

.awards-ring-2 {
    width: 280px;
    height: 280px;
    border-top-color: rgba(232, 67, 147, 0.3);
    border-left-color: rgba(232, 67, 147, 0.12);
    animation: awards-spin 12s linear infinite reverse;
}

.awards-ring-3 {
    width: 380px;
    height: 380px;
    border-top-color: rgba(183, 148, 246, 0.2);
    border-bottom-color: rgba(183, 148, 246, 0.08);
    animation: awards-spin 18s linear infinite;
}

@keyframes awards-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.awards-hero-content {
    position: relative;
    z-index: 1;
}

.awards-hero-icon {
    font-size: 64px;
    color: var(--color-vivid);
    display: block;
    margin-bottom: 16px;
    text-shadow: 0 0 20px var(--color-glow-purple), 0 0 40px var(--color-glow-purple);
    animation: awards-glow 3s ease-in-out infinite;
}

@keyframes awards-glow {
    0%, 100% { text-shadow: 0 0 20px var(--color-glow-purple), 0 0 40px var(--color-glow-purple); }
    50% { text-shadow: 0 0 30px var(--color-glow-purple), 0 0 60px var(--color-glow-pink), 0 0 80px var(--color-glow-purple); }
}

.awards-hero h1 {
    margin: 0 0 8px;
    font-size: 32px;
}

.awards-hero p {
    margin: 0;
    font-size: 16px;
    color: var(--color-lavender);
}

/* Season banner */
.awards-season-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 24px;
    margin-bottom: 28px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(232, 67, 147, 0.08));
    border: 1px solid rgba(124, 58, 237, 0.25);
}

.awards-season-info h2 {
    margin: 0 0 4px;
    font-size: 20px;
}

.awards-season-dates {
    margin: 0;
    color: var(--color-lavender);
    font-size: 14px;
}

.awards-vote-btn {
    animation: awards-pulse-btn 2.5s ease-in-out infinite;
}

@keyframes awards-pulse-btn {
    0%, 100% { box-shadow: 0 4px 20px var(--color-glow-purple); }
    50% { box-shadow: 0 4px 28px var(--color-glow-purple), 0 2px 16px var(--color-glow-pink); }
}

/* Section headers (Hypnotist / Subject / Hypnoswitch) */
.awards-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 32px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.awards-section-header .glyphicon {
    font-size: 20px;
    color: var(--color-vivid);
}

.awards-section-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

/* Category card grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 8px;
}

.awards-category-card {
    background: linear-gradient(135deg, rgba(30, 16, 51, 0.7), rgba(45, 31, 78, 0.5));
    border: 1px solid rgba(124, 58, 237, 0.2);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.awards-category-card:hover {
    border-color: var(--color-vivid);
    box-shadow: 0 4px 24px var(--color-glow-purple);
    transform: translateY(-3px);
}

.awards-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(232, 67, 147, 0.06));
    border-bottom: 1px solid rgba(124, 58, 237, 0.12);
}

.awards-category-icon {
    font-size: 24px;
    color: var(--color-vivid);
    text-shadow: 0 0 12px var(--color-glow-purple);
}

.awards-category-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #f0e8ff;
}

/* Individual entry rows */
.awards-entry {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 12px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.06);
    transition: background 0.15s ease;
}

.awards-entry:last-child {
    border-bottom: none;
}

.awards-entry:hover {
    background: rgba(124, 58, 237, 0.06);
}

.awards-rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

.awards-gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #78350f;
    box-shadow: 0 0 12px rgba(251, 191, 36, 0.4);
}

.awards-silver {
    background: linear-gradient(135deg, #d1d5db, #9ca3af);
    color: #374151;
}

.awards-bronze {
    background: linear-gradient(135deg, #d97706, #b45309);
    color: #fff;
}

.awards-entry-name {
    flex: 1;
    color: #e0d6f2;
    min-width: 0;
}

.awards-entry-name a {
    color: var(--color-lavender);
}

.awards-entry-name a:hover {
    color: #d4b8ff;
}

.awards-rank-1 .awards-entry-name {
    font-weight: 600;
}

.awards-rank-1 .awards-entry-name a {
    color: #f0e8ff;
}

.awards-entry-votes {
    background: rgba(124, 58, 237, 0.2);
    color: var(--color-lavender);
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
}

/* Empty state */
.awards-empty {
    text-align: center;
    padding: 48px 20px;
    color: var(--color-lavender);
}

.awards-empty .glyphicon {
    font-size: 40px;
    display: block;
    margin-bottom: 14px;
    opacity: 0.5;
}

.awards-empty p {
    color: var(--color-lavender);
    margin: 0;
    font-size: 16px;
}

/* Past Winners */
.awards-past-header {
    margin-top: 44px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(124, 58, 237, 0.2);
}

.awards-past-header h2 {
    margin: 0;
    font-size: 22px;
}

.awards-past-season {
    background: linear-gradient(135deg, rgba(30, 16, 51, 0.5), rgba(45, 31, 78, 0.3));
    border: 1px solid rgba(124, 58, 237, 0.15);
    margin-bottom: 20px;
    overflow: hidden;
}

.awards-past-season-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(45, 31, 78, 0.3));
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.awards-past-trophy {
    font-size: 28px;
    color: #fbbf24;
    text-shadow: 0 0 12px rgba(251, 191, 36, 0.3);
}

.awards-past-season-header h3 {
    margin: 0 0 2px;
    font-size: 18px;
}

.awards-past-dates {
    margin: 0;
    font-size: 13px;
    color: var(--color-lavender);
}

.awards-winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1px;
    background: rgba(124, 58, 237, 0.06);
}

.awards-winner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
    background: linear-gradient(135deg, rgba(30, 16, 51, 0.6), rgba(45, 31, 78, 0.4));
    transition: background 0.2s ease;
}

.awards-winner-card:hover {
    background: linear-gradient(135deg, rgba(45, 31, 78, 0.7), rgba(60, 40, 100, 0.5));
}

.awards-winner-icon {
    font-size: 24px;
    color: var(--color-vivid);
    margin-bottom: 8px;
    text-shadow: 0 0 8px var(--color-glow-purple);
}

.awards-winner-category {
    font-size: 11px;
    color: var(--color-lavender);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.awards-winner-name {
    font-size: 15px;
    font-weight: 600;
    color: #f0e8ff;
    margin-bottom: 6px;
}

.awards-winner-name a {
    color: #f0e8ff;
}

.awards-winner-name a:hover {
    color: var(--color-lavender);
}

.awards-winner-votes {
    font-size: 12px;
    color: var(--color-lavender);
    opacity: 0.7;
}

.awards-past-empty {
    padding: 20px;
    text-align: center;
}

.awards-past-empty p {
    margin: 0;
    color: var(--color-lavender);
    opacity: 0.7;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .awards-ring,
    .awards-hero-icon,
    .awards-vote-btn,
    .cal-ring,
    .calendar-hero-icon,
    .cal-now-line,
    .cal-now-line::before,
    .assets-line,
    .assets-hero-icon,
    .contact-ripple,
    .contact-hero-icon {
        animation: none;
    }
}

/* ========================================
   Vote Page
   ======================================== */

.vote-warning-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(180, 130, 0, 0.12), rgba(180, 130, 0, 0.06));
    border: 1px solid rgba(180, 130, 0, 0.3);
    margin-bottom: 20px;
}

.vote-warning-icon {
    font-size: 32px;
    color: #fbbf24;
    flex-shrink: 0;
}

.vote-warning-card p {
    margin: 0 0 8px;
    color: #fbbf24;
}

.vote-rules {
    text-align: center;
    margin-bottom: 8px;
}

.vote-rules p {
    color: var(--color-lavender);
    font-size: 14px;
    margin: 0;
}

/* Category card grid */
.vote-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 8px;
}

.vote-category-card {
    background: linear-gradient(135deg, rgba(30, 16, 51, 0.7), rgba(45, 31, 78, 0.5));
    border: 1px solid rgba(124, 58, 237, 0.2);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.vote-category-card:focus-within {
    border-color: var(--color-vivid);
    box-shadow: 0 4px 20px var(--color-glow-purple);
}

.vote-category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(232, 67, 147, 0.06));
    border-bottom: 1px solid rgba(124, 58, 237, 0.12);
}

.vote-category-icon {
    font-size: 20px;
    color: var(--color-vivid);
    text-shadow: 0 0 10px var(--color-glow-purple);
}

.vote-category-header h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #f0e8ff;
}

.vote-category-body {
    padding: 14px 18px;
}

.vote-category-body .form-control {
    background-color: rgba(21, 11, 38, 0.6);
    border-color: rgba(124, 58, 237, 0.2);
    color: #e0d6f2;
}

.vote-category-body .form-control:focus {
    border-color: var(--color-vivid);
    box-shadow: 0 0 8px var(--color-glow-purple);
}

.vote-submit-area {
    text-align: center;
    padding: 32px 0 16px;
}

/* ========================================
   Awards / Vote Responsive
   ======================================== */

@media screen and (max-width: 767px) {
    .awards-hero {
        padding: 40px 16px 28px;
    }

    .awards-hero-icon {
        font-size: 48px;
    }

    .awards-hero h1 {
        font-size: 26px;
    }

    .awards-hero-rings {
        width: 280px;
        height: 280px;
    }

    .awards-ring-1 { width: 120px; height: 120px; }
    .awards-ring-2 { width: 200px; height: 200px; }
    .awards-ring-3 { width: 280px; height: 280px; }

    .awards-grid,
    .vote-category-grid {
        grid-template-columns: 1fr;
    }

    .awards-season-banner {
        flex-direction: column;
        text-align: center;
    }

    .awards-winners-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .vote-warning-card {
        flex-direction: column;
        text-align: center;
    }

    .assets-hero {
        padding: 36px 16px 24px;
    }

    .assets-hero-icon {
        font-size: 36px;
    }

    .assets-hero h1 {
        font-size: 24px;
    }

    .contact-hero {
        padding: 36px 16px 24px;
    }

    .contact-hero-icon {
        font-size: 36px;
    }

    .contact-hero h1 {
        font-size: 24px;
    }

    .contact-ripple {
        width: 220px;
        height: 220px;
    }
}

/* ========================================
   High Contrast Theme
   ======================================== */

.theme-high-contrast {
    background: #0a0612;
    color: #f0eaff;
}

.theme-high-contrast a {
    color: #d4b8ff;
}

.theme-high-contrast a:hover,
.theme-high-contrast a:focus {
    color: #fff;
}

.theme-high-contrast h1,
.theme-high-contrast h2,
.theme-high-contrast h3,
.theme-high-contrast h4,
.theme-high-contrast h5,
.theme-high-contrast h6 {
    color: #fff;
}

.theme-high-contrast p {
    color: #ddd0f0;
}

.theme-high-contrast .text-muted {
    color: #b8a8d8;
}

/* Panels */
.theme-high-contrast .panel {
    background-color: rgba(16, 8, 30, 0.85);
    border-color: rgba(124, 58, 237, 0.35);
}

.theme-high-contrast .panel-default > .panel-heading {
    background-color: rgba(40, 24, 70, 0.8);
    color: #fff;
}

.theme-high-contrast .panel-body {
    color: #ddd0f0;
}

/* Tables */
.theme-high-contrast .table {
    color: #f0eaff;
}

.theme-high-contrast .table > thead > tr > th {
    color: #fff;
    background-color: rgba(40, 24, 70, 0.7);
    border-bottom-color: rgba(124, 58, 237, 0.4);
}

.theme-high-contrast .table > tbody > tr > td {
    border-top-color: rgba(124, 58, 237, 0.2);
}

.theme-high-contrast .table-striped > tbody > tr:nth-of-type(odd) {
    background-color: rgba(20, 12, 38, 0.6);
}

.theme-high-contrast .table-striped > tbody > tr:nth-of-type(even) {
    background-color: rgba(12, 6, 24, 0.5);
}

/* Forms */
.theme-high-contrast .form-control,
.theme-high-contrast .form-control[readonly],
.theme-high-contrast .form-control[disabled],
.theme-high-contrast select.form-control,
.theme-high-contrast .input-group .form-control {
    background-color: rgba(16, 8, 30, 0.8);
    border-color: rgba(124, 58, 237, 0.4);
    color: #f0eaff;
}

.theme-high-contrast .form-control:focus {
    background-color: rgba(20, 12, 38, 0.9);
    border-color: var(--color-vivid);
    color: #fff;
}

.theme-high-contrast .form-control::placeholder {
    color: #9080b0;
}

/* Buttons */
.theme-high-contrast .btn-default {
    background-color: rgba(40, 24, 70, 0.7);
    border-color: rgba(124, 58, 237, 0.4);
    color: #ddd0f0;
}

.theme-high-contrast .btn-default:hover,
.theme-high-contrast .btn-default:focus {
    background-color: rgba(60, 36, 100, 0.8);
    border-color: var(--color-vivid);
    color: #fff;
}

/* Alerts */
.theme-high-contrast .alert-info {
    background-color: rgba(124, 58, 237, 0.25);
    border-color: var(--color-vivid);
    color: #ddd0f0;
}

.theme-high-contrast .alert-success {
    background-color: rgba(22, 101, 52, 0.3);
    color: #a7f3d0;
}

.theme-high-contrast .alert-danger {
    background-color: rgba(185, 28, 28, 0.3);
    color: #fca5a5;
}

/* Sidebar */
.theme-high-contrast .sidebar {
    background-color: #0a0612;
    border-right-color: rgba(124, 58, 237, 0.3);
}

.theme-high-contrast .sidebar-nav li a {
    color: #d4b8ff;
}

.theme-high-contrast .sidebar-nav li a:hover {
    color: #fff;
    background-color: rgba(60, 36, 100, 0.6);
}

/* Labels / badges */
.theme-high-contrast .label-info {
    background-color: rgba(124, 58, 237, 0.7);
    color: #fff;
}

.theme-high-contrast .label-default {
    background-color: rgba(60, 36, 100, 0.7);
    color: #d4b8ff;
}

/* Well */
.theme-high-contrast .well {
    background-color: rgba(16, 8, 30, 0.8);
    border-color: rgba(124, 58, 237, 0.35);
    color: #ddd0f0;
}

/* Help blocks and small text */
.theme-high-contrast .help-block {
    color: #b8a8d8;
}

/* Cards */
.theme-high-contrast .hypnotist-card,
.theme-high-contrast .awards-category-card,
.theme-high-contrast .vote-category-card,
.theme-high-contrast .link-card,
.theme-high-contrast .asset-card,
.theme-high-contrast .story-card {
    border-color: rgba(124, 58, 237, 0.35);
}

.theme-high-contrast .hypnotist-card-name,
.theme-high-contrast .awards-category-header h4,
.theme-high-contrast .vote-category-header h4,
.theme-high-contrast .link-card-name {
    color: #fff;
}

/* ========================================
   Hypno Metro Theme — dark blues & teals
   ======================================== */

.theme-hypno-metro {
    background: linear-gradient(160deg, #0a1628 0%, #081020 40%, #0d1a30 100%);
    color: #ccd6e8;
}

.theme-hypno-metro a {
    color: #6db3f2;
}

.theme-hypno-metro a:hover,
.theme-hypno-metro a:focus {
    color: #a0d0ff;
}

.theme-hypno-metro h1,
.theme-hypno-metro h2,
.theme-hypno-metro h3,
.theme-hypno-metro h4,
.theme-hypno-metro h5,
.theme-hypno-metro h6 {
    color: #e0eaff;
}

.theme-hypno-metro p {
    color: #b0c0d8;
}

.theme-hypno-metro .text-muted {
    color: #8098b8;
}

/* Panels */
.theme-hypno-metro .panel {
    background-color: rgba(8, 16, 32, 0.7);
    border-color: rgba(60, 130, 200, 0.2);
}

.theme-hypno-metro .panel-default > .panel-heading {
    background-color: rgba(16, 30, 56, 0.7);
    border-color: rgba(60, 130, 200, 0.15);
    color: #e0eaff;
}

.theme-hypno-metro .panel-body {
    color: #b0c0d8;
}

/* Tables */
.theme-hypno-metro .table {
    color: #ccd6e8;
}

.theme-hypno-metro .table > thead > tr > th {
    color: #c0d8f0;
    background-color: rgba(16, 30, 56, 0.6);
    border-bottom-color: rgba(60, 130, 200, 0.25);
}

.theme-hypno-metro .table > tbody > tr > td {
    border-top-color: rgba(60, 130, 200, 0.1);
}

.theme-hypno-metro .table-striped > tbody > tr:nth-of-type(odd) {
    background-color: rgba(12, 22, 44, 0.5);
}

.theme-hypno-metro .table-striped > tbody > tr:nth-of-type(even) {
    background-color: rgba(8, 16, 32, 0.4);
}

/* Forms */
.theme-hypno-metro .form-control,
.theme-hypno-metro .form-control[readonly],
.theme-hypno-metro .form-control[disabled],
.theme-hypno-metro select.form-control,
.theme-hypno-metro .input-group .form-control {
    background-color: rgba(8, 16, 32, 0.7);
    border-color: rgba(60, 130, 200, 0.25);
    color: #ccd6e8;
}

.theme-hypno-metro .form-control:focus {
    background-color: rgba(12, 22, 44, 0.8);
    border-color: #3c82c8;
    color: #e0eaff;
    box-shadow: 0 0 8px rgba(60, 130, 200, 0.3);
}

.theme-hypno-metro .form-control::placeholder {
    color: #607898;
}

.theme-hypno-metro select.form-control option {
    background-color: #0d1a30;
    color: #ccd6e8;
}

/* Buttons */
.theme-hypno-metro .btn-primary {
    background: linear-gradient(135deg, #1a6fc4, #2488e0);
    border-color: #1560a8;
    box-shadow: 0 2px 12px rgba(30, 100, 200, 0.3);
}

.theme-hypno-metro .btn-primary:hover,
.theme-hypno-metro .btn-primary:focus,
.theme-hypno-metro .btn-primary:active {
    background: linear-gradient(135deg, #2488e0, #0891b2);
    border-color: #1a6fc4;
    box-shadow: 0 4px 20px rgba(30, 100, 200, 0.4), 0 2px 12px rgba(8, 145, 178, 0.2);
}

.theme-hypno-metro .btn-default {
    background-color: rgba(16, 30, 56, 0.6);
    border-color: rgba(60, 130, 200, 0.3);
    color: #8cb8e0;
}

.theme-hypno-metro .btn-default:hover,
.theme-hypno-metro .btn-default:focus {
    background-color: rgba(24, 44, 76, 0.7);
    border-color: #3c82c8;
    color: #e0eaff;
}

/* Alerts */
.theme-hypno-metro .alert-info {
    background-color: rgba(30, 90, 160, 0.2);
    border-color: rgba(60, 130, 200, 0.4);
    color: #8cb8e0;
}

.theme-hypno-metro .alert-success {
    background-color: rgba(6, 95, 70, 0.25);
    border-color: #065f46;
    color: #6ee7b7;
}

.theme-hypno-metro .alert-danger {
    background-color: rgba(160, 28, 28, 0.2);
    border-color: #7f1d1d;
    color: #fca5a5;
}

/* Sidebar */
.theme-hypno-metro .sidebar {
    background-color: #081020;
    border-right-color: rgba(60, 130, 200, 0.15);
}

.theme-hypno-metro .sidebar-brand {
    border-bottom-color: rgba(60, 130, 200, 0.15);
}

.theme-hypno-metro .sidebar-nav li a {
    color: #8cb8e0;
}

.theme-hypno-metro .sidebar-nav li a:hover {
    color: #e0eaff;
    background-color: rgba(24, 44, 76, 0.5);
}

.theme-hypno-metro .sidebar-nav li.active a {
    background: linear-gradient(90deg, rgba(30, 100, 200, 0.25), transparent);
    border-left-color: #0891b2;
}

.theme-hypno-metro .sidebar-footer {
    border-top-color: rgba(60, 130, 200, 0.15);
}

.theme-hypno-metro .sidebar-cta-btn {
    background: linear-gradient(135deg, #1a6fc4, #0891b2);
    border-color: rgba(60, 130, 200, 0.3);
    box-shadow: 0 2px 12px rgba(30, 100, 200, 0.25);
}

/* Topbar */
.theme-hypno-metro .topbar {
    background-color: #081020;
    border-bottom-color: rgba(60, 130, 200, 0.15);
}

/* Labels / badges */
.theme-hypno-metro .label-primary {
    background-color: #1a6fc4;
}

.theme-hypno-metro .label-info {
    background-color: rgba(30, 90, 160, 0.6);
    color: #a0d0ff;
}

.theme-hypno-metro .label-default {
    background-color: rgba(16, 30, 56, 0.7);
    color: #8098b8;
}

/* Well */
.theme-hypno-metro .well {
    background-color: rgba(12, 22, 44, 0.6);
    border-color: rgba(60, 130, 200, 0.2);
    color: #b0c0d8;
}

/* Cards */
.theme-hypno-metro .hypnotist-card,
.theme-hypno-metro .awards-category-card,
.theme-hypno-metro .vote-category-card,
.theme-hypno-metro .link-card,
.theme-hypno-metro .asset-card,
.theme-hypno-metro .story-card {
    background: linear-gradient(135deg, rgba(12, 22, 44, 0.7), rgba(16, 30, 56, 0.5));
    border-color: rgba(60, 130, 200, 0.2);
}

.theme-hypno-metro .hypnotist-card:hover,
.theme-hypno-metro .awards-category-card:hover,
.theme-hypno-metro .vote-category-card:focus-within {
    border-color: #3c82c8;
    box-shadow: 0 4px 20px rgba(30, 100, 200, 0.25);
}

.theme-hypno-metro .awards-category-header,
.theme-hypno-metro .vote-category-header {
    background: linear-gradient(135deg, rgba(30, 90, 160, 0.15), rgba(8, 145, 178, 0.06));
    border-bottom-color: rgba(60, 130, 200, 0.12);
}

.theme-hypno-metro .awards-category-icon,
.theme-hypno-metro .vote-category-icon {
    color: #3c82c8;
    text-shadow: 0 0 10px rgba(60, 130, 200, 0.3);
}

/* Glow overrides */
.theme-hypno-metro .awards-hero-icon,
.theme-hypno-metro .calendar-hero-icon,
.theme-hypno-metro .assets-hero-icon,
.theme-hypno-metro .contact-hero-icon {
    color: #2488e0;
    text-shadow: 0 0 16px rgba(36, 136, 224, 0.4), 0 0 32px rgba(36, 136, 224, 0.2);
}

.theme-hypno-metro .awards-ring-1,
.theme-hypno-metro .cal-ring-1 {
    border-top-color: rgba(60, 130, 200, 0.4);
    border-right-color: rgba(60, 130, 200, 0.15);
}

.theme-hypno-metro .awards-ring-2,
.theme-hypno-metro .cal-ring-2 {
    border-top-color: rgba(8, 145, 178, 0.3);
    border-left-color: rgba(8, 145, 178, 0.12);
}

.theme-hypno-metro .awards-ring-3,
.theme-hypno-metro .cal-ring-3 {
    border-top-color: rgba(100, 180, 240, 0.2);
    border-bottom-color: rgba(100, 180, 240, 0.08);
}

.theme-hypno-metro .cal-now-line {
    background: linear-gradient(90deg, #1a6fc4, #0891b2);
    box-shadow: 0 0 6px rgba(30, 100, 200, 0.4), 0 0 10px rgba(8, 145, 178, 0.3);
}

.theme-hypno-metro .cal-now-line::before {
    background: #2488e0;
    box-shadow: 0 0 6px rgba(30, 100, 200, 0.4), 0 0 12px rgba(8, 145, 178, 0.3);
}

/* ========================================
   Light Trance Theme — bright pinks & cyan
   ======================================== */

.theme-light-trance {
    background: linear-gradient(160deg, #fdf2f8 0%, #f0f9ff 40%, #fce7f3 100%);
    color: #374151;
}

.theme-light-trance a {
    color: #be185d;
}

.theme-light-trance a:hover,
.theme-light-trance a:focus {
    color: #9d174d;
}

.theme-light-trance h1,
.theme-light-trance h2,
.theme-light-trance h3,
.theme-light-trance h4,
.theme-light-trance h5,
.theme-light-trance h6 {
    color: #1f2937;
}

.theme-light-trance p {
    color: #4b5563;
}

.theme-light-trance .text-muted {
    color: #6b7280;
}

/* Panels */
.theme-light-trance .panel {
    background-color: rgba(255, 255, 255, 0.8);
    border-color: #f0d0e4;
    box-shadow: 0 2px 8px rgba(190, 24, 93, 0.08);
}

.theme-light-trance .panel-default > .panel-heading {
    background-color: rgba(253, 242, 248, 0.9);
    border-color: #f0d0e4;
    color: #1f2937;
}

.theme-light-trance .panel-body {
    color: #4b5563;
}

/* Tables */
.theme-light-trance .table {
    color: #374151;
}

.theme-light-trance .table > thead > tr > th {
    color: #1f2937;
    background-color: rgba(253, 242, 248, 0.7);
    border-bottom-color: #f0d0e4;
}

.theme-light-trance .table > tbody > tr > td {
    border-top-color: #fce7f3;
}

.theme-light-trance .table-striped > tbody > tr:nth-of-type(odd) {
    background-color: rgba(253, 242, 248, 0.4);
}

.theme-light-trance .table-striped > tbody > tr:nth-of-type(even) {
    background-color: rgba(240, 249, 255, 0.3);
}

/* Forms */
.theme-light-trance .form-control,
.theme-light-trance .form-control[readonly],
.theme-light-trance .form-control[disabled],
.theme-light-trance select.form-control,
.theme-light-trance .input-group .form-control {
    background-color: #fff;
    border-color: #e0c8d8;
    color: #374151;
}

.theme-light-trance .form-control:focus {
    background-color: #fff;
    border-color: #ec4899;
    color: #1f2937;
    box-shadow: 0 0 8px rgba(236, 72, 153, 0.2);
}

.theme-light-trance .form-control::placeholder {
    color: #9ca3af;
}

.theme-light-trance select.form-control option {
    background-color: #fff;
    color: #374151;
}

/* Buttons */
.theme-light-trance .btn-primary {
    background: linear-gradient(135deg, #ec4899, #06b6d4);
    border-color: #db2777;
    box-shadow: 0 2px 12px rgba(236, 72, 153, 0.25);
    color: #fff;
}

.theme-light-trance .btn-primary:hover,
.theme-light-trance .btn-primary:focus,
.theme-light-trance .btn-primary:active {
    background: linear-gradient(135deg, #db2777, #0891b2);
    border-color: #be185d;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.3), 0 2px 12px rgba(6, 182, 212, 0.2);
    color: #fff;
}

.theme-light-trance .btn-default {
    background-color: rgba(255, 255, 255, 0.7);
    border-color: #e0c8d8;
    color: #6b7280;
}

.theme-light-trance .btn-default:hover,
.theme-light-trance .btn-default:focus {
    background-color: #fdf2f8;
    border-color: #ec4899;
    color: #be185d;
}

/* Alerts */
.theme-light-trance .alert-info {
    background-color: rgba(236, 72, 153, 0.08);
    border-color: #fbcfe8;
    color: #be185d;
}

.theme-light-trance .alert-success {
    background-color: rgba(16, 185, 129, 0.08);
    border-color: #a7f3d0;
    color: #065f46;
}

.theme-light-trance .alert-danger {
    background-color: rgba(220, 38, 38, 0.08);
    border-color: #fecaca;
    color: #991b1b;
}

/* Sidebar */
.theme-light-trance .sidebar {
    background: linear-gradient(180deg, #fdf2f8, #f0f9ff);
    border-right: 1px solid #f0d0e4;
}

.theme-light-trance .sidebar-brand {
    border-bottom-color: #f0d0e4;
}

.theme-light-trance .sidebar-brand a {
    color: #1f2937;
}

.theme-light-trance .sidebar-nav li a {
    color: #6b7280;
}

.theme-light-trance .sidebar-nav li a:hover {
    color: #be185d;
    background-color: rgba(236, 72, 153, 0.06);
}

.theme-light-trance .sidebar-nav li.active a {
    color: #be185d;
    background: linear-gradient(90deg, rgba(236, 72, 153, 0.1), transparent);
    border-left-color: #06b6d4;
}

.theme-light-trance .sidebar-footer {
    border-top-color: #f0d0e4;
}

.theme-light-trance .sidebar-cta-btn {
    background: linear-gradient(135deg, #ec4899, #06b6d4);
    color: #fff;
    border-color: rgba(236, 72, 153, 0.3);
}

.theme-light-trance .sidebar-theme-picker {
    color: #9ca3af;
}

/* Topbar */
.theme-light-trance .topbar {
    background: linear-gradient(90deg, #fdf2f8, #f0f9ff);
    border-bottom: 1px solid #f0d0e4;
}

.theme-light-trance .topbar-brand {
    color: #1f2937;
}

.theme-light-trance .topbar-toggle {
    color: #6b7280;
}

/* Labels / badges */
.theme-light-trance .label-primary {
    background-color: #ec4899;
    color: #fff;
}

.theme-light-trance .label-info {
    background-color: rgba(6, 182, 212, 0.15);
    color: #0891b2;
}

.theme-light-trance .label-default {
    background-color: rgba(236, 72, 153, 0.1);
    color: #9d174d;
}

.theme-light-trance .label-success {
    background-color: rgba(16, 185, 129, 0.15);
    color: #065f46;
}

.theme-light-trance .badge {
    background-color: #ec4899;
}

/* Well */
.theme-light-trance .well {
    background-color: rgba(255, 255, 255, 0.7);
    border-color: #f0d0e4;
    color: #4b5563;
}

/* Help blocks */
.theme-light-trance .help-block {
    color: #9ca3af;
}

/* Cards */
.theme-light-trance .hypnotist-card,
.theme-light-trance .awards-category-card,
.theme-light-trance .vote-category-card,
.theme-light-trance .link-card,
.theme-light-trance .asset-card,
.theme-light-trance .story-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(253, 242, 248, 0.6));
    border-color: #f0d0e4;
}

.theme-light-trance .hypnotist-card:hover,
.theme-light-trance .awards-category-card:hover,
.theme-light-trance .vote-category-card:focus-within {
    border-color: #ec4899;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.15);
}

.theme-light-trance .awards-category-header,
.theme-light-trance .vote-category-header {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.06), rgba(6, 182, 212, 0.04));
    border-bottom-color: #fce7f3;
}

.theme-light-trance .awards-category-icon,
.theme-light-trance .vote-category-icon {
    color: #ec4899;
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.2);
}

.theme-light-trance .hypnotist-card-name,
.theme-light-trance .awards-category-header h4,
.theme-light-trance .vote-category-header h4,
.theme-light-trance .link-card-name {
    color: #1f2937;
}

.theme-light-trance .link-card-description,
.theme-light-trance .asset-card-description {
    color: #6b7280;
}

/* Glow overrides — pink/cyan */
.theme-light-trance .awards-hero-icon,
.theme-light-trance .calendar-hero-icon,
.theme-light-trance .assets-hero-icon,
.theme-light-trance .contact-hero-icon {
    color: #ec4899;
    text-shadow: 0 0 16px rgba(236, 72, 153, 0.3), 0 0 32px rgba(6, 182, 212, 0.15);
}

.theme-light-trance .awards-ring-1,
.theme-light-trance .cal-ring-1 {
    border-top-color: rgba(236, 72, 153, 0.35);
    border-right-color: rgba(236, 72, 153, 0.12);
}

.theme-light-trance .awards-ring-2,
.theme-light-trance .cal-ring-2 {
    border-top-color: rgba(6, 182, 212, 0.3);
    border-left-color: rgba(6, 182, 212, 0.1);
}

.theme-light-trance .awards-ring-3,
.theme-light-trance .cal-ring-3 {
    border-top-color: rgba(236, 72, 153, 0.2);
    border-bottom-color: rgba(6, 182, 212, 0.08);
}

.theme-light-trance .cal-now-line {
    background: linear-gradient(90deg, #ec4899, #06b6d4);
    box-shadow: 0 0 6px rgba(236, 72, 153, 0.3), 0 0 10px rgba(6, 182, 212, 0.2);
}

.theme-light-trance .cal-now-line::before {
    background: #ec4899;
    box-shadow: 0 0 6px rgba(236, 72, 153, 0.3), 0 0 12px rgba(6, 182, 212, 0.2);
}

.theme-light-trance .assets-line {
    box-shadow: none;
}

.theme-light-trance .assets-line-1 { background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.3), transparent); }
.theme-light-trance .assets-line-2 { background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.25), transparent); }
.theme-light-trance .assets-line-3 { background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.25), transparent); }
.theme-light-trance .assets-line-4 { background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.2), transparent); }
.theme-light-trance .assets-line-5 { background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.2), transparent); }

.theme-light-trance .contact-ripple {
    border-color: rgba(236, 72, 153, 0.25);
}

/* Sub-menu */
.theme-light-trance .sidebar-submenu-list {
    background-color: rgba(240, 249, 255, 0.5);
}

/* Checkbox overrides for light background */
.theme-light-trance input[type="checkbox"] {
    border-color: #d1c0d8;
}

.theme-light-trance input[type="checkbox"]:checked {
    background-color: #ec4899;
    border-color: #ec4899;
}

/* Footer */
.theme-light-trance footer {
    color: #9ca3af;
}

.theme-light-trance footer a {
    color: #6b7280;
}

.theme-light-trance footer a:hover {
    color: #be185d;
}

/* Image overlays — brighten for light background */
.theme-light-trance .feature-card-overlay {
    background: rgba(255, 255, 255, 0.75);
}

.theme-light-trance .feature-card:hover .feature-card-overlay,
.theme-light-trance .feature-card:focus .feature-card-overlay {
    background: rgba(255, 255, 255, 0.6);
}

.theme-light-trance .feature-card h3 {
    color: #1f2937;
}

.theme-light-trance .feature-card p {
    color: #4b5563;
}

.theme-light-trance .link-card::before {
    opacity: 0.1;
}

.theme-light-trance .link-card:hover::before,
.theme-light-trance .link-card:focus::before {
    opacity: 0.18;
}

.theme-light-trance .hypnotist-card-image {
    background: rgba(253, 242, 248, 0.5);
    border-bottom-color: #f0d0e4;
}

.theme-light-trance .hypnotist-card-image-default {
    background: rgba(253, 242, 248, 0.5);
    border-bottom-color: #f0d0e4;
}

.theme-light-trance .hypnotist-card-image-default .glyphicon {
    color: #ec4899;
}

/* Jumbotron — keep dark overlay so white text stays readable */
.theme-light-trance .jumbotron {
    background: linear-gradient(135deg, rgba(157, 23, 77, 0.8), rgba(6, 182, 212, 0.7)),
                url('/img/galaxy-hero.jpg') center center / cover no-repeat;
    border-color: #fbcfe8;
}

.theme-light-trance .jumbotron h1 {
    color: #fff;
}

.theme-light-trance .jumbotron .lead {
    color: #fce7f3;
}

/* Calendar — grid borders and backgrounds */
.theme-light-trance .calendar-wrapper {
    border-color: #f0d0e4;
    background-color: rgba(255, 255, 255, 0.6);
}

.theme-light-trance .calendar-day-headers {
    background-color: rgba(253, 242, 248, 0.7);
}

.theme-light-trance .calendar-day-headers {
    border-bottom-color: #f0d0e4;
}

.theme-light-trance .calendar-day-headers .cal-corner {
    border-right-color: #f0d0e4;
}

.theme-light-trance .calendar-day-headers .cal-day-header {
    color: #b0849e;
    border-right-color: #fce7f3;
}

.theme-light-trance .calendar-day-headers .cal-day-header .cal-day-date {
    color: #1f2937;
}

.theme-light-trance .calendar-day-headers .cal-day-header.cal-today {
    color: #be185d;
}

.theme-light-trance .calendar-day-headers .cal-day-header.cal-today .cal-day-date {
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: #fff;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
}

.theme-light-trance .calendar-allday-row {
    border-bottom-color: #fce7f3;
}

.theme-light-trance .calendar-allday-row .cal-allday-label {
    color: #c8a0b8;
    border-right-color: #f0d0e4;
}

.theme-light-trance .calendar-allday-row .cal-allday-cell {
    border-right-color: #fce7f3;
}

.theme-light-trance .calendar-time-grid .cal-cell {
    border-bottom-color: #fce7f3;
    border-right-color: #fce7f3;
}

.theme-light-trance .calendar-time-grid .cal-cell.cal-today-col {
    background-color: rgba(236, 72, 153, 0.04);
}

.theme-light-trance .calendar-time-grid .cal-time-label {
    color: #c8a0b8;
}

.theme-light-trance .calendar-nav .calendar-range {
    color: #9d6b8a;
}

/* Calendar mobile */
.theme-light-trance .cal-mobile-day {
    color: #1f2937;
    border-bottom-color: #f0d0e4;
}

.theme-light-trance .cal-mobile-event {
    color: #5a3050;
    border-bottom-color: #fce7f3;
}

.theme-light-trance .cal-mobile-event:hover,
.theme-light-trance .cal-mobile-event:focus {
    background: rgba(253, 242, 248, 0.5);
    color: #3d1a30;
}

.theme-light-trance .cal-mobile-event small {
    color: #c8a0b8;
}

/* ========================================
   Radioactive Theme — toxic greens & yellows
   ======================================== */

.theme-radioactive {
    background: linear-gradient(160deg, #0a120a 0%, #081008 40%, #0d1a08 100%);
    color: #c0deb8;
}

.theme-radioactive a {
    color: #39ff14;
}

.theme-radioactive a:hover,
.theme-radioactive a:focus {
    color: #7fff00;
}

.theme-radioactive h1,
.theme-radioactive h2,
.theme-radioactive h3,
.theme-radioactive h4,
.theme-radioactive h5,
.theme-radioactive h6 {
    color: #e0ffe0;
}

.theme-radioactive p {
    color: #a8c8a0;
}

.theme-radioactive .text-muted {
    color: #6a8a60;
}

/* Panels */
.theme-radioactive .panel {
    background-color: rgba(8, 16, 8, 0.7);
    border-color: rgba(57, 255, 20, 0.2);
}

.theme-radioactive .panel-default > .panel-heading {
    background-color: rgba(16, 30, 12, 0.7);
    border-color: rgba(57, 255, 20, 0.15);
    color: #e0ffe0;
}

.theme-radioactive .panel-body {
    color: #a8c8a0;
}

/* Tables */
.theme-radioactive .table {
    color: #c0deb8;
}

.theme-radioactive .table > thead > tr > th {
    color: #d0f0c0;
    background-color: rgba(16, 30, 12, 0.6);
    border-bottom-color: rgba(57, 255, 20, 0.25);
}

.theme-radioactive .table > tbody > tr > td {
    border-top-color: rgba(57, 255, 20, 0.1);
}

.theme-radioactive .table-striped > tbody > tr:nth-of-type(odd) {
    background-color: rgba(12, 22, 8, 0.5);
}

.theme-radioactive .table-striped > tbody > tr:nth-of-type(even) {
    background-color: rgba(8, 16, 6, 0.4);
}

/* Forms */
.theme-radioactive .form-control,
.theme-radioactive .form-control[readonly],
.theme-radioactive .form-control[disabled],
.theme-radioactive select.form-control,
.theme-radioactive .input-group .form-control {
    background-color: rgba(8, 16, 8, 0.7);
    border-color: rgba(57, 255, 20, 0.25);
    color: #c0deb8;
}

.theme-radioactive .form-control:focus {
    background-color: rgba(12, 22, 8, 0.8);
    border-color: #39ff14;
    color: #e0ffe0;
    box-shadow: 0 0 8px rgba(57, 255, 20, 0.3);
}

.theme-radioactive .form-control::placeholder {
    color: #4a6a40;
}

.theme-radioactive select.form-control option {
    background-color: #0d1a08;
    color: #c0deb8;
}

/* Buttons */
.theme-radioactive .btn-primary {
    background: linear-gradient(135deg, #1a8a10, #b8cc00);
    border-color: #148a08;
    box-shadow: 0 2px 12px rgba(57, 255, 20, 0.3);
    color: #fff;
}

.theme-radioactive .btn-primary:hover,
.theme-radioactive .btn-primary:focus,
.theme-radioactive .btn-primary:active {
    background: linear-gradient(135deg, #22aa18, #d4e000);
    border-color: #1a8a10;
    box-shadow: 0 4px 20px rgba(57, 255, 20, 0.4), 0 2px 12px rgba(255, 215, 0, 0.2);
    color: #fff;
}

.theme-radioactive .btn-default {
    background-color: rgba(16, 30, 12, 0.6);
    border-color: rgba(57, 255, 20, 0.3);
    color: #80b870;
}

.theme-radioactive .btn-default:hover,
.theme-radioactive .btn-default:focus {
    background-color: rgba(24, 44, 16, 0.7);
    border-color: #39ff14;
    color: #e0ffe0;
}

/* Alerts */
.theme-radioactive .alert-info {
    background-color: rgba(57, 255, 20, 0.12);
    border-color: rgba(57, 255, 20, 0.4);
    color: #80b870;
}

.theme-radioactive .alert-success {
    background-color: rgba(57, 255, 20, 0.15);
    border-color: #39ff14;
    color: #7fff00;
}

.theme-radioactive .alert-danger {
    background-color: rgba(200, 40, 20, 0.2);
    border-color: #7f1d1d;
    color: #fca5a5;
}

/* Sidebar */
.theme-radioactive .sidebar {
    background-color: #081008;
    border-right-color: rgba(57, 255, 20, 0.15);
}

.theme-radioactive .sidebar-brand {
    border-bottom-color: rgba(57, 255, 20, 0.15);
}

.theme-radioactive .sidebar-brand a {
    color: #39ff14;
}

.theme-radioactive .sidebar-nav li a {
    color: #80b870;
}

.theme-radioactive .sidebar-nav li a:hover {
    color: #e0ffe0;
    background-color: rgba(24, 44, 16, 0.5);
}

.theme-radioactive .sidebar-nav li.active a {
    color: #39ff14;
    background: linear-gradient(90deg, rgba(57, 255, 20, 0.2), transparent);
    border-left-color: #ffd700;
}

.theme-radioactive .sidebar-footer {
    border-top-color: rgba(57, 255, 20, 0.15);
}

.theme-radioactive .sidebar-cta-btn {
    background: linear-gradient(135deg, #1a8a10, #b8cc00);
    border-color: rgba(57, 255, 20, 0.3);
    box-shadow: 0 2px 12px rgba(57, 255, 20, 0.25);
    color: #fff;
}

.theme-radioactive .sidebar-theme-picker {
    color: #6a8a60;
}

/* Topbar */
.theme-radioactive .topbar {
    background-color: #081008;
    border-bottom-color: rgba(57, 255, 20, 0.15);
}

.theme-radioactive .topbar-brand {
    color: #39ff14;
}

.theme-radioactive .topbar-toggle {
    color: #80b870;
}

/* Labels / badges */
.theme-radioactive .label-primary {
    background-color: #1a8a10;
    color: #fff;
}

.theme-radioactive .label-info {
    background-color: rgba(57, 255, 20, 0.2);
    color: #7fff00;
}

.theme-radioactive .label-default {
    background-color: rgba(16, 30, 12, 0.7);
    color: #6a8a60;
}

.theme-radioactive .label-success {
    background-color: rgba(57, 255, 20, 0.25);
    color: #39ff14;
}

.theme-radioactive .badge {
    background-color: #39ff14;
    color: #0a120a;
}

/* Well */
.theme-radioactive .well {
    background-color: rgba(12, 22, 8, 0.6);
    border-color: rgba(57, 255, 20, 0.2);
    color: #a8c8a0;
}

/* Help blocks */
.theme-radioactive .help-block {
    color: #6a8a60;
}

/* Cards */
.theme-radioactive .hypnotist-card,
.theme-radioactive .awards-category-card,
.theme-radioactive .vote-category-card,
.theme-radioactive .link-card,
.theme-radioactive .asset-card,
.theme-radioactive .story-card {
    background: linear-gradient(135deg, rgba(12, 22, 8, 0.7), rgba(16, 30, 12, 0.5));
    border-color: rgba(57, 255, 20, 0.2);
}

.theme-radioactive .hypnotist-card:hover,
.theme-radioactive .awards-category-card:hover,
.theme-radioactive .vote-category-card:focus-within {
    border-color: #39ff14;
    box-shadow: 0 4px 20px rgba(57, 255, 20, 0.25);
}

.theme-radioactive .awards-category-header,
.theme-radioactive .vote-category-header {
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.1), rgba(255, 215, 0, 0.04));
    border-bottom-color: rgba(57, 255, 20, 0.12);
}

.theme-radioactive .awards-category-icon,
.theme-radioactive .vote-category-icon {
    color: #39ff14;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.theme-radioactive .hypnotist-card-name,
.theme-radioactive .awards-category-header h4,
.theme-radioactive .vote-category-header h4,
.theme-radioactive .link-card-name {
    color: #e0ffe0;
}

.theme-radioactive .link-card-description,
.theme-radioactive .asset-card-description {
    color: #80b870;
}

/* Glow overrides — green/yellow */
.theme-radioactive .awards-hero-icon,
.theme-radioactive .calendar-hero-icon,
.theme-radioactive .assets-hero-icon,
.theme-radioactive .contact-hero-icon {
    color: #39ff14;
    text-shadow: 0 0 16px rgba(57, 255, 20, 0.5), 0 0 32px rgba(255, 215, 0, 0.25);
}

.theme-radioactive .awards-ring-1,
.theme-radioactive .cal-ring-1 {
    border-top-color: rgba(57, 255, 20, 0.4);
    border-right-color: rgba(57, 255, 20, 0.15);
}

.theme-radioactive .awards-ring-2,
.theme-radioactive .cal-ring-2 {
    border-top-color: rgba(255, 215, 0, 0.35);
    border-left-color: rgba(255, 215, 0, 0.12);
}

.theme-radioactive .awards-ring-3,
.theme-radioactive .cal-ring-3 {
    border-top-color: rgba(127, 255, 0, 0.2);
    border-bottom-color: rgba(127, 255, 0, 0.08);
}

.theme-radioactive .cal-now-line {
    background: linear-gradient(90deg, #39ff14, #ffd700);
    box-shadow: 0 0 6px rgba(57, 255, 20, 0.4), 0 0 10px rgba(255, 215, 0, 0.3);
}

.theme-radioactive .cal-now-line::before {
    background: #39ff14;
    box-shadow: 0 0 6px rgba(57, 255, 20, 0.4), 0 0 12px rgba(255, 215, 0, 0.3);
}

.theme-radioactive .assets-line {
    box-shadow: none;
}

.theme-radioactive .assets-line-1 { background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.3), transparent); }
.theme-radioactive .assets-line-2 { background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.25), transparent); }
.theme-radioactive .assets-line-3 { background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.25), transparent); }
.theme-radioactive .assets-line-4 { background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent); }
.theme-radioactive .assets-line-5 { background: linear-gradient(90deg, transparent, rgba(127, 255, 0, 0.2), transparent); }

.theme-radioactive .contact-ripple {
    border-color: rgba(57, 255, 20, 0.25);
}

/* Sub-menu */
.theme-radioactive .sidebar-submenu-list {
    background-color: rgba(12, 22, 8, 0.5);
}

/* Checkbox overrides */
.theme-radioactive input[type="checkbox"] {
    border-color: rgba(57, 255, 20, 0.4);
}

.theme-radioactive input[type="checkbox"]:checked {
    background-color: #39ff14;
    border-color: #39ff14;
}

/* Footer */
.theme-radioactive footer {
    color: #6a8a60;
}

.theme-radioactive footer a {
    color: #80b870;
}

.theme-radioactive footer a:hover {
    color: #39ff14;
}

/* Image overlays */
.theme-radioactive .feature-card-overlay {
    background: rgba(10, 18, 10, 0.75);
}

.theme-radioactive .feature-card:hover .feature-card-overlay,
.theme-radioactive .feature-card:focus .feature-card-overlay {
    background: rgba(10, 18, 10, 0.6);
}

.theme-radioactive .feature-card h3 {
    color: #e0ffe0;
}

.theme-radioactive .feature-card p {
    color: #a8c8a0;
}

.theme-radioactive .link-card::before {
    opacity: 0.15;
}

.theme-radioactive .link-card:hover::before,
.theme-radioactive .link-card:focus::before {
    opacity: 0.25;
}

.theme-radioactive .hypnotist-card-image {
    background: rgba(12, 22, 8, 0.5);
    border-bottom-color: rgba(57, 255, 20, 0.15);
}

.theme-radioactive .hypnotist-card-image-default {
    background: rgba(12, 22, 8, 0.5);
    border-bottom-color: rgba(57, 255, 20, 0.15);
}

.theme-radioactive .hypnotist-card-image-default .glyphicon {
    color: #39ff14;
}

/* Jumbotron */
.theme-radioactive .jumbotron {
    background: linear-gradient(135deg, rgba(10, 80, 10, 0.8), rgba(80, 80, 0, 0.7)),
                url('/img/galaxy-hero.jpg') center center / cover no-repeat;
    border-color: rgba(57, 255, 20, 0.3);
}

.theme-radioactive .jumbotron h1 {
    color: #39ff14;
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.theme-radioactive .jumbotron .lead {
    color: #c0deb8;
}

/* Calendar — grid borders and backgrounds */
.theme-radioactive .calendar-wrapper {
    border-color: rgba(57, 255, 20, 0.15);
    background-color: rgba(8, 16, 8, 0.6);
}

.theme-radioactive .calendar-day-headers {
    background-color: rgba(16, 30, 12, 0.7);
    border-bottom-color: rgba(57, 255, 20, 0.15);
}

.theme-radioactive .calendar-day-headers .cal-corner {
    border-right-color: rgba(57, 255, 20, 0.15);
}

.theme-radioactive .calendar-day-headers .cal-day-header {
    color: #6a8a60;
    border-right-color: rgba(57, 255, 20, 0.08);
}

.theme-radioactive .calendar-day-headers .cal-day-header .cal-day-date {
    color: #c0deb8;
}

.theme-radioactive .calendar-day-headers .cal-day-header.cal-today {
    color: #39ff14;
}

.theme-radioactive .calendar-day-headers .cal-day-header.cal-today .cal-day-date {
    background: linear-gradient(135deg, #1a8a10, #39ff14);
    color: #0a120a;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
}

.theme-radioactive .calendar-allday-row {
    border-bottom-color: rgba(57, 255, 20, 0.08);
}

.theme-radioactive .calendar-allday-row .cal-allday-label {
    color: #4a6a40;
    border-right-color: rgba(57, 255, 20, 0.15);
}

.theme-radioactive .calendar-allday-row .cal-allday-cell {
    border-right-color: rgba(57, 255, 20, 0.08);
}

.theme-radioactive .calendar-time-grid .cal-cell {
    border-bottom-color: rgba(57, 255, 20, 0.06);
    border-right-color: rgba(57, 255, 20, 0.06);
}

.theme-radioactive .calendar-time-grid .cal-cell.cal-today-col {
    background-color: rgba(57, 255, 20, 0.03);
}

.theme-radioactive .calendar-time-grid .cal-time-label {
    color: #4a6a40;
}

.theme-radioactive .calendar-nav .calendar-range {
    color: #6a8a60;
}

/* Calendar mobile */
.theme-radioactive .cal-mobile-day {
    color: #e0ffe0;
    border-bottom-color: rgba(57, 255, 20, 0.15);
}

.theme-radioactive .cal-mobile-event {
    color: #a8c8a0;
    border-bottom-color: rgba(57, 255, 20, 0.08);
}

.theme-radioactive .cal-mobile-event:hover,
.theme-radioactive .cal-mobile-event:focus {
    background: rgba(57, 255, 20, 0.06);
    color: #c0deb8;
}

.theme-radioactive .cal-mobile-event small {
    color: #4a6a40;
}

/* ========================================
   Avali Theme — default colors + peeking Avali
   ========================================
   Visuals are identical to the default theme.
   The magic is the corner-peek images driven
   by JS (see Site.Master avali peek system).
   ======================================== */

/* Jumbotron — swap hero background for the Avali banner */
.theme-avali .jumbotron {
    background: linear-gradient(135deg, rgba(21, 11, 38, 0.7), rgba(124, 58, 237, 0.5)),
                url('/img/avali/avalibanner.webp') center center / cover no-repeat;
}

/* Sidebar — Avali feather icon watermark behind brand */
.theme-avali .sidebar-brand {
    position: relative;
}

.theme-avali .sidebar-brand::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    background: url('/img/avali/avaliicon.jpg') center / contain no-repeat;
    opacity: 0.25;
    pointer-events: none;
}

/* Avali peek images — fixed-position, hidden off-screen, slide in */
.avali-peek {
    position: fixed;
    z-index: 9999;
    width: 120px;
    height: auto;
    pointer-events: none;
    opacity: 0;
    transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.8s ease;
}

/* Corner positions — start off-screen, slide in when .avali-peek-visible */
.avali-peek-top-left {
    top: 0;
    left: 0;
    transform: translate(-100%, -100%) rotate(15deg);
    transform-origin: bottom right;
}

.avali-peek-top-left.avali-peek-visible {
    transform: translate(-15%, -15%) rotate(15deg);
    opacity: 1;
}

.avali-peek-top-right {
    top: 0;
    right: 0;
    transform: translate(100%, -100%) rotate(-15deg);
    transform-origin: bottom left;
}

.avali-peek-top-right.avali-peek-visible {
    transform: translate(15%, -15%) rotate(-15deg);
    opacity: 1;
}

.avali-peek-bottom-left {
    bottom: 0;
    left: 0;
    transform: translate(-100%, 100%) rotate(-10deg);
    transform-origin: top right;
}

.avali-peek-bottom-left.avali-peek-visible {
    transform: translate(-15%, 15%) rotate(-10deg);
    opacity: 1;
}

.avali-peek-bottom-right {
    bottom: 0;
    right: 0;
    transform: translate(100%, 100%) rotate(10deg);
    transform-origin: top left;
}

.avali-peek-bottom-right.avali-peek-visible {
    transform: translate(15%, 15%) rotate(10deg);
    opacity: 1;
}

/* Smaller on mobile */
@media (max-width: 767px) {
    .avali-peek {
        width: 80px;
    }
}

/* ========================================
   CRT Monitor Theme — phosphor green, scanlines, flicker
   ======================================== */

@keyframes crt-flicker {
    0%   { opacity: 0.97; }
    5%   { opacity: 1; }
    10%  { opacity: 0.98; }
    15%  { opacity: 1; }
    50%  { opacity: 1; }
    52%  { opacity: 0.96; }
    54%  { opacity: 1; }
    100% { opacity: 1; }
}

/* Scanline overlay via ::after on body */
.theme-crt {
    background: #0a0a0a;
    color: #33ff33;
    animation: crt-flicker 4s infinite;
}

.theme-crt::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 9998;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 2px,
        rgba(0, 0, 0, 0.15) 2px,
        rgba(0, 0, 0, 0.15) 4px
    );
}

.theme-crt a {
    color: #66ff66;
}

.theme-crt a:hover,
.theme-crt a:focus {
    color: #ccffcc;
}

.theme-crt h1,
.theme-crt h2,
.theme-crt h3,
.theme-crt h4,
.theme-crt h5,
.theme-crt h6 {
    color: #44ff44;
}

.theme-crt p {
    color: #28cc28;
}

.theme-crt .text-muted {
    color: #1a8a1a;
}

/* Panels */
.theme-crt .panel {
    background-color: rgba(0, 10, 0, 0.8);
    border-color: rgba(51, 255, 51, 0.25);
    box-shadow: 0 0 8px rgba(51, 255, 51, 0.1);
}

.theme-crt .panel-default > .panel-heading {
    background-color: rgba(0, 20, 0, 0.7);
    border-color: rgba(51, 255, 51, 0.2);
    color: #44ff44;
}

.theme-crt .panel-body {
    color: #28cc28;
}

/* Tables */
.theme-crt .table {
    color: #33ff33;
}

.theme-crt .table > thead > tr > th {
    color: #44ff44;
    background-color: rgba(0, 20, 0, 0.6);
    border-bottom-color: rgba(51, 255, 51, 0.3);
}

.theme-crt .table > tbody > tr > td {
    border-top-color: rgba(51, 255, 51, 0.12);
}

.theme-crt .table-striped > tbody > tr:nth-of-type(odd) {
    background-color: rgba(0, 15, 0, 0.5);
}

.theme-crt .table-striped > tbody > tr:nth-of-type(even) {
    background-color: rgba(0, 8, 0, 0.4);
}

/* Forms */
.theme-crt .form-control,
.theme-crt .form-control[readonly],
.theme-crt .form-control[disabled],
.theme-crt select.form-control,
.theme-crt .input-group .form-control {
    background-color: rgba(0, 10, 0, 0.8);
    border-color: rgba(51, 255, 51, 0.3);
    color: #33ff33;
}

.theme-crt .form-control:focus {
    background-color: rgba(0, 15, 0, 0.9);
    border-color: #33ff33;
    color: #66ff66;
    box-shadow: 0 0 10px rgba(51, 255, 51, 0.3);
}

.theme-crt .form-control::placeholder {
    color: #1a6a1a;
}

.theme-crt select.form-control option {
    background-color: #0a0a0a;
    color: #33ff33;
}

/* Buttons */
.theme-crt .btn-primary {
    background: #1a6a1a;
    border-color: #33ff33;
    box-shadow: 0 0 8px rgba(51, 255, 51, 0.25);
    color: #ccffcc;
}

.theme-crt .btn-primary:hover,
.theme-crt .btn-primary:focus,
.theme-crt .btn-primary:active {
    background: #228a22;
    border-color: #66ff66;
    box-shadow: 0 0 14px rgba(51, 255, 51, 0.4);
    color: #fff;
}

.theme-crt .btn-default {
    background-color: rgba(0, 20, 0, 0.6);
    border-color: rgba(51, 255, 51, 0.3);
    color: #33ff33;
}

.theme-crt .btn-default:hover,
.theme-crt .btn-default:focus {
    background-color: rgba(0, 30, 0, 0.7);
    border-color: #33ff33;
    color: #66ff66;
}

/* Alerts */
.theme-crt .alert-info {
    background-color: rgba(0, 40, 0, 0.4);
    border-color: rgba(51, 255, 51, 0.4);
    color: #66ff66;
}

.theme-crt .alert-success {
    background-color: rgba(0, 50, 0, 0.4);
    border-color: #33ff33;
    color: #66ff66;
}

.theme-crt .alert-danger {
    background-color: rgba(50, 0, 0, 0.4);
    border-color: #ff3333;
    color: #ff6666;
}

/* Sidebar */
.theme-crt .sidebar {
    background-color: #050505;
    border-right-color: rgba(51, 255, 51, 0.2);
}

.theme-crt .sidebar-brand {
    border-bottom-color: rgba(51, 255, 51, 0.2);
}

.theme-crt .sidebar-brand a {
    color: #33ff33;
}

.theme-crt .sidebar-nav li a {
    color: #28aa28;
}

.theme-crt .sidebar-nav li a:hover {
    color: #66ff66;
    background-color: rgba(0, 30, 0, 0.5);
}

.theme-crt .sidebar-nav li.active a {
    color: #33ff33;
    background: linear-gradient(90deg, rgba(51, 255, 51, 0.15), transparent);
    border-left-color: #33ff33;
}

.theme-crt .sidebar-footer {
    border-top-color: rgba(51, 255, 51, 0.2);
}

.theme-crt .sidebar-cta-btn {
    background: #1a6a1a;
    border-color: rgba(51, 255, 51, 0.3);
    box-shadow: 0 0 8px rgba(51, 255, 51, 0.2);
    color: #ccffcc;
}

.theme-crt .sidebar-theme-picker {
    color: #1a8a1a;
}

/* Topbar */
.theme-crt .topbar {
    background-color: #050505;
    border-bottom-color: rgba(51, 255, 51, 0.2);
}

.theme-crt .topbar-brand {
    color: #33ff33;
}

.theme-crt .topbar-toggle {
    color: #28aa28;
}

/* Labels / badges */
.theme-crt .label-primary {
    background-color: #1a6a1a;
    color: #ccffcc;
}

.theme-crt .label-info {
    background-color: rgba(0, 40, 0, 0.7);
    color: #66ff66;
}

.theme-crt .label-default {
    background-color: rgba(0, 20, 0, 0.7);
    color: #28aa28;
}

.theme-crt .label-success {
    background-color: rgba(0, 50, 0, 0.7);
    color: #33ff33;
}

.theme-crt .badge {
    background-color: #33ff33;
    color: #0a0a0a;
}

/* Well */
.theme-crt .well {
    background-color: rgba(0, 10, 0, 0.6);
    border-color: rgba(51, 255, 51, 0.25);
    color: #28cc28;
}

/* Help blocks */
.theme-crt .help-block {
    color: #1a8a1a;
}

/* Cards */
.theme-crt .hypnotist-card,
.theme-crt .awards-category-card,
.theme-crt .vote-category-card,
.theme-crt .link-card,
.theme-crt .asset-card,
.theme-crt .story-card {
    background: rgba(0, 10, 0, 0.6);
    border-color: rgba(51, 255, 51, 0.2);
}

.theme-crt .hypnotist-card:hover,
.theme-crt .awards-category-card:hover,
.theme-crt .vote-category-card:focus-within {
    border-color: #33ff33;
    box-shadow: 0 0 14px rgba(51, 255, 51, 0.2);
}

.theme-crt .awards-category-header,
.theme-crt .vote-category-header {
    background: rgba(0, 20, 0, 0.4);
    border-bottom-color: rgba(51, 255, 51, 0.12);
}

.theme-crt .awards-category-icon,
.theme-crt .vote-category-icon {
    color: #33ff33;
    text-shadow: 0 0 10px rgba(51, 255, 51, 0.4);
}

.theme-crt .hypnotist-card-name,
.theme-crt .awards-category-header h4,
.theme-crt .vote-category-header h4,
.theme-crt .link-card-name {
    color: #44ff44;
}

.theme-crt .link-card-description,
.theme-crt .asset-card-description {
    color: #28aa28;
}

/* Glow overrides — phosphor green */
.theme-crt .awards-hero-icon,
.theme-crt .calendar-hero-icon,
.theme-crt .assets-hero-icon,
.theme-crt .contact-hero-icon {
    color: #33ff33;
    text-shadow: 0 0 16px rgba(51, 255, 51, 0.5), 0 0 32px rgba(51, 255, 51, 0.25);
}

.theme-crt .awards-ring-1,
.theme-crt .cal-ring-1 {
    border-top-color: rgba(51, 255, 51, 0.35);
    border-right-color: rgba(51, 255, 51, 0.12);
}

.theme-crt .awards-ring-2,
.theme-crt .cal-ring-2 {
    border-top-color: rgba(51, 255, 51, 0.25);
    border-left-color: rgba(51, 255, 51, 0.1);
}

.theme-crt .awards-ring-3,
.theme-crt .cal-ring-3 {
    border-top-color: rgba(51, 255, 51, 0.18);
    border-bottom-color: rgba(51, 255, 51, 0.06);
}

.theme-crt .cal-now-line {
    background: #33ff33;
    box-shadow: 0 0 6px rgba(51, 255, 51, 0.5), 0 0 10px rgba(51, 255, 51, 0.3);
}

.theme-crt .cal-now-line::before {
    background: #33ff33;
    box-shadow: 0 0 6px rgba(51, 255, 51, 0.5), 0 0 12px rgba(51, 255, 51, 0.3);
}

.theme-crt .assets-line {
    box-shadow: none;
}

.theme-crt .assets-line-1 { background: linear-gradient(90deg, transparent, rgba(51, 255, 51, 0.25), transparent); }
.theme-crt .assets-line-2 { background: linear-gradient(90deg, transparent, rgba(51, 255, 51, 0.2), transparent); }
.theme-crt .assets-line-3 { background: linear-gradient(90deg, transparent, rgba(51, 255, 51, 0.18), transparent); }
.theme-crt .assets-line-4 { background: linear-gradient(90deg, transparent, rgba(51, 255, 51, 0.14), transparent); }
.theme-crt .assets-line-5 { background: linear-gradient(90deg, transparent, rgba(51, 255, 51, 0.1), transparent); }

.theme-crt .contact-ripple {
    border-color: rgba(51, 255, 51, 0.2);
}

/* Sub-menu */
.theme-crt .sidebar-submenu-list {
    background-color: rgba(0, 10, 0, 0.5);
}

/* Checkbox overrides */
.theme-crt input[type="checkbox"] {
    border-color: rgba(51, 255, 51, 0.4);
}

.theme-crt input[type="checkbox"]:checked {
    background-color: #33ff33;
    border-color: #33ff33;
}

/* Footer */
.theme-crt footer {
    color: #1a8a1a;
}

.theme-crt footer a {
    color: #28aa28;
}

.theme-crt footer a:hover {
    color: #33ff33;
}

/* Image overlays */
.theme-crt .feature-card-overlay {
    background: rgba(0, 5, 0, 0.8);
}

.theme-crt .feature-card:hover .feature-card-overlay,
.theme-crt .feature-card:focus .feature-card-overlay {
    background: rgba(0, 5, 0, 0.65);
}

.theme-crt .feature-card h3 {
    color: #44ff44;
}

.theme-crt .feature-card p {
    color: #28cc28;
}

.theme-crt .hypnotist-card-image {
    background: rgba(0, 10, 0, 0.5);
    border-bottom-color: rgba(51, 255, 51, 0.15);
}

.theme-crt .hypnotist-card-image-default {
    background: rgba(0, 10, 0, 0.5);
    border-bottom-color: rgba(51, 255, 51, 0.15);
}

.theme-crt .hypnotist-card-image-default .glyphicon {
    color: #33ff33;
}

/* Jumbotron */
.theme-crt .jumbotron {
    background: rgba(0, 10, 0, 0.9);
    border-color: rgba(51, 255, 51, 0.3);
}

.theme-crt .jumbotron h1 {
    color: #33ff33;
    text-shadow: 0 0 20px rgba(51, 255, 51, 0.5);
}

.theme-crt .jumbotron .lead {
    color: #28cc28;
}

/* Calendar */
.theme-crt .calendar-wrapper {
    border-color: rgba(51, 255, 51, 0.2);
    background-color: rgba(0, 5, 0, 0.6);
}

.theme-crt .calendar-day-headers {
    background-color: rgba(0, 15, 0, 0.6);
    border-bottom-color: rgba(51, 255, 51, 0.2);
}

.theme-crt .calendar-day-headers .cal-corner {
    border-right-color: rgba(51, 255, 51, 0.15);
}

.theme-crt .calendar-day-headers .cal-day-header {
    color: #1a8a1a;
    border-right-color: rgba(51, 255, 51, 0.08);
}

.theme-crt .calendar-day-headers .cal-day-header .cal-day-date {
    color: #33ff33;
}

.theme-crt .calendar-day-headers .cal-day-header.cal-today {
    color: #66ff66;
}

.theme-crt .calendar-day-headers .cal-day-header.cal-today .cal-day-date {
    background: #33ff33;
    color: #0a0a0a;
    box-shadow: 0 0 10px rgba(51, 255, 51, 0.5);
}

.theme-crt .calendar-allday-row {
    border-bottom-color: rgba(51, 255, 51, 0.1);
}

.theme-crt .calendar-allday-row .cal-allday-label {
    color: #1a6a1a;
    border-right-color: rgba(51, 255, 51, 0.15);
}

.theme-crt .calendar-allday-row .cal-allday-cell {
    border-right-color: rgba(51, 255, 51, 0.08);
}

.theme-crt .calendar-time-grid .cal-cell {
    border-bottom-color: rgba(51, 255, 51, 0.06);
    border-right-color: rgba(51, 255, 51, 0.06);
}

.theme-crt .calendar-time-grid .cal-cell.cal-today-col {
    background-color: rgba(51, 255, 51, 0.03);
}

.theme-crt .calendar-time-grid .cal-time-label {
    color: #1a6a1a;
}

.theme-crt .calendar-nav .calendar-range {
    color: #1a8a1a;
}

/* Calendar mobile */
.theme-crt .cal-mobile-day {
    color: #44ff44;
    border-bottom-color: rgba(51, 255, 51, 0.2);
}

.theme-crt .cal-mobile-event {
    color: #28cc28;
    border-bottom-color: rgba(51, 255, 51, 0.1);
}

.theme-crt .cal-mobile-event:hover,
.theme-crt .cal-mobile-event:focus {
    background: rgba(51, 255, 51, 0.06);
    color: #33ff33;
}

.theme-crt .cal-mobile-event small {
    color: #1a6a1a;
}

/* ========================================
   Comic Sans Theme — the font, the whole font,
   and nothing but the font
   ======================================== */

.theme-comic-sans,
.theme-comic-sans *:not(.glyphicon) {
    font-family: 'Comic Sans MS', 'Comic Sans', 'Chalkboard SE', cursive !important;
}

/* ========================================
   Bee Movie Theme — yellow & black stripes,
   hover wobble
   ======================================== */

@keyframes bee-wobble {
    0%   { transform: rotate(0deg); }
    25%  { transform: rotate(1.5deg); }
    50%  { transform: rotate(0deg); }
    75%  { transform: rotate(-1.5deg); }
    100% { transform: rotate(0deg); }
}

.theme-bee-movie {
    background: repeating-linear-gradient(
        180deg,
        #ffd700 0px,
        #ffd700 40px,
        #1a1a00 40px,
        #1a1a00 80px
    );
    color: #1a1a00;
}

.theme-bee-movie a {
    color: #8b6914;
}

.theme-bee-movie a:hover,
.theme-bee-movie a:focus {
    color: #5a4400;
    animation: bee-wobble 0.3s ease;
}

.theme-bee-movie h1,
.theme-bee-movie h2,
.theme-bee-movie h3,
.theme-bee-movie h4,
.theme-bee-movie h5,
.theme-bee-movie h6 {
    color: #1a1a00;
}

.theme-bee-movie p {
    color: #33300a;
}

.theme-bee-movie .text-muted {
    color: #6b6520;
}

/* Panels */
.theme-bee-movie .panel {
    background-color: rgba(255, 215, 0, 0.85);
    border-color: #1a1a00;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.theme-bee-movie .panel-default > .panel-heading {
    background-color: #1a1a00;
    border-color: #1a1a00;
    color: #ffd700;
}

.theme-bee-movie .panel-body {
    color: #33300a;
}

/* Tables */
.theme-bee-movie .table {
    color: #1a1a00;
}

.theme-bee-movie .table > thead > tr > th {
    color: #ffd700;
    background-color: #1a1a00;
    border-bottom-color: #ffd700;
}

.theme-bee-movie .table > tbody > tr > td {
    border-top-color: rgba(26, 26, 0, 0.2);
}

.theme-bee-movie .table-striped > tbody > tr:nth-of-type(odd) {
    background-color: rgba(255, 215, 0, 0.5);
}

.theme-bee-movie .table-striped > tbody > tr:nth-of-type(even) {
    background-color: rgba(255, 215, 0, 0.3);
}

/* Forms */
.theme-bee-movie .form-control,
.theme-bee-movie .form-control[readonly],
.theme-bee-movie .form-control[disabled],
.theme-bee-movie select.form-control,
.theme-bee-movie .input-group .form-control {
    background-color: rgba(255, 245, 200, 0.9);
    border-color: #1a1a00;
    color: #1a1a00;
}

.theme-bee-movie .form-control:focus {
    background-color: #fff8dc;
    border-color: #ffd700;
    color: #1a1a00;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.theme-bee-movie .form-control::placeholder {
    color: #8b8640;
}

.theme-bee-movie select.form-control option {
    background-color: #fff8dc;
    color: #1a1a00;
}

/* Buttons */
.theme-bee-movie .btn-primary {
    background: #1a1a00;
    border-color: #ffd700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    color: #ffd700;
}

.theme-bee-movie .btn-primary:hover,
.theme-bee-movie .btn-primary:focus,
.theme-bee-movie .btn-primary:active {
    background: #33300a;
    border-color: #ffe44d;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
    color: #ffe44d;
    animation: bee-wobble 0.3s ease;
}

.theme-bee-movie .btn-default {
    background-color: rgba(255, 215, 0, 0.6);
    border-color: #1a1a00;
    color: #1a1a00;
}

.theme-bee-movie .btn-default:hover,
.theme-bee-movie .btn-default:focus {
    background-color: rgba(255, 215, 0, 0.85);
    border-color: #33300a;
    color: #1a1a00;
    animation: bee-wobble 0.3s ease;
}

/* Alerts */
.theme-bee-movie .alert-info {
    background-color: rgba(255, 215, 0, 0.3);
    border-color: #1a1a00;
    color: #33300a;
}

.theme-bee-movie .alert-success {
    background-color: rgba(200, 200, 0, 0.3);
    border-color: #4a4a00;
    color: #2a2a00;
}

.theme-bee-movie .alert-danger {
    background-color: rgba(180, 60, 0, 0.2);
    border-color: #8b2500;
    color: #5a1a00;
}

/* Sidebar */
.theme-bee-movie .sidebar {
    background-color: #1a1a00;
    border-right-color: #ffd700;
}

.theme-bee-movie .sidebar-brand {
    border-bottom-color: rgba(255, 215, 0, 0.3);
}

.theme-bee-movie .sidebar-brand a {
    color: #ffd700;
}

.theme-bee-movie .sidebar-nav li a {
    color: #ccaa00;
}

.theme-bee-movie .sidebar-nav li a:hover {
    color: #ffd700;
    background-color: rgba(255, 215, 0, 0.1);
    animation: bee-wobble 0.3s ease;
}

.theme-bee-movie .sidebar-nav li.active a {
    color: #ffd700;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.2), transparent);
    border-left-color: #ffd700;
}

.theme-bee-movie .sidebar-footer {
    border-top-color: rgba(255, 215, 0, 0.3);
}

.theme-bee-movie .sidebar-cta-btn {
    background: #ffd700;
    border-color: #1a1a00;
    color: #1a1a00;
}

.theme-bee-movie .sidebar-theme-picker {
    color: #8b7a00;
}

/* Topbar */
.theme-bee-movie .topbar {
    background-color: #1a1a00;
    border-bottom-color: #ffd700;
}

.theme-bee-movie .topbar-brand {
    color: #ffd700;
}

.theme-bee-movie .topbar-toggle {
    color: #ccaa00;
}

/* Labels / badges */
.theme-bee-movie .label-primary {
    background-color: #1a1a00;
    color: #ffd700;
}

.theme-bee-movie .label-info {
    background-color: rgba(255, 215, 0, 0.4);
    color: #33300a;
}

.theme-bee-movie .label-default {
    background-color: rgba(26, 26, 0, 0.6);
    color: #ccaa00;
}

.theme-bee-movie .label-success {
    background-color: rgba(200, 200, 0, 0.4);
    color: #2a2a00;
}

.theme-bee-movie .badge {
    background-color: #1a1a00;
    color: #ffd700;
}

/* Well */
.theme-bee-movie .well {
    background-color: rgba(255, 215, 0, 0.4);
    border-color: #1a1a00;
    color: #33300a;
}

/* Help blocks */
.theme-bee-movie .help-block {
    color: #6b6520;
}

/* Cards */
.theme-bee-movie .hypnotist-card,
.theme-bee-movie .awards-category-card,
.theme-bee-movie .vote-category-card,
.theme-bee-movie .link-card,
.theme-bee-movie .asset-card,
.theme-bee-movie .story-card {
    background: rgba(255, 215, 0, 0.6);
    border-color: #1a1a00;
}

.theme-bee-movie .hypnotist-card:hover,
.theme-bee-movie .awards-category-card:hover,
.theme-bee-movie .vote-category-card:focus-within {
    border-color: #33300a;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    animation: bee-wobble 0.3s ease;
}

.theme-bee-movie .awards-category-header,
.theme-bee-movie .vote-category-header {
    background: rgba(26, 26, 0, 0.8);
    border-bottom-color: #ffd700;
}

.theme-bee-movie .awards-category-icon,
.theme-bee-movie .vote-category-icon {
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.theme-bee-movie .hypnotist-card-name,
.theme-bee-movie .awards-category-header h4,
.theme-bee-movie .vote-category-header h4,
.theme-bee-movie .link-card-name {
    color: #1a1a00;
}

.theme-bee-movie .link-card-description,
.theme-bee-movie .asset-card-description {
    color: #33300a;
}

/* Glow overrides — golden */
.theme-bee-movie .awards-hero-icon,
.theme-bee-movie .calendar-hero-icon,
.theme-bee-movie .assets-hero-icon,
.theme-bee-movie .contact-hero-icon {
    color: #1a1a00;
    text-shadow: 0 0 16px rgba(255, 215, 0, 0.5), 0 0 32px rgba(255, 215, 0, 0.25);
}

.theme-bee-movie .awards-ring-1,
.theme-bee-movie .cal-ring-1 {
    border-top-color: rgba(26, 26, 0, 0.4);
    border-right-color: rgba(26, 26, 0, 0.15);
}

.theme-bee-movie .awards-ring-2,
.theme-bee-movie .cal-ring-2 {
    border-top-color: rgba(255, 215, 0, 0.5);
    border-left-color: rgba(255, 215, 0, 0.2);
}

.theme-bee-movie .awards-ring-3,
.theme-bee-movie .cal-ring-3 {
    border-top-color: rgba(26, 26, 0, 0.25);
    border-bottom-color: rgba(26, 26, 0, 0.1);
}

.theme-bee-movie .cal-now-line {
    background: #1a1a00;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.4), 0 0 10px rgba(255, 215, 0, 0.3);
}

.theme-bee-movie .cal-now-line::before {
    background: #1a1a00;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.4), 0 0 12px rgba(255, 215, 0, 0.3);
}

.theme-bee-movie .assets-line {
    box-shadow: none;
}

.theme-bee-movie .assets-line-1 { background: linear-gradient(90deg, transparent, rgba(26, 26, 0, 0.3), transparent); }
.theme-bee-movie .assets-line-2 { background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent); }
.theme-bee-movie .assets-line-3 { background: linear-gradient(90deg, transparent, rgba(26, 26, 0, 0.25), transparent); }
.theme-bee-movie .assets-line-4 { background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent); }
.theme-bee-movie .assets-line-5 { background: linear-gradient(90deg, transparent, rgba(26, 26, 0, 0.15), transparent); }

.theme-bee-movie .contact-ripple {
    border-color: rgba(26, 26, 0, 0.3);
}

/* Sub-menu */
.theme-bee-movie .sidebar-submenu-list {
    background-color: rgba(26, 26, 0, 0.8);
}

/* Checkbox overrides */
.theme-bee-movie input[type="checkbox"] {
    border-color: #1a1a00;
}

.theme-bee-movie input[type="checkbox"]:checked {
    background-color: #ffd700;
    border-color: #1a1a00;
}

/* Footer */
.theme-bee-movie footer {
    color: #6b6520;
}

.theme-bee-movie footer a {
    color: #8b7a00;
}

.theme-bee-movie footer a:hover {
    color: #1a1a00;
}

/* Image overlays */
.theme-bee-movie .feature-card-overlay {
    background: rgba(255, 215, 0, 0.7);
}

.theme-bee-movie .feature-card:hover .feature-card-overlay,
.theme-bee-movie .feature-card:focus .feature-card-overlay {
    background: rgba(255, 215, 0, 0.55);
    animation: bee-wobble 0.3s ease;
}

.theme-bee-movie .feature-card h3 {
    color: #1a1a00;
}

.theme-bee-movie .feature-card p {
    color: #33300a;
}

.theme-bee-movie .hypnotist-card-image {
    background: rgba(255, 215, 0, 0.3);
    border-bottom-color: #1a1a00;
}

.theme-bee-movie .hypnotist-card-image-default {
    background: rgba(255, 215, 0, 0.3);
    border-bottom-color: #1a1a00;
}

.theme-bee-movie .hypnotist-card-image-default .glyphicon {
    color: #1a1a00;
}

/* Jumbotron */
.theme-bee-movie .jumbotron {
    background: linear-gradient(135deg, rgba(26, 26, 0, 0.9), rgba(100, 80, 0, 0.8)),
                url('/img/galaxy-hero.jpg') center center / cover no-repeat;
    border-color: #ffd700;
}

.theme-bee-movie .jumbotron h1 {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.theme-bee-movie .jumbotron .lead {
    color: #ffe44d;
}

/* Calendar */
.theme-bee-movie .calendar-wrapper {
    border-color: #1a1a00;
    background-color: rgba(255, 215, 0, 0.4);
}

.theme-bee-movie .calendar-day-headers {
    background-color: rgba(26, 26, 0, 0.8);
    border-bottom-color: #ffd700;
}

.theme-bee-movie .calendar-day-headers .cal-corner {
    border-right-color: rgba(255, 215, 0, 0.3);
}

.theme-bee-movie .calendar-day-headers .cal-day-header {
    color: #ccaa00;
    border-right-color: rgba(255, 215, 0, 0.15);
}

.theme-bee-movie .calendar-day-headers .cal-day-header .cal-day-date {
    color: #ffd700;
}

.theme-bee-movie .calendar-day-headers .cal-day-header.cal-today {
    color: #ffe44d;
}

.theme-bee-movie .calendar-day-headers .cal-day-header.cal-today .cal-day-date {
    background: #ffd700;
    color: #1a1a00;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.theme-bee-movie .calendar-allday-row {
    border-bottom-color: rgba(26, 26, 0, 0.15);
}

.theme-bee-movie .calendar-allday-row .cal-allday-label {
    color: #8b7a00;
    border-right-color: rgba(26, 26, 0, 0.2);
}

.theme-bee-movie .calendar-allday-row .cal-allday-cell {
    border-right-color: rgba(26, 26, 0, 0.1);
}

.theme-bee-movie .calendar-time-grid .cal-cell {
    border-bottom-color: rgba(26, 26, 0, 0.1);
    border-right-color: rgba(26, 26, 0, 0.1);
}

.theme-bee-movie .calendar-time-grid .cal-cell.cal-today-col {
    background-color: rgba(255, 215, 0, 0.15);
}

.theme-bee-movie .calendar-time-grid .cal-time-label {
    color: #8b7a00;
}

.theme-bee-movie .calendar-nav .calendar-range {
    color: #6b6520;
}

/* Calendar mobile */
.theme-bee-movie .cal-mobile-day {
    color: #1a1a00;
    border-bottom-color: rgba(26, 26, 0, 0.3);
}

.theme-bee-movie .cal-mobile-event {
    color: #33300a;
    border-bottom-color: rgba(26, 26, 0, 0.15);
}

.theme-bee-movie .cal-mobile-event:hover,
.theme-bee-movie .cal-mobile-event:focus {
    background: rgba(255, 215, 0, 0.3);
    color: #1a1a00;
}

.theme-bee-movie .cal-mobile-event small {
    color: #8b7a00;
}

/* ========================================
   Earthquake Theme — default colors + constant jitter
   ======================================== */

@keyframes earthquake-shake {
    0%   { transform: translate(0, 0) rotate(0deg); }
    1%   { transform: translate(-1px, 1px) rotate(-0.3deg); }
    2%   { transform: translate(2px, -1px) rotate(0.3deg); }
    3%   { transform: translate(-2px, 0px) rotate(0deg); }
    4%   { transform: translate(1px, 1px) rotate(0.2deg); }
    5%   { transform: translate(-1px, -1px) rotate(-0.2deg); }
    6%   { transform: translate(2px, 0px) rotate(0.3deg); }
    7%   { transform: translate(-1px, -1px) rotate(0.2deg); }
    8%   { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.theme-earthquake {
    animation: earthquake-shake 5s infinite linear;
    overflow-x: hidden;
}
