:root {
    --body-bg: #242423;
    --primary: 221, 221, 221;
    --contrast-primary: 0, 0, 0;
    --color: 221, 221, 221;
    --filled: 0, 0, 0;
    --contrast-filled: 221, 221, 221;
    --secondary: 63, 199, 242;
    --border-alpha: 0.35;
}

@font-face {
    font-family: 'DosisBold';
    src: url('Dosis-Bold.ttf');
}

@font-face {
    font-family: 'DosisMedium';
    src: url('Dosis-Medium.ttf');
}

@font-face {
    font-family: 'RubikBubbles';
    src: url('RubikBubbles.ttf');
}

@font-face {
    font-family: 'FragmentMono';
    src: url('FragmentMono.ttf');
}

body,
.container,
.hero-body {
    background-color: #ffffff;
    color: #0D0D0D;
}

.section {
    padding: 1.5rem 1.5rem;
}

.footer a {
    color: #000000 !important;
    background-color: #ffffff;
    padding: 0.75rem 1rem;
}

.title {
    font-family: 'RubikBubbles', sans-serif;
    font-size: 8rem;
    color: black;
    line-height: 0.9;
    letter-spacing: 0.08em;
}

.guideImages {
    max-width: 70%;
    height: auto;
}

.about-section {
    padding-bottom: 0;
    padding-top: 0;
    font-size: large;
}

.caro_center {
    overflow: hidden;
}

.content ul, .block ul {
    list-style-type: square;
    margin-left: 2em;
    padding-left: 0;
}

.icon-size {
    width: 50px;
    height: 50px;
    padding: 10px;
}

.plugin-box {
    min-height: 300px;
}

.twitter-container {
    max-height: 400px;
    overflow-y: auto;
}

.image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image img {
    width: 100%;
    height: auto;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.icon-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    transition: transform 0.15s ease;
}

.icon-btn:hover {
    transform: scale(1.2);
}

.hero-image {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 800px;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0 auto;
    background-color: #cccccc;
}

.active {
    font-weight: bold;
    color: #3273dc;
}

.tile-box {
    background: #f5f5f5;
    border: 2px solid #dbdbdb;
    border-radius: 8px;
    padding: 1rem;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.tile-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.tile-title {
    font-family: 'FragmentMono', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    color: black;
    margin: 0;
}

.tile-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bulma-background: #ffffff;
        --bulma-text: #363636;
    }

    body {
        background-color: var(--bulma-background);
        color: var(--bulma-text);
    }
}