* {
    font-family: degular-mono, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--black);
    background-color: var(--white);
}

:root {
    --black: #000;
    --white: #fff;
    --grey: #BEBEBE;
}

body {
    padding: 20px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: var(--grey);
}

.site-icon {
    width: 38px;
    height: auto;
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: transparent;
    z-index: 9;
}

.channel-title {
    margin-bottom: 30px;
}

.sub-heading {
    font-size: 10px;
    color: var(--grey);
    margin-bottom: 10px;
}

.page-contents {
    max-width: 1080px;
}
.page-content-flex {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 20px;
}

.page-flex-title {
    padding-right: 0px;
    color: var(--grey);
    width: 100%;
}

.page-flex-text {
    width: 100%;
}

.page-flex-image {
    max-width: 400px;
    height: auto;
    width: 100%;
    object-fit: contain;
    margin-bottom: 40px;
    margin-right: 20px;
}

/* List styling */
.page-flex-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-flex-text li {
    position: relative;
    padding-left: 10px;
    margin-bottom: 2px;
}

.page-flex-text li:before {
    content: "-";
    position: absolute;
    left: 0;
}

/* Channel container styling */
[channel="mainChannel"] {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

/* Channel info styling */
.channel-info {
    margin-bottom: 20vh;
}

.channel-info section {
    margin-bottom: 10px;
}


/* Horizontal scroll gallery container */
[arena-contents] {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 0px;
    -webkit-overflow-scrolling: touch;
    
    /* Hide scrollbar completely while maintaining scroll functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
[arena-contents]::-webkit-scrollbar {
    display: none;
}

/* Individual content item styling */
.content-item {
    flex: 0 0 auto;
    width: 250px; /* Fixed width for all items */
    display: flex;
    flex-direction: column;
}

/* Title styling */
.content-item p[arena-data="title"] {
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Image styling */
.content-item img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    object-fit: contain;
    display: block;
}


@media (max-width: 690px) {
    .page-content-flex {
        flex-direction: column;
    }
}