@font-face {
    font-family: "Trajan";
    src: url("fonts/trajan.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Trajan";
    src: url("fonts/trajan-bold.otf") format("truetype");
    font-weight: bold;
    font-style: normal;
}


html, body {
    overflow-x: hidden;
}

body {
    font-family: "Trajan", sans-serif;
    background-color: #330033;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-y: scroll;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

.main-content {
    flex: 1;
}

.top-bar-container {
    top: 0;
    width: 100%;
    z-index: 1000;
}

.hero-container {
    margin-top: 0px;
    width: 100%;
}

.hero-image img {
    display: block;
    width: 100%;
    height: auto;
}

.top-bar {
    background: linear-gradient(to bottom, #080008 0%, #190019 100%);
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;  
    padding: 0 20px;
}

.bottom-bar {
    background: linear-gradient(to top, #330033 0%, #674167 100%);
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;  
    padding: 0 20px;
}

.top-bar img.logo {
    height: 70%;
    max-height: 100px;
}

.bottom-bar img.logo {
    height: 50%;
    max-height: 150px;
}

.footer {
    width: 100%;
    background: linear-gradient(to bottom, #330033 0%, #080008 100%);
    color: #ffbe19;
    text-align: center;
    padding: 20px 0;
    font-family: arial, sans-serif;
    font-size: 16px;
}

.separator {
    padding: 20px 0;
}

.separator img {
    display: block;
    width: 100%;
    height: auto;
}

.content {
    padding: 20px;
}

.card-container {
    perspective: 1000px;
}

.card a {
    justify-content: center;
    align-items: center; 
    color: #ffbe19;
    font-family: "Trajan", sans-serif;
    font-weight: bold;
    font-size: 22px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card a:hover {
    color: #7c5a05;
}

.bar {
    background: linear-gradient(to bottom, #330033 0%, #1f001f 30%, #1f001f 70%, #330033 100%);
    color: #ffbe19;
    font-family: "Trajan", sans-serif;
    font-weight: bold;
    font-size: 20px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;  
    padding: 0 20px;
}

.join {
    color: #ffbe19;
    font-family: "Trajan", sans-serif;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
    padding: 10px;
}

.join h2,
.join h3,
.join a {
    margin: 8px 0;
}

.join h2 {
    font-size: 25px;
}

.join h4 {
    margin: 4px 0;
    font-size: 150%;
}

@media (max-width: 1200px) {
    .join h4 {
        font-size: 90%;
    }
}

.join a {
    justify-content: center;
    align-items: center; 
    color: #ffbe19;
    font-family: "Trajan", sans-serif;
    font-weight: bold;
    font-size: 22px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.join a:hover {
    color: #7c5a05;
}

.card {
    color: #ffbe19;
    background-color: #1f001f;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 0px 30px rgba(187, 134, 0, 0);
    width: 90%;
    height: auto;
    transition: transform 0.1s ease;
    transform-style: preserve-3d;
}

.card h1 {
    font-weight: bold;
    font-size: 35px;
}

.card .p1,
.card h1, 
.card h2 {
    text-align: center;
}

.bigtext {
    font-size: 1.3em;
}

.smalltext {
    font-size: 0.85em;
}

.why-play {
    display: flex;
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
    color: #ffbe19;
    font-family: "Trajan", sans-serif;
    align-items: stretch;
    gap: 30px;
}

.why-left {
    flex: 1;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.why-right {
    flex: 2;
}

.why-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-right p {
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.why-right p::before {
    content: "-";
    position: absolute;
    left: 0;
    color: #ffbe19;
    font-size: 24px;
    line-height: 1;
}

.why-left h1 {
    font-size: 36px;
    margin: 0;
}


.vertical-separator {
    width: 2px;
    background-color: #ffbe19;
}
