@font-face {
    font-family: 'alte-din-1451';
    src: url('/Resources/Fonts/alte-din-1451-mittelschrift.gepraegt.ttf');
    font-weight: normal;
    font-style: normal;
}

::selection {
  color: black;
  background-color: #bdbdbd;
}
::-moz-selection {
  color: black;
  background-color: #bdbdbd;
}
::-webkit-selection {
  color: black;
  background-color: #bdbdbd;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* Prevents scrolling */
    background-color: #121212;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, "alte-din-1451", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Specific class for the Voltstep page background */
body.voltstep-bg {
    background-image: url("/Resources/Images/HeaderImages/patch0.1.4_Header_notext.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

body.vexeval-bg {
    background-image: url("/Resources/Images/SitePieces/vblurred.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Main Content Container */
.content-container {
    display: flex;
    align-items: center;
    justify-content: left;
    height: 100%;
    padding: 0;
}

@keyframes perlin-move {
    0% {
        background-position: 0% 0%; /* Start at the top */
    }
    100% {
        background-position: 0% 800%; /* Move downwards slowly */
    }
}

/* The translucent gray rectangle */
.content-box {
    background-color: rgba(30, 30, 30, 0.75);
    padding: 50px;
    max-width: 600px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* For Safari support */
    /* border-left: 3px solid #6d00e2; /* Accent line */

    position: relative;
    overflow: hidden;
}

.content-box::before {
content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    
    background: linear-gradient(
        to bottom,
        #6d00e2 0%,
        rgba(109, 0, 226, 0.8) 10%,
        rgba(109, 0, 226, 0.3) 50%,
        rgba(109, 0, 226, 0.8) 90%,
        #6d00e2 100%
    );

    background-size: 100% 800%; 
    animation: perlin-move 20s linear infinite; 
    
    z-index: 10;
}

/* Text Styling */
.content-box h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-align: left;
    color: #ffffff;
}

.content-box p {
    font-size: 1.2em;
    line-height: 1.7;
    text-align: left;
    color: #ccc;
    margin-bottom: 40px;
}

/* Standard Button Styling (for index.html) */
.action-button {
    display: inline-block;
    background-color: #6d00e2;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.action-button:hover {
    background-color: #7b00ff;
    text-decoration: none;
}

/* Parallelogram Button Style (for voltstep/index.html) */
.parallelogram-button {
    display: inline-block;
    background-color: #6d00e2;
    color: #fff;
    padding: 15px 50px; /* Adjusted padding */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: skew(-20deg);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(109, 0, 226, 0.5);
    align-self: flex-start; /* Ensures button doesn't stretch */
}

.parallelogram-button .skew-fix {
    display: inline-block;
    transform: skew(20deg);
}

.parallelogram-button:hover {
    background-color: #7b00ff;
    box-shadow: 0 0 25px rgba(109, 0, 226, 0.8);
    text-decoration: none;
}