/* Fonts */
@font-face {
    font-family: "PixelFont";
    src: url("../resources/fonts/ProggyClean.ttf") format("truetype");
}

/* Body */
body,
html {
    height: 100%;
    margin: 0;
    background: #0f0e0f;
    overflow: hidden;
    position: relative;
}

/* Containers */
.outline {
    background: linear-gradient(45deg, #1a1a1a, #535353);
    padding: 1px;
    border-radius: 3px;
}

.inline {
    background: linear-gradient(45deg, #0f0f0f, #1a1a1a);
    padding: 1px;
    border-radius: 3px;
}

.light_contrast {
    background: linear-gradient(45deg, #0a0a0a, #0f0f0f);
    padding: 4px;
    text-align: center;
    border-radius: 3px;
}

.dark_contrast {
    background: linear-gradient(45deg, #050505, #0a0a0a);
    padding: 4px;
    text-align: center;
    border-radius: 3px;
}

/* Main Content Wrapper */
.main-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.button_container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 5px 0;
}

.video_container {
    margin: 5px 0;
}

.store_container {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9000;
    top: 0px;
    left: 0px;
    display: none;
}

.rich_text {
    font-family: "PixelFont", monospace;
    font-size: 16px;
    text-decoration: none;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: never;
    text-rendering: optimizeLegibility;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000, 0px -1px 0 #000, 0px 1px 0 #000, -1px 0px 0 #000, 1px 0px 0 #000;
    color: #b4b4b4;
}

/* Other */
iframe {
    margin: 0px;
    padding: 0px;
    border: 0px;
    box-sizing: border-box;
    display: block;
}

button {
    all: unset;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    padding: 10px 20px;
    color: white;
    font-size: 15px;
}

button:hover {
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

img {
    display: block;
}