/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 10 versions,> 0%,IE 10,IE 11,not dead
*/

:root {
	--tile-size: 40px;
	--c1: #0d1117;
	--c2: #161b22;
	--border-color: #8be9fd;
	--text-color: #f8f8f2;
	--accent: #ff79c6;
	--pill-radius: 6px;
}

body {
	margin: 0;
	height: 100vh;
	background: -webkit-radial-gradient(center, circle, #0a0f15 0%, #000 80%);
	background: -moz-radial-gradient(center, circle, #0a0f15 0%, #000 80%);
	background: -o-radial-gradient(center, circle, #0a0f15 0%, #000 80%);
	background: radial-gradient(circle at center, #0a0f15 0%, #000 80%);
	font-family: "Orbitron", sans-serif;
}

body.readable-font {
    font-family: "Arial", "Helvetica", sans-serif !important;
    line-height: 1.6;
}

#guild-id {
	font-size: 0.75rem;
	text-decoration: none;
    background: #1a2333;
    padding: 2px 6px;
    border-radius: 5px;
    color: #70b3ff;
    border: 1px solid #2c3b55;
}

/* checkerboard */
#checkerboard {
	position: fixed;
	top: -40px;
	left: -40px;
	width: -webkit-calc(100% + 80px);
	width: -moz-calc(100% + 80px);
	width: calc(100% + 80px);
	height: -webkit-calc(100% + 80px);
	height: -moz-calc(100% + 80px);
	height: calc(100% + 80px);
	z-index: 0;
	display: -ms-grid;
	display: grid;
	grid-auto-rows: var(--tile-size);
}
.tile {
	width: var(--tile-size);
	height: var(--tile-size);
	-webkit-transition: background 0.3s;
	-o-transition: background 0.3s;
	-moz-transition: background 0.3s;
	transition: background 0.3s;
}
.tile:hover {
	background: var(--accent) !important;
	-webkit-filter: brightness(1.4);
	        filter: brightness(1.4);
}
.tile-light {
	background: var(--c1);
}

.tile-dark {
	background: var(--c2);
}

.tile-light:hover {
	background: var(--accent) !important;
	-webkit-filter: brightness(1.4);
	        filter: brightness(1.4);
}

.tile-dark:hover {
	background: var(--c2);
	-webkit-filter: brightness(1.0);
	        filter: brightness(1.0);
	-webkit-box-shadow: 0 0 10px rgba(255, 121, 198, 0.3);
	   -moz-box-shadow: 0 0 10px rgba(255, 121, 198, 0.3);
	        box-shadow: 0 0 10px rgba(255, 121, 198, 0.3);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--accent);
	margin: 0 0 10px 0;
	text-shadow: 0 0 8px rgba(139, 233, 253, 0.4);
}

#webring-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 1rem;
	background: #1e1e1e;
	border-radius: 0.4rem;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

#webring-table th,
#webring-table td {
	padding: 0.6rem 0.8rem;
	text-align: left;
	color: #ddd;
	font-size: 0.9rem;
	border-bottom: 1px solid #333;
}

#webring-table tr:last-child td {
	border-bottom: none;
}

#webring-table th {
	background: #262626;
	font-weight: bold;
}

#webring-table a {
	color: #87cefa;
}

#webring-table a:hover {
	color: #b7e6ff;
}

#webring-table img {
	width: 88px;
	height: auto;
	border-radius: 4px;
}

p {
	font-size: 16px;
	line-height: 1.5;
	color: var(--text-color);
	margin: 0 0 15px 0;
}

a:not(.left-sidebar a) {
    color: var(--accent);
    text-decoration: none;
    -webkit-transition: all 0.2s ease;
       -o-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
           transition: all 0.2s ease;
}

a:not(.left-sidebar a):hover {
    color: #000;
    background: var(--accent);
    -webkit-border-radius: 4px;
       -moz-border-radius: 4px;
            border-radius: 4px;
    padding: 2px 4px;
    text-decoration: none;
}

ul,
ol {
	margin: 0 0 15px 20px;
	padding: 0;
	color: var(--text-color);
}

strong,
b {
	font-weight: bold;
	color: var(--accent);
}

small {
	font-size: 12px;
	color: var(--text-color);
}

.tutorial-blockquote {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
            align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    border-left: 4px solid var(--accent);
    background: rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 8px;
       -moz-border-radius: 8px;
            border-radius: 8px;
    margin: 15px 0;
    color: var(--text-color);
    font-size: 14px;
    -webkit-box-shadow: inset 0 0 8px rgba(139, 233, 253, 0.1);
       -moz-box-shadow: inset 0 0 8px rgba(139, 233, 253, 0.1);
            box-shadow: inset 0 0 8px rgba(139, 233, 253, 0.1);
}

.tutorial-blockquote span.material-symbols-outlined {
    font-size: 24px;
    color: var(--accent);
    -webkit-flex-shrink: 0;
            flex-shrink: 0;
}

.tutorial-blockquote p {
    margin: 0;
    line-height: 1.4;
}

.blockquote-warning {
    border-left-color: var(--accent);
}

#ui-container {
	position: relative;
	margin: 50px auto;
	z-index: 1;
	width: 90%;
	max-width: 600px;
	padding: 20px;
}

#ui-container h1 {
	font-size: 80px;
	margin-bottom: 20px;
	text-shadow: 0 0 20px rgba(255,121,198,0.6), 0 0 40px rgba(139,233,253,0.4);
}

#ui-container p {
	font-size: 18px;
	margin-bottom: 20px;
	color: var(--text-color);
}

#ui-container h3 {
    font-size: 22px;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 15px;
}

pre {
    background: rgba(10, 15, 20, 0.9);
    border: 1px solid var(--border-color);
    -webkit-border-radius: 12px;
       -moz-border-radius: 12px;
            border-radius: 12px;
    padding: 16px;
    overflow-x: auto;
    margin: 15px 0;
    -webkit-box-shadow: 0 0 10px rgba(139, 233, 253, 0.3), 0 0 15px rgba(255, 121, 198, 0.2);
       -moz-box-shadow: 0 0 10px rgba(139, 233, 253, 0.3), 0 0 15px rgba(255, 121, 198, 0.2);
            box-shadow: 0 0 10px rgba(139, 233, 253, 0.3), 0 0 15px rgba(255, 121, 198, 0.2);
}
code {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--accent);
    display: block;
    white-space: pre;
    overflow-x: auto;
    padding: 4px 8px;
    border-radius: 8px;
}


pre code {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--accent);
    display: block;
    white-space: pre;
}
pre:hover {
    -webkit-box-shadow: 0 0 15px rgba(255, 121, 198, 0.5), 0 0 20px rgba(139, 233, 253, 0.4);
       -moz-box-shadow: 0 0 15px rgba(255, 121, 198, 0.5), 0 0 20px rgba(139, 233, 253, 0.4);
            box-shadow: 0 0 15px rgba(255, 121, 198, 0.5), 0 0 20px rgba(139, 233, 253, 0.4);
}

#ui-container hr {
    border: 0;
    height: 2px;
    background: var(--border-color);
    margin: 20px 0;
}

#ui-container .btn {
	display: inline-block;
	margin: 10px 15px;
	padding: 12px 24px;
	color: #000;
	background: var(--accent);
	-webkit-border-radius: 8px;
	   -moz-border-radius: 8px;
	        border-radius: 8px;
	font-weight: bold;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-box-shadow: 0 0 10px rgba(255,121,198,0.5);
	   -moz-box-shadow: 0 0 10px rgba(255,121,198,0.5);
	        box-shadow: 0 0 10px rgba(255,121,198,0.5);
}

#ui-container .btn:hover {
	-webkit-transform: translateY(-3px);
	   -moz-transform: translateY(-3px);
	     -o-transform: translateY(-3px);
	        transform: translateY(-3px);
	-webkit-box-shadow: 0 0 20px rgba(255,121,198,0.8);
	   -moz-box-shadow: 0 0 20px rgba(255,121,198,0.8);
	        box-shadow: 0 0 20px rgba(255,121,198,0.8);
}

details {
    background: rgba(10, 15, 20, 0.85);
    border: 1px solid var(--border-color);
    -webkit-border-radius: 10px;
       -moz-border-radius: 10px;
            border-radius: 10px;
    padding: 10px 15px;
    margin: 15px 0;
    -webkit-box-shadow: 0 0 10px rgba(139, 233, 253, 0.3);
       -moz-box-shadow: 0 0 10px rgba(139, 233, 253, 0.3);
            box-shadow: 0 0 10px rgba(139, 233, 253, 0.3);
    color: var(--text-color);
}

details[open] {
    background: rgba(10, 15, 20, 0.95);
}

summary {
    font-weight: bold;
    cursor: pointer;
    list-style: none;
    padding: 6px 8px;
    -webkit-border-radius: 6px;
       -moz-border-radius: 6px;
            border-radius: 6px;
    background: rgba(0, 0, 0, 0.4);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
    display: inline-block;
    color: var(--accent);
}

summary:hover {
    background: var(--accent);
    color: #000;
    -webkit-box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
       -moz-box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
            box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
}

details[open] summary::after {
    content: "▾";
    float: right;
    margin-left: 10px;
}

summary::after {
    content: "▸";
    float: right;
    margin-left: 10px;
}

details p,
details pre,
details code {
    margin: 8px 0;
    color: var(--text-color);
}

details pre {
    background: rgba(0,0,0,0.25);
    padding: 10px;
    -webkit-border-radius: 8px;
       -moz-border-radius: 8px;
            border-radius: 8px;
    overflow-x: auto;
}

#search-box {
	padding: 10px 15px;
	-webkit-border-radius: 8px;
	   -moz-border-radius: 8px;
	        border-radius: 8px;
	border: 1px solid var(--border-color);
	width: 80%;
	max-width: 300px;
	font-size: 16px;
	margin-top: 10px;
	background: rgba(10,15,20,0.7);
	color: var(--text-color);
}

main {
  position: relative;
  top: auto;
  left: auto;
  -webkit-transform: none;
     -moz-transform: none;
       -o-transform: none;
          transform: none;
  margin: 20px auto;
  width: 90%;
  max-width: 600px;
  padding: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}

.poll-results { display:-webkit-box; display:-webkit-flex; display:-moz-box; display:flex; -webkit-box-orient:vertical; -webkit-box-direction:normal; -webkit-flex-direction:column; -moz-box-orient:vertical; -moz-box-direction:normal; flex-direction:column; gap:15px; margin-top:15px;}
.option { position: relative; padding:6px 10px; background:rgba(0,0,0,0.3); -webkit-border-radius:8px; -moz-border-radius:8px; border-radius:8px; color:var(--text-color);}
.option.user-choice { border:2px solid var(--accent); font-weight:bold;}
.option.winning { -webkit-box-shadow:0 0 12px var(--accent); -moz-box-shadow:0 0 12px var(--accent); box-shadow:0 0 12px var(--accent);}
.bar-container { background:rgba(255,255,255,0.1); height:24px; -webkit-border-radius:8px; -moz-border-radius:8px; border-radius:8px; overflow:hidden; margin-top:5px;}
.bar { height:100%; background:var(--accent); -webkit-transition: width 0.6s ease-in-out; -o-transition: width 0.6s ease-in-out; -moz-transition: width 0.6s ease-in-out; transition: width 0.6s ease-in-out;}
.label { font-weight:bold; color:var(--text-color);}
#poll-input {
    width: 100%;
    max-width: 100%;
    padding: 10px 12px;
    background: rgba(10, 15, 20, 0.7);
    color: var(--text-color);
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--pill-radius);
    outline: none;
    transition: all 0.2s ease;
    box-shadow: inset 0 0 6px rgba(139, 233, 253, 0.1);
    box-sizing: border-box;
}

#poll-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(255, 121, 198, 0.5), 0 0 8px rgba(139, 233, 253, 0.3) inset;
    background: rgba(10, 15, 20, 0.85);
}

#poll-input::placeholder {
    color: rgba(248, 248, 242, 0.6);
    font-style: italic;
}

#poll-input:hover {
    border-color: var(--accent);
    box-shadow: 0 0 8px rgba(255, 121, 198, 0.3);
}

#poll ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  max-width: 100%;
}

/*
button {
	background: rgba(0, 0, 0, 0.4);
	color: var(--accent);
	border: 1px solid var(--border-color);
	-webkit-border-radius: 8px;
	   -moz-border-radius: 8px;
	        border-radius: 8px;
	padding: 8px 16px;
	margin: 5px;
	font-weight: bold;
	cursor: pointer;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
button:hover {
	background: var(--accent);
	color: #000;
	-webkit-box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
	   -moz-box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
	        box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
}
*/

#poll li {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: 1px solid var(--border-color);
  -webkit-border-radius: 8px;
	   -moz-border-radius: 8px;
	        border-radius: 8px;
  padding: 8px 16px;
  margin-bottom: 8px;
  -webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
  cursor: default;
}

#poll li.user-choice {
  color: var(--accent);
  font-weight: 700;
}

#poll li.user-choice::after {
	content: " (your answer)";
}

#poll li.user-choice:hover {
	background: var(--accent);
	color: #fff;
	-webkit-box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
	   -moz-box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
	        box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
}

#poll li:hover:not(.user-choice) {
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
	   -moz-box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
	        box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
}

#font-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent);
    color: #000;
    font-weight: 700;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: background 0.2s, transform 0.2s;
}

#font-toggle-btn:hover {
    background-color: #0099cc;
    transform: translateY(-2px);
}

.left-sidebar {
	position: absolute;
	top: 20px;
	left: 10px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	        flex-direction: column;
	gap: 16px;
	width: 240px;
	padding: 20px 15px;
	background: rgba(10, 15, 20, 0.9);
	border: 1px solid var(--border-color);
	-webkit-border-radius: 14px;
	   -moz-border-radius: 14px;
	        border-radius: 14px;
	-webkit-box-shadow:
		0 0 15px rgba(139, 233, 253, 0.3),
		0 0 25px rgba(255, 121, 198, 0.2);
	   -moz-box-shadow:
		0 0 15px rgba(139, 233, 253, 0.3),
		0 0 25px rgba(255, 121, 198, 0.2);
	        box-shadow:
		0 0 15px rgba(139, 233, 253, 0.3),
		0 0 25px rgba(255, 121, 198, 0.2);
	-webkit-backdrop-filter: blur(10px);
	        backdrop-filter: blur(10px);
	z-index: 2;
	height: auto;
	overflow: visible;
}

.left-sidebar .dropdown {
    position: relative;
}

.left-sidebar .dropdown-label {
    cursor: pointer;
    display: inline-block;
}

.left-sidebar .dropdown-menu {
    display: none;
    position: fixed;
    background: rgba(10, 15, 20, 0.9);
    border: 1px solid var(--border-color);
    -webkit-border-radius: 12px;
       -moz-border-radius: 12px;
            border-radius: 12px;
    padding: 8px 0;
    white-space: nowrap;
    -webkit-box-shadow: 0 0 15px rgba(139, 233, 253, 0.3), 0 0 25px rgba(255, 121, 198, 0.2);
       -moz-box-shadow: 0 0 15px rgba(139, 233, 253, 0.3), 0 0 25px rgba(255, 121, 198, 0.2);
            box-shadow: 0 0 15px rgba(139, 233, 253, 0.3), 0 0 25px rgba(255, 121, 198, 0.2);
    z-index: 9999;
}

.left-sidebar .dropdown-menu li {
    list-style: none;
}

.left-sidebar .dropdown-menu a {
    display: block;
    padding: 8px 14px;
    color: var(--text-color);
    text-decoration: none;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.left-sidebar .dropdown-menu a:hover {
    background: var(--accent);
    color: #000;
    -webkit-box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
       -moz-box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
            box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
    -webkit-border-radius: 8px;
       -moz-border-radius: 8px;
            border-radius: 8px;
}

.left-sidebar::-webkit-scrollbar {
	width: 6px;
}

.left-sidebar::-webkit-scrollbar-thumb {
	background-color: rgba(139, 233, 253, 0.3);
	-webkit-border-radius: 3px;
	        border-radius: 3px;
}

.sidebar-item {
	border: 1px solid var(--border-color);
	-webkit-border-radius: 12px;
	   -moz-border-radius: 12px;
	        border-radius: 12px;
	padding: 12px;
	background: rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: inset 0 0 10px rgba(139, 233, 253, 0.1);
	   -moz-box-shadow: inset 0 0 10px rgba(139, 233, 253, 0.1);
	        box-shadow: inset 0 0 10px rgba(139, 233, 253, 0.1);
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.sidebar-item h3 {
	margin: 0 0 8px 0;
	font-size: 16px;
	color: var(--accent);
	text-align: center;
}

.left-sidebar ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.left-sidebar li {
	margin: 8px 0;
}

.left-sidebar a {
	color: var(--text-color);
	text-decoration: none;
	display: block;
	padding: 8px 12px;
	-webkit-border-radius: 8px;
	   -moz-border-radius: 8px;
	        border-radius: 8px;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.left-sidebar a:not(.active):hover {
	background: var(--accent);
	color: #000;
	-webkit-box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
	   -moz-box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
	        box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
}

.left-sidebar .active {
	background-color: var(--accent);
	color: #000;
}

#mobile-menu-btn {
    display: none;
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 99999;
    font-size: 28px;
    padding: 8px 14px;
    background: rgba(10,15,20,0.9);
    color: var(--accent);
    border: 1px solid var(--border-color);
    -webkit-border-radius: 8px;
       -moz-border-radius: 8px;
            border-radius: 8px;
    -webkit-box-shadow: 0 0 10px rgba(139,233,253,0.5);
       -moz-box-shadow: 0 0 10px rgba(139,233,253,0.5);
            box-shadow: 0 0 10px rgba(139,233,253,0.5);
}

/*.update-log {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	        flex-direction: column;
	gap: 6px;
	max-height: 200px;
	overflow-y: auto;
	padding: 8px 10px;
	background: rgba(0, 0, 0, 0.25);
	border: 1px solid var(--border-color);
	-webkit-border-radius: 10px;
	   -moz-border-radius: 10px;
	        border-radius: 10px;
	-webkit-box-shadow: inset 0 0 8px rgba(139, 233, 253, 0.1);
	   -moz-box-shadow: inset 0 0 8px rgba(139, 233, 253, 0.1);
	        box-shadow: inset 0 0 8px rgba(139, 233, 253, 0.1);
	font-size: 13px;
	color: var(--text-color);
	scrollbar-width: thin;
	scrollbar-color: rgba(139, 233, 253, 0.3) transparent;
}

.update-log p {
	margin: 0;
	padding: 4px 6px;
	background: rgba(10, 15, 20, 0.6);
	-webkit-border-radius: 6px;
	   -moz-border-radius: 6px;
	        border-radius: 6px;
	-webkit-box-shadow: 0 0 6px rgba(139, 233, 253, 0.3);
	   -moz-box-shadow: 0 0 6px rgba(139, 233, 253, 0.3);
	        box-shadow: 0 0 6px rgba(139, 233, 253, 0.3);
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}*/

#stats p {
	margin: 4px 0;
	font-size: 14px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	        align-items: center;
	gap: 5px;
}

.statsFilledIn {
	background: var(--accent);
	color: #000;
	padding: 3px 8px;
	-webkit-border-radius: var(--pill-radius);
	   -moz-border-radius: var(--pill-radius);
	        border-radius: var(--pill-radius);
	font-weight: bold;
}

.main-content {
	font-size: 28px;
	font-weight: bold;
	color: var(--accent);
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	   -moz-box-flex: 1;
	        flex: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	        align-items: center;
	text-shadow: 0 0 10px rgba(255, 121, 198, 0.5);
}

.main-divider {
	width: 1px;
	background: var(--border-color);
	margin: 0 20px;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
	        border-radius: 2px;
	-webkit-align-self: stretch;
	            -ms-grid-row-align: stretch;
	        align-self: stretch;
	-webkit-box-shadow: 0 0 8px rgba(139, 233, 253, 0.5);
	   -moz-box-shadow: 0 0 8px rgba(139, 233, 253, 0.5);
	        box-shadow: 0 0 8px rgba(139, 233, 253, 0.5);
}

h1 {
	color: var(--accent);
	font-size: 32px;
	text-align: center;
	margin-bottom: 20px;
	text-shadow:
		0 0 12px rgba(255, 121, 198, 0.6),
		0 0 20px rgba(139, 233, 253, 0.4);
}

#drawboxcanvas {
	display: block;
	margin: 20px auto;
	border: 2px solid var(--border-color);
	-webkit-border-radius: 12px;
	   -moz-border-radius: 12px;
	        border-radius: 12px;
	background: #fff;
	-webkit-box-shadow:
		0 0 10px rgba(139, 233, 253, 0.3),
		0 0 20px rgba(255, 121, 198, 0.2);
	   -moz-box-shadow:
		0 0 10px rgba(139, 233, 253, 0.3),
		0 0 20px rgba(255, 121, 198, 0.2);
	        box-shadow:
		0 0 10px rgba(139, 233, 253, 0.3),
		0 0 20px rgba(255, 121, 198, 0.2);
	cursor: crosshair;
	-webkit-flex-shrink: 0;
	        flex-shrink: 0;
}

/* Toolbar */
#toolbar {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	        justify-content: center;
	gap: 10px;
	margin-bottom: 15px;
	background: rgba(10, 15, 20, 0.85);
	padding: 10px 15px;
	-webkit-border-radius: 12px;
	   -moz-border-radius: 12px;
	        border-radius: 12px;
	border: 1px solid var(--border-color);
	-webkit-box-shadow: 0 0 10px rgba(139, 233, 253, 0.3);
	   -moz-box-shadow: 0 0 10px rgba(139, 233, 253, 0.3);
	        box-shadow: 0 0 10px rgba(139, 233, 253, 0.3);
}

.tool .material-icons {
	font-size: 24px;
	vertical-align: middle;
	pointer-events: none;
}

#toolbar .tool {
	background: rgba(0, 0, 0, 0.5);
	border: 1px solid var(--border-color);
	color: var(--accent);
	font-size: 18px;
	padding: 6px 12px;
	-webkit-border-radius: 8px;
	   -moz-border-radius: 8px;
	        border-radius: 8px;
	cursor: pointer;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

#toolbar .tool:hover {
	background: var(--accent);
	color: #000;
	-webkit-box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
	   -moz-box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
	        box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
}

#toolbar input[type="color"],
#toolbar input[type="range"] {
	cursor: pointer;
	-webkit-border-radius: 6px;
	   -moz-border-radius: 6px;
	        border-radius: 6px;
	border: 1px solid var(--border-color);
	padding: 2px;
}

#toolbar input[type="range"] {
	width: 120px;
}

.stroke-color {
	width: 32px;
	height: 32px;
	-webkit-border-radius: var(--pill-radius);
	   -moz-border-radius: var(--pill-radius);
	        border-radius: var(--pill-radius);
	border: 2px solid var(--border-color);
	display: inline-block;
	margin-right: 10px;
	cursor: pointer;
	-webkit-transition:
		-webkit-transform 0.2s,
		-webkit-box-shadow 0.2s;
	transition:
		-webkit-transform 0.2s,
		-webkit-box-shadow 0.2s;
	-o-transition:
		box-shadow 0.2s,
		-o-transform 0.2s;
	-moz-transition:
		transform 0.2s,
		box-shadow 0.2s,
		-moz-transform 0.2s,
		-moz-box-shadow 0.2s;
	transition:
		transform 0.2s,
		box-shadow 0.2s;
	transition:
		transform 0.2s,
		box-shadow 0.2s,
		-webkit-transform 0.2s,
		-moz-transform 0.2s,
		-o-transform 0.2s,
		-webkit-box-shadow 0.2s,
		-moz-box-shadow 0.2s;
}
.stroke-color:hover {
	-webkit-transform: scale(1.2);
	   -moz-transform: scale(1.2);
	     -o-transform: scale(1.2);
	        transform: scale(1.2);
	-webkit-box-shadow: 0 0 12px rgba(255, 121, 198, 0.5);
	   -moz-box-shadow: 0 0 12px rgba(255, 121, 198, 0.5);
	        box-shadow: 0 0 12px rgba(255, 121, 198, 0.5);
}

button {
	background: rgba(0, 0, 0, 0.4);
	color: var(--accent);
	border: 1px solid var(--border-color);
	-webkit-border-radius: 8px;
	   -moz-border-radius: 8px;
	        border-radius: 8px;
	padding: 8px 16px;
	margin: 5px;
	font-weight: bold;
	cursor: pointer;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
button:hover {
	background: var(--accent);
	color: #000;
	-webkit-box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
	   -moz-box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
	        box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
}

input[type="color"],
input[type="range"] {
	margin: 5px 10px;
	cursor: pointer;
	-webkit-border-radius: 8px;
	   -moz-border-radius: 8px;
	        border-radius: 8px;
	border: 1px solid var(--border-color);
	padding: 2px;
}
input[type="range"] {
	width: 150px;
}

#status {
	color: var(--accent);
	font-weight: bold;
	text-align: center;
	margin-top: 10px;
}

#gallery {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: 15px;
	margin-top: 20px;
}
#gallery img {
	width: 100%;
	-webkit-border-radius: 10px;
	   -moz-border-radius: 10px;
	        border-radius: 10px;
	border: 2px solid var(--border-color);
	-webkit-box-shadow: 0 0 10px rgba(139, 233, 253, 0.3);
	   -moz-box-shadow: 0 0 10px rgba(139, 233, 253, 0.3);
	        box-shadow: 0 0 10px rgba(139, 233, 253, 0.3);
	-webkit-transition:
		-webkit-transform 0.2s,
		-webkit-box-shadow 0.2s;
	transition:
		-webkit-transform 0.2s,
		-webkit-box-shadow 0.2s;
	-o-transition:
		box-shadow 0.2s,
		-o-transform 0.2s;
	-moz-transition:
		transform 0.2s,
		box-shadow 0.2s,
		-moz-transform 0.2s,
		-moz-box-shadow 0.2s;
	transition:
		transform 0.2s,
		box-shadow 0.2s;
	transition:
		transform 0.2s,
		box-shadow 0.2s,
		-webkit-transform 0.2s,
		-moz-transform 0.2s,
		-o-transform 0.2s,
		-webkit-box-shadow 0.2s,
		-moz-box-shadow 0.2s;
}
#gallery img:hover {
	-webkit-transform: scale(1.05);
	   -moz-transform: scale(1.05);
	     -o-transform: scale(1.05);
	        transform: scale(1.05);
	-webkit-box-shadow: 0 0 15px rgba(255, 121, 198, 0.6);
	   -moz-box-shadow: 0 0 15px rgba(255, 121, 198, 0.6);
	        box-shadow: 0 0 15px rgba(255, 121, 198, 0.6);
}

.image-container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	        flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	        align-items: center;
	text-align: center;
	background: rgba(0, 0, 0, 0.25);
	border: 2px solid var(--border-color);
	-webkit-border-radius: 12px;
	   -moz-border-radius: 12px;
	        border-radius: 12px;
	padding: 8px;
	-webkit-box-shadow: 0 0 10px rgba(139, 233, 253, 0.3);
	   -moz-box-shadow: 0 0 10px rgba(139, 233, 253, 0.3);
	        box-shadow: 0 0 10px rgba(139, 233, 253, 0.3);
	-webkit-transition:
		-webkit-transform 0.2s,
		-webkit-box-shadow 0.2s;
	transition:
		-webkit-transform 0.2s,
		-webkit-box-shadow 0.2s;
	-o-transition:
		box-shadow 0.2s,
		-o-transform 0.2s;
	-moz-transition:
		transform 0.2s,
		box-shadow 0.2s,
		-moz-transform 0.2s,
		-moz-box-shadow 0.2s;
	transition:
		transform 0.2s,
		box-shadow 0.2s;
	transition:
		transform 0.2s,
		box-shadow 0.2s,
		-webkit-transform 0.2s,
		-moz-transform 0.2s,
		-o-transform 0.2s,
		-webkit-box-shadow 0.2s,
		-moz-box-shadow 0.2s;
}
.image-container:hover {
	-webkit-transform: scale(1.05);
	   -moz-transform: scale(1.05);
	     -o-transform: scale(1.05);
	        transform: scale(1.05);
	-webkit-box-shadow: 0 0 15px rgba(255, 121, 198, 0.6);
	   -moz-box-shadow: 0 0 15px rgba(255, 121, 198, 0.6);
	        box-shadow: 0 0 15px rgba(255, 121, 198, 0.6);
}
.gallery-box {
	width: 100%;
	overflow: hidden;
	-webkit-border-radius: 8px;
	   -moz-border-radius: 8px;
	        border-radius: 8px;
}
.gallery-box img {
	width: 100%;
	display: block;
	-webkit-border-radius: 8px;
	   -moz-border-radius: 8px;
	        border-radius: 8px;
}
.gallery-timestamp {
	font-size: 12px;
	color: var(--accent);
	margin-top: 6px;
}
.gallery-reply {
	font-size: 13px;
	color: var(--text-color);
	margin-top: 2px;
}

#canvas-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
          align-items: flex-start;
  gap: 20px;
  margin: 20px auto;
  max-width: 900px;
}

#layer-panel {
  width: 220px;
  background: rgba(10, 15, 20, 0.85);
  padding: 15px;
  -webkit-border-radius: 12px;
     -moz-border-radius: 12px;
          border-radius: 12px;
  border: 1px solid var(--border-color);
  -webkit-box-shadow: 0 0 10px rgba(139, 233, 253, 0.3);
     -moz-box-shadow: 0 0 10px rgba(139, 233, 253, 0.3);
          box-shadow: 0 0 10px rgba(139, 233, 253, 0.3);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  gap: 10px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}

#layer-panel h2 {
  color: var(--accent);
  margin: 0 0 10px 0;
  text-align: center;
  font-size: 18px;
}

#layer-panel button {
  background: rgba(0, 0, 0, 0.5);
  color: var(--accent);
  border: 1px solid var(--border-color);
  -webkit-border-radius: 8px;
     -moz-border-radius: 8px;
          border-radius: 8px;
  padding: 6px 12px;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#layer-panel button:hover {
  background: var(--accent);
  color: #000;
  -webkit-box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
     -moz-box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
          box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
}

#layers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  gap: 8px;
  max-height: 400px;
  overflow-y: auto;
}

.layer-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  gap: 10px;
  padding: 6px 8px;
  -webkit-border-radius: 8px;
     -moz-border-radius: 8px;
          border-radius: 8px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border-color);
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.layer-item.active {
  border: 2px solid var(--accent);
  background: rgba(10, 15, 20, 0.85);
}

.layer-item canvas {
  width: 50px;
  height: 50px;
  border: 1px solid var(--border-color);
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  background: #222;
}

.layer-item .layer-name {
  color: var(--accent);
  font-weight: bold;
}

.tool.active-tool {
    background-color: #444;
    color: white;
}

#poll {
    margin-top: 30px;
    padding: 20px;
    background: rgba(10, 15, 20, 0.85);
    border: 1px solid var(--border-color);
    -webkit-border-radius: 12px;
       -moz-border-radius: 12px;
            border-radius: 12px;
    text-align: center;
    -webkit-box-shadow: 0 0 15px rgba(139, 233, 253, 0.3);
       -moz-box-shadow: 0 0 15px rgba(139, 233, 253, 0.3);
            box-shadow: 0 0 15px rgba(139, 233, 253, 0.3);
}

#poll h2 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 20px;
}

#poll .poll-options button {
    margin: 5px 10px;
    padding: 10px 20px;
    -webkit-border-radius: 8px;
       -moz-border-radius: 8px;
            border-radius: 8px;
    border: 1px solid var(--border-color);
    background: rgba(0,0,0,0.4);
    color: var(--accent);
    font-weight: bold;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

#poll .poll-options button:hover {
    background: var(--accent);
    color: #000;
    -webkit-box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
       -moz-box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
            box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
}


#spotify-card {
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
    padding: 10px;
    -webkit-border-radius: 10px;
       -moz-border-radius: 10px;
            border-radius: 10px;
    background: #1f1f1f;
    color: white;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    gap: 8px;
}

#spotify-card h3 {
    font-size: 14px;
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
}

#spotify-status {
    margin-left: 6px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

#album-art {
    width: 100%;
    aspect-ratio: 1 / 1;
    -webkit-border-radius: 8px;
       -moz-border-radius: 8px;
            border-radius: 8px;
    -o-object-fit: cover;
       object-fit: cover;
}

.spotify-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    gap: 1px;
}

.spotify-info p {
    margin: 0;
    font-size: 12px;
    line-height: 1.2;
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
}

#spotify-progress {
    width: 100%;
    height: 6px;
    background: #333;
    -webkit-border-radius: 4px;
       -moz-border-radius: 4px;
            border-radius: 4px;
    overflow: hidden;
    margin-top: 6px;
}

#spotify-progress-fill {
    height: 100%;
    width: 0%;
    background: #1db954;
    -webkit-transition: width 0.15s linear;
    -o-transition: width 0.15s linear;
    -moz-transition: width 0.15s linear;
    transition: width 0.15s linear;
}

#spotify-times {
    font-size: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
    opacity: 0.8;
    margin-top: 3px;
}

/* chat */

#c_widget {
	position: absolute;
	top: 20px;
	right: 10px;
    display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	        flex-direction: column;
	gap: 16px;
	width: 240px;
	padding: 20px 15px;
	border: 1px solid var(--border-color);
	-webkit-border-radius: 14px;
	   -moz-border-radius: 14px;
	        border-radius: 14px;
	-webkit-box-shadow:
		0 0 15px rgba(139, 233, 253, 0.3),
		0 0 25px rgba(255, 121, 198, 0.2);
	   -moz-box-shadow:
		0 0 15px rgba(139, 233, 253, 0.3),
		0 0 25px rgba(255, 121, 198, 0.2);
	        box-shadow:
		0 0 15px rgba(139, 233, 253, 0.3),
		0 0 25px rgba(255, 121, 198, 0.2);
	-webkit-backdrop-filter: blur(10px);
	        backdrop-filter: blur(10px);
	z-index: 2;
	height: auto;
	overflow: visible;
}

/* 
.sidebar-item {
	border: 1px solid var(--border-color);
	-webkit-border-radius: 12px;
	   -moz-border-radius: 12px;
	        border-radius: 12px;
	padding: 12px;
	background: rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: inset 0 0 10px rgba(139, 233, 253, 0.1);
	   -moz-box-shadow: inset 0 0 10px rgba(139, 233, 253, 0.1);
	        box-shadow: inset 0 0 10px rgba(139, 233, 253, 0.1);
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.sidebar-item h3 {
	margin: 0 0 8px 0;
	font-size: 16px;
	color: var(--accent);
	text-align: center;
}
	*/

#c_container {
	color: var(--accent);
}

.c-comment {
	margin-top: 12px;
	border: 1px solid var(--border-color);
	-webkit-border-radius: 12px;
	   -moz-border-radius: 12px;
	        border-radius: 12px;
	padding: 12px;
	background: rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: inset 0 0 10px rgba(139, 233, 253, 0.1);
	   -moz-box-shadow: inset 0 0 10px rgba(139, 233, 253, 0.1);
	        box-shadow: inset 0 0 10px rgba(139, 233, 253, 0.1);
}

.c-replyContainer {
	margin-left: 10px;
	border: 1px solid var(--border-color);
	-webkit-border-radius: 12px;
	   -moz-border-radius: 12px;
	        border-radius: 12px;
	padding: 12px;
	background: rgba(0, 0, 0, 0.3);
}

#c_widgetTitle {
    margin: 0 0 8px 0;
	font-size: 16px;
	color: var(--accent);
	text-align: center;
}

.c-inputWrapper {
    margin-bottom: 10px;
}

.c-label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 4px;
    color: #aaa;
}

.c-input {
    width: 100%;
    max-width: 100%;
    padding: 10px 12px;
    background: rgba(10, 15, 20, 0.7);
    color: var(--text-color);
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--pill-radius);
    outline: none;
    transition: all 0.2s ease;
    box-shadow: inset 0 0 6px rgba(139, 233, 253, 0.1);
    box-sizing: border-box;
}

.c-input:focus {
    outline: none;
    border-color: #ff7f50;
    box-shadow: 0 0 8px rgba(255,127,80,0.5);
}

#c_submitButton {
    background: rgba(0, 0, 0, 0.4);
	color: var(--accent);
	border: 1px solid var(--border-color);
	-webkit-border-radius: 8px;
	   -moz-border-radius: 8px;
	        border-radius: 8px;
	padding: 8px 16px;
	margin: 5px;
	font-weight: bold;
	cursor: pointer;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

#c_submitButton:hover:not(:disabled) {
    background: var(--accent);
	color: #000;
	-webkit-box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
	   -moz-box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
	        box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
}

#c_submitButton:disabled {
    background: #555;
    cursor: not-allowed;
}

.c-name {
    font-weight: bold;
    color: var(--accent);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.c-timestamp {
    font-size: 0.75rem;
    color: #888;
    float: right;
}

.c-site {
    font-size: 0.75rem;
    text-decoration: none;
}

.c-site:hover {
    text-decoration: underline;
}

.c-text {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin-top: 4px;
}

.c-replyButton, .c-expandButton, .c-paginationButton {
    background: rgba(0, 0, 0, 0.4);
	color: var(--accent);
	border: 1px solid var(--border-color);
	-webkit-border-radius: 8px;
	   -moz-border-radius: 8px;
	        border-radius: 8px;
	padding: 8px 16px;
	margin: 5px;
	font-weight: bold;
	cursor: pointer;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.c-replyButton:hover, .c-expandButton:hover, .c-paginationButton:hover {
    background: var(--accent);
	color: #000;
	-webkit-box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
	   -moz-box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
	        box-shadow: 0 0 12px rgba(255, 121, 198, 0.6);
}

#c_pagination {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

#c_replyingText {
    display: block;
    font-size: 0.8rem;
    color: #50c7ff;
    margin-bottom: 5px;
}

#discord-card {
    background: #0f111a;
    padding: 10px;
    border-radius: 12px;
    color: #e0e0e0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    margin-bottom: 15px;
}

#dc-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

#dc-pfp-wrapper {
    position: relative;
    width: 52px;
    height: 52px;
}


#dc-pfp {
    width: 52px;
    height: 52px;
    border-radius: 50%;
}

#dc-status-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid #0f111a;
}

#dc-display {
    margin: 0;
    font-size: 1rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 2px;
}

#dc-display .guild-tag {
    font-size: 0.75rem;
    background: #1a2333;
    padding: 2px 6px;
    border-radius: 5px;
    color: #70b3ff;
    border: 1px solid #2c3b55;
}

#dc-username {
    margin: 0;
    font-size: 0.75rem;
    opacity: 0.7;
}

#dc-activities {
    margin-top: 10px;
}

.activity {
    display: flex;
    gap: 8px;
    background: #141720;
    padding: 6px;
    border-radius: 5px;
    align-items: center;
    border-left: 3px solid #68a0ff;
    margin-bottom: 6px;
}

.activity img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
}

.activity-info {
    display: flex;
    flex-direction: column;
}

.activity-title {
    font-size: 0.85rem;
    font-weight: bold;
}

.activity-since {
    font-size: 0.7rem;
    opacity: 0.6;
}

.name-gradient {
    background: linear-gradient(135deg, var(--color1), var(--color2));
    -webkit-background-clip: text;
	background-clip: text;
    -webkit-text-fill-color: transparent;
}

@-webkit-keyframes slideIn {
	from {
		-webkit-transform: translateX(-10px);
		        transform: translateX(-10px);
		opacity: 0;
	}
	to {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
		opacity: 1;
	}
}

@-moz-keyframes slideIn {
	from {
		-moz-transform: translateX(-10px);
		     transform: translateX(-10px);
		opacity: 0;
	}
	to {
		-moz-transform: translateX(0);
		     transform: translateX(0);
		opacity: 1;
	}
}

@-o-keyframes slideIn {
	from {
		-o-transform: translateX(-10px);
		   transform: translateX(-10px);
		opacity: 0;
	}
	to {
		-o-transform: translateX(0);
		   transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideIn {
	from {
		-webkit-transform: translateX(-10px);
		   -moz-transform: translateX(-10px);
		     -o-transform: translateX(-10px);
		        transform: translateX(-10px);
		opacity: 0;
	}
	to {
		-webkit-transform: translateX(0);
		   -moz-transform: translateX(0);
		     -o-transform: translateX(0);
		        transform: translateX(0);
		opacity: 1;
	}
}

@-webkit-keyframes drift {
    from {
        -webkit-transform: translate(0, 0);
                transform: translate(0, 0);
    }
    to {
        -webkit-transform: translate(40px, 40px);
                transform: translate(40px, 40px)
    }
}

@-moz-keyframes drift {
    from {
        -moz-transform: translate(0, 0);
             transform: translate(0, 0);
    }
    to {
        -moz-transform: translate(40px, 40px);
             transform: translate(40px, 40px)
    }
}

@-o-keyframes drift {
    from {
        -o-transform: translate(0, 0);
           transform: translate(0, 0);
    }
    to {
        -o-transform: translate(40px, 40px);
           transform: translate(40px, 40px)
    }
}

@keyframes drift {
    from {
        -webkit-transform: translate(0, 0);
           -moz-transform: translate(0, 0);
             -o-transform: translate(0, 0);
                transform: translate(0, 0);
    }
    to {
        -webkit-transform: translate(40px, 40px);
           -moz-transform: translate(40px, 40px);
             -o-transform: translate(40px, 40px);
                transform: translate(40px, 40px)
    }
}

/* god i fucking hate media queries */
@media (max-width: 800px) {
    #mobile-menu-btn {
        display: block;
    }
    .left-sidebar {
        position: fixed;
        top: 0;
        left: -240px;
        height: 100%;
        width: 240px;
        -webkit-transition: left 0.3s ease;
        -o-transition: left 0.3s ease;
        -moz-transition: left 0.3s ease;
        transition: left 0.3s ease;
        z-index: 9998;
    }
    .left-sidebar.sidebar-open {
        left: 0;
    }
    body.sidebar-open {
        overflow: hidden;
    }
    main, 
    #ui-container {
        margin-left: 0 !important;
        width: 95% !important;
        max-width: none !important;
    }
    body {
        overflow-x: hidden;
    }
    #poll {
        width: 95%;
        margin: 20px auto;
        font-size: 14px;
    }
    .bar-container {
        height: 20px;
    }
    #drawboxcanvas {
        width: 95% !important;
        height: auto !important;
    }
    #gallery {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .image-container {
        padding: 6px;
    }
    #toolbar {
        gap: 6px;
    }
}
@media (max-width: 500px) {
    #mobile-menu-btn {
        font-size: 24px;
        padding: 6px 10px;
    }
    #poll h2 {
        font-size: 18px;
    }
    #ui-container h1 {
        font-size: 40px;
    }
    p, button, a {
        font-size: 14px !important;
    }
    #toolbar button {
        padding: 4px 8px;
    }
    .left-sidebar {
        width: 200px;
    }
}