/*------------------------------------------------------------------
[Main Stylesheet]

Author: AtypicalThemes
Template: STRIDER 2 - Video Game Studio

-------------------------------------------------------------------
Table of contents

    -General Styles
    -Loading Screen
    -Age Checker
    -Cookie Management
    -Header & Navigation
    -Hero Section
    -About Section
    -Features Section
    -Media Section
    -FAQ Section
    -DLC Section
    -CTA Section
    -Newsletter Section
    -Footer
    -Policy Pages

Colors used:
    #A385FF
    #6522E1
    #6734FF

-------------------------------------------------------------------*/

/* --------------------------- /////////// GENERAL STYLES /////////// --------------------------- */

/* -Link Styling- */
a {
    color: #FFF;
    font-family: 'Montserrat', sans-serif;
	text-decoration: none;
    transition: 0.3s;
}

a:visited {
    color: #A385FF;
    text-decoration: none;
}

a:hover:not(.nav-link, .socials li a, .button) {
    color: #A385FF;
	text-decoration: underline;
}

a:active {
    color: #A385FF;
    text-decoration: underline;
}

a:focus {
    color: #A385FF;
    text-decoration: none;
}

a.button {
    color: #000;
}

/* -Resets- */
html, body {
    color: #FFF;
    background:
        linear-gradient(rgba(5,8,18,0.87), rgba(5,8,18,0.87)),
        url('../../images/Pattern_Viking.jpg') center/cover no-repeat fixed,
        #050812;
    font-size: 16px;
    font-family: 'Varela Round', sans-serif;
    overflow-x: hidden;
}

/* -Text Styling- */
h1,h2,h3,h4,h5,h6 {
	font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

h1 {
    font-size: 3rem;
} 

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    font-family: 'Varela Round', sans-serif;
    font-size: 1rem; /* 16px */
    padding: 0.3125rem 0.3125rem 0.3125rem 0;
    font-weight: 400;
}

.loader-logo, #main-logo {
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.5rem;
    font-weight: 200;
}

.strong {
    font-weight: bold;
}

.uppercase {
    text-transform: uppercase;
}

.capitalized {
    text-transform: capitalize;
}

.spaced {
    letter-spacing: 0.3125rem;
}

.subtle {
	color: #999;
}

.highlight {
    color: #6522E1;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

/* -List styling- */
ul {
    margin: 0.625rem 0;
    list-style: none;
    padding: 0;
}

/* -Margins and Floats- */
.floated-left {
     float: left;
}

.floated-right {
    float: right;
}

.inline {
	display: inline;
}

.tiny-margin {
    margin-bottom: 3rem;
}

.small-margin {
	margin-bottom: 6rem; 
}

.medium-margin {
	margin-bottom: 8rem; 
}

.large-margin {
	margin-bottom: 12rem; 
}

/* -General Button Styles */
button {
    outline: none !important;
}

.button {
    height: auto;
    width: auto;
    margin: 1.25rem auto;
    padding: 0.625rem 0.9375rem;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    color: #222;
    border: none;
    border-radius: 2px;
    background: #FFF;
	display: inline-block;
    outline: none;
	transition: all 0.3s;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
}

.button:visited {
    color: #222;
}

.button:hover {
    text-decoration: none !important;
    color: #FFF;
    background: #6734FF;
}

.button:focus {
    color: #222;
}

.help-block {
    font-size: 0.75rem;
}

/* -hr- */
hr {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(54,37,219,1) 0%, rgba(181,60,242,1) 100%);
    margin: 1.5625rem auto;
}

.divider {
    display: block;
    width: auto;
    height: 2px;
    background-color: #6522E1;
    margin: 1.5rem 0;
}

.heading {
    position: relative;
    font-size: 2.5rem;
    margin: 0 auto 2rem auto;
    text-align: center;
}

.heading::before {
    position: absolute;
    margin-top: 22px;
    margin-left: -50px;
    content:" ";
    width: 30px;
    height: 3px;
    background: #6522E1;
}

.heading::after{
    position: absolute;
    margin-top: 22px;
    margin-left: 20px;
    content:" ";
    width: 30px;
    height: 3px;
    background: #6522E1;
}

/* --------------------------- /////////// LOADING SCREEN /////////// --------------------------- */
/* -Loading Screen- */
#loader-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    text-align: center;
    z-index: 1050;
}

#loader-wrapper .flex-wrapper {
    width: 100%;
}

.loader-logo {
    color: #FFF;
    font-size: 3rem;
}

#progress {
    width: 0;
    height: 2px;
    background: #6522E1;
}

.loader-text {
    color: #FFF;
    font-size: 1.5rem;
    margin-top: 1rem;
}

/* -Loading Screen Animation- */
.content-loaded {
    transform: translate3d(0px, -100%, 0px);
    transition: all 0.5s ease;
}

/* --------------------------- /////////// AGE CHECKER /////////// --------------------------- */
#age-checker-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    z-index: 999;
}

#age-checker-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

#age-checker {
    position: fixed;
}

#age-checker input:focus {
    outline: 1px solid #6734FF;
    box-shadow: none;
}

#age-checker .card-body {
    background: rgba(0, 0, 0, 0.5);
    padding: 2.5rem;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}

#age-checker .card-body button {
    background-color: #6734FF;
    border: none;
    padding: 10px 0;
}

#age-checker .card-body button:hover {
    background-color: #6522E1;
}

/* --------------------------- /////////// COOKIE MANAGEMENT /////////// --------------------------- */
#policy-message, .policy-notice-bar {
    position: fixed;
    width: 100%;
    background-color: #111;
    color: #fff;
    z-index: 1060;
    transition: 0.5s ease;
}

#policy-message {
    bottom: -50%;
    height: 60px;
    padding: 12px;
    text-align: center;
}

#policy-message.open {
    bottom: 0;
}

.policy-notice-bar {
    height: auto;
    bottom: -50%;
    padding: 1rem;
}

.open {
    display: block;
    bottom: 0;
}

.policy-notice-bar a {
    color: #A385FF;
}

.policy-notice-bar a:hover {
    text-decoration: underline;
}

.policy-notice-bar p, #policy-message p {
    display: inline-block;
    margin-bottom: 0;
}

.policy-notice-bar .close, #close-policy-message {
    background-color: #FFF;
    color: #000;
    float: right;
}

.policy-notice-bar button {
    display: inline-block;
    margin-left: 1rem;
    border: none;
    border-radius: 2px;
}

.policy-notice-bar button, .policy-notice-bar .close, #close-policy-message {
    padding: 5px 10px;
    transition: 0.3s;
}

.policy-notice-bar button:hover, .policy-notice-bar .close:hover, #close-policy-message:hover {
    background-color: #6522E1;
    color: #FFF;
}

.checkbox-wrapper {
    margin: 1rem 0;
}

/* --------------------------- /////////// HEADER AND NAVIGATION /////////// --------------------------- */
#main-logo {
    color: #fff;
    font-size: 1.6rem;
    margin: 0 1.25rem;
    text-decoration: none;
    max-height: 100px;
    width: auto;
}

.navbar-dark {
    background-color: rgba(0,0,0,0);
    border: 1px solid rgba(0,0,0,0);
    height: auto;
    transition: 0.4s ease;
}

.navbar-dark .navbar-nav .nav-link {
    color: #FFF;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    letter-spacing: 0.125rem;
    font-weight: bold;
}

.fixed-top {
    z-index: 90;
}

.scrolled {
    background-color: rgba(0,0,0,0.6); /* navbar background gradient */
    z-index: 90;
}

/* Dropdown Menu */
.navbar-collapse .dropdown-menu {
	margin-top: 0.625rem;
	border: none;
	border-radius: 4px;
	background-color: rgba(0,0,0,0.6); 
}

.navbar-collapse .dropdown-item {
	color: #fff;
	text-decoration: none;
}

.navbar-collapse .dropdown-item:hover {
	background: none; 
}

.navbar-collapse .dropdown-item .item-text {
	font-size: 0.875rem;
    transition: all 0.3s ease;
}

.navbar-collapse .dropdown-item:hover .item-text {
	letter-spacing: 2px;
}

.navbar-collapse .dropdown-items-divide-hr {
	width: 100%;
	height: 1px;
	margin: 0.25rem auto 0.25rem auto;
	border: none;
	background-color: #b5bcc4;
	opacity: 0.2;
}

/* Menu bars for mobile */
.navbar-toggler {
    border: none;
    cursor: pointer;
}
.navbar-toggler:focus {
    box-shadow: none;
}

#hamburger .icon-bar {
    display: block;
    height: 0.125rem;
    width: 1.5625rem;
    background: #FFF;
    margin: 0.4375rem 0;
    transition: .3s ease-in-out;
}

/* - Mobile menu animation - */
#hamburger .icon-bar:nth-child(1) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#hamburger .icon-bar:nth-child(2) {
   -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#hamburger .icon-bar:nth-child(3) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#hamburger.open .icon-bar:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#hamburger.open .icon-bar:nth-child(2) {
    width: 0%;
    opacity: 0;
}

#hamburger.open .icon-bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* --------------------------- /////////// HERO SECTION /////////// --------------------------- */
.hero-section {
    height: 100vh;
    overflow: hidden;
    position: relative;
    background-color: #000;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.5;
  transition: background-image 1s ease-in-out;
}

.hero-caption {
    z-index: 1;
}

.fade-slide {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-slide.show {
  opacity: 1;
  transform: translateY(0);
}

.container-fluid.video {
    position: relative;
    height: 100vh;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

/* -Video- */
#bgvid {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --------------------------- /////////// ABOUT SECTION /////////// --------------------------- */
.about-section {
    background-image: linear-gradient(90deg, rgb(0,0,0,0.9) 20%, rgba(17,17,17,0) 100%), url(../images/about.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-section > .container > .row {
    padding: 5rem 0;
}

.about-section + .about-section > .container > .row {
    padding-top: 0;
}

.about-section .subsection {
    margin-top: 3rem;
}

.about-section h3 {
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.about-section .side-shot {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.divider {
    display: block;
    width: 60px;
    height: 2px;
    background-color: #6522E1;
    margin: 0.5rem 0 1.25rem;
}

/* embedded YouTube iframes in about sections keep proper ratio */
.about-section .ratio {
    margin: 1.5rem 0;
    border-radius: 4px;
    overflow: hidden;
}

.bulletpoints .block {
    display: inline-block;
    padding-right: 2rem;
}

.bulletpoints li {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* --------------------------- /////////// FEATURES SECTION /////////// --------------------------- */
.feature {
    position: relative;
    padding: 5% 25% 10% 5%;
    overflow: hidden;
}

.feature > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: 0.6s ease;
}

.feature:hover img {
    transform: scale(1.2);
}

.feature:hover .modal img {
    transform: none;
}

.feature > .container {
    position: relative;
    z-index: 3;
}

.feature-overlay {
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.2) 100%);
    width: 100%;
    height: 100%;
    z-index: 2;
}

.feature .button {
    background: none;
    border: 1px solid #FFF;
    color: #FFF;
}

.feature .button:hover {
    background: #FFF;
    color: #111;
    
}

.modal-body p {
    margin-bottom: 0.5rem;
}

.modal-body img {
    margin-bottom: 3rem;
}

.modal-body h4 {
    text-transform: capitalize;
}


/* --------------------------- /////////// MEDIA SECTION /////////// --------------------------- */
.gallery-box > div > a > img {
    width: 100%;
    height: 100%;
    transition: 0.6s ease;
}

.gallery-box > div {
    position: relative;
    overflow: hidden;
}

.gallery-box .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: 0.3s ease;
    z-index: 3;
    overflow: hidden;
}

.gallery-box > div > a:hover .overlay {
    opacity: 0.5;
}

.gallery-box > div > a:hover img {
    transform: scale(1.2);
}

.gallery-box > div > a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Lightbox caption style */
.glightbox-clean .gslide-description {
    background-color: rgba(0, 0 ,0 , 0.5);
}
.glightbox-clean .gdesc-inner {
    background-color: transparent;
    padding: 1rem;
}

.glightbox-clean .gslide-title {
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    color: #FFF;
    margin: 0;
}

/* --------------------------- /////////// FAQ SECTION /////////// --------------------------- */
.accordion-item {
    border: 0;
    color: #FFF;
    background-color: #222;
}

.accordion-button {
    background-color: #6522E1;
    color: #FFF;
    margin-bottom: 10px;
}

.accordion-button:not(.collapsed) {
    background-color: #FFF;
    color: #000;
    margin-bottom: 0;
}

.accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.accordion-button.collapsed::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}

.accordion-body {
    padding: 1rem;
}

/* --------------------------- /////////// DLC SECTION /////////// --------------------------- */
.dlc-cover {
    height: auto;
    width: 80%;
}

.dlc-cover img {
    display: block;
    margin: 0 auto;
    transition: 0.3s ease;
}

.dlc-cover:hover img {
    transform: scale(1.1);
}


/* --------------------------- /////////// CTA SECTION /////////// --------------------------- */
.cta-section {
    background-image: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.8) 100%), url(../images/about.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10% 0;
}

.cta-section .platforms {
    width: 50%;
    margin-top: 0;
}

.cta-section h1 {
    font-size: 4rem;
    margin-bottom: 0;
}

.game-box {
    float: right;
}

.cta-text .button {
    width: 200px;
    height: auto;
}

.cta-text .button:focus {
    color: #FFF;
    background-color: #6522E1;
}

.cta-text .dropdown-menu {
    width: 200px;
    border-radius: 2px;
}

.cta-text .dropdown-menu li a {
    color: #000;
}

.cta-text .dropdown-menu li a:focus {
    background-color: #6522E1;
    color: #FFF;
}

.cta-text h3 {
    font-size: 3rem;
    text-transform: uppercase;
}

/* Modal */
.modal-expand {
    cursor: pointer;
    color: #999;
}

.modal-content {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    backdrop-filter: blur(10px);
}

.modal-header {
    border-bottom: 1px solid #6522E1;
}

.modal-footer {
    border-top: 1px solid #6522E1;
}

.modal-footer .button {
    background-color: #FFF;
    color: #111;
    margin: 0;
    border: none;
}

.modal-footer .button:hover {
    background-color: #6522E1;
    color: #FFF;
}

.modal-body > ul > li > p {
    padding: 0 0.313rem;
    display: inline;
}

.modal-body ul {
    list-style: none;
    margin: 0.625rem 0 0 1.563rem;
}

.modal-body ul li {
    margin: 0.313rem 0;
}

.modal-body ul li:before {
    display: inline-block;
    width: 1em;
    margin-left: -625rem;
    font-family: fontawesome;
}

.close {
    background: none;
    color: #FFF;
    text-shadow: none;
    border: none;
    opacity: 1;
}

.close:hover {
    color: #6522E1;
}

.button.modal-btn {
    margin: 0;
    width: 100px;
}

/* -- Newsletter -- */
input#newsletter {
    width: 100%;
    height: 40px;
    color: #000;
    background-color: FFF;
    border: none;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

input#newsletter:focus {
    outline: none;
    border-left: 5px solid #6522E1;
}

input#newsletter, .newsletter-button {
    border-radius: 2px;
}

.newsletter-button {
    border: none;
    background-color: #FFF;
    width: auto;
    padding: 10px 15px;
    transition: 0.3s;
}

.newsletter-button:hover {
    background-color: #6522E1;
    color:#FFF;
}

#newsletterForm label {
    margin-bottom: 1rem;
}

.socials li {
    display: inline-block;
    margin-right: 1rem;
}

.socials li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    padding: 1rem;
    color: #FFF;
    border-radius: 50%;
    border: 2px solid #FFF;
    transition: 0.3s;
}

.socials li a:hover {
    background-color: #FFF;
    color: #6734FF;
}

.socials li a:focus {
    color: #6734FF;
}

/* --------------------------- /////////// FOOTER /////////// --------------------------- */
.footer {
    position: sticky;
    bottom: 0;
    width: 100%;
    height: auto;
    background: #070707;
    border-top: 2px solid #6522e1;
    padding: 5px 0;
    font-size: 14px;
}

.footer .col-lg-3 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .col-lg-6 {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer ul li {
    display: inline-block;
    margin: 0 10px;
    font-family: 'Montserrat', sans-serif;
}

.footer ul li a {
    color: #FFF;
}

.footer ul li a:hover {
    color: #A385FF;
}

.footer ul li button {
    background-color: transparent;
    color: #FFF;
    border: none;
}

.footer ul li button:hover {
    color: #A385FF;
}

#copyright {
    color: #999;
    margin-top: 0.425rem;
    margin-bottom: 0;
    font-size: 14px;
}

.age-rating, .company-logo {
    display: block;
    margin: 1rem auto 1rem auto;
}

.age-rating {
    width: 100%;
}

.company-logo {
    width: 100%;
}

/* --------------------------- /////////// POLICY PAGES /////////// --------------------------- */
.extra-page {
    font-size: 0.875rem;
}

.extra-page h3 {
    font-size: 1.5rem;
}

#pmsgSubmit {
    font-size: 1.5rem;
}

.extra-page a {
    color: #A385FF;
}

.extra-page a:hover {
    text-decoration: underline;
}

.extra-page .hero-unit {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 25rem;
    height: auto;
    background: #222;
    border: none;
}

.extra-page h1 {
    font-size: 3.5rem;
}

.extra-page h2 {
    font-size: 2rem;
}

.text-container ul {
    list-style: circle;
    margin-left: 2.5rem;
}

.text-container ul li {
    margin: 0.3125rem 0;
}

.text-container ol li {
    margin: 0.3125rem 0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    background: #171717;
    border: none;
    height: 3.75rem;
}

.breadcrumb {
    border: none;
    background: none;
    margin: 0;
    padding-left: 1rem;
}

.breadcrumb-item.active {
    color: #999;
}

.breadcrumb-item.active::before {
    color: #999;
}

.form-control {
    height: 2.8125rem;
    width: 100%;
    background: #222;
    border: none;
    outline: 1px solid #333;
    color: #fff;
}

.form-control:focus {
    background: #222;
    border: none;
    outline: 1px solid #FFF;
    color: #fff;
}

.form-control-select {
    width: 100%;
    height:2.8125rem;
    background: #222;
    border: none;
    outline: 1px solid #333;
    color: #fff;
    padding: 0 0 0 1.25rem;
}

.checkbox {
    font-size: 0.875rem;  
}

.checkbox input {
    width: auto;
    height: auto;
    vertical-align: -5%;
    margin-right: 0.375rem;
}

#privacyForm .button {
    width: 100%;
    margin-top: 0;
    height: 3.125rem;
    font-size: 1.1rem;
}

.form-container {
    flex-basis: 100%;
}

#privacyForm input {
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 4px;
    background: #222;
    padding: 0 0 0 20px;
    color: #FFF;
}

#privacyForm input:focus {
    outline: 1px solid #FFF;
}

#privacyForm .form-group {
    margin-bottom: 1rem;
}

#footer-extra {
    padding-top: 1.5625rem;
    border-top: 1px solid #6734FF;
}

#footer-extra .socials li a {
    margin-bottom: 10px;
}

#footer-extra .socials li a:hover {
    text-decoration: none;
}

/* --------------------------- /////////// RESPONSIVE STYLES /////////// --------------------------- */
@media (max-width : 991px) {
    .navbar-dark {
        background-color: rgba(0,0,0,0.6);
    }

    .navbar-collapse {
        padding-left: 1rem;
    }

    .navbar {
        position: relative;
        background-color: #111;
    }
    
    .dlc-cover {
        margin-bottom: 5rem;
    }

    .game-box {
        display: block;
        float: none;
        margin: 0 auto;
    }

    .cta-text {
        margin-top: 3rem;
        text-align: center;
    }

    .cta-section .platforms {
        width: 90%;
        display: inline;
    }

    .footer ul li {
        margin-bottom: 8px;
    }

    #footer-extra .col-md-4 {
        justify-content: center !important;
        text-align: center;
        padding-bottom: 2rem;
    }
}

@media (max-width : 769px) {
    #policy-bar button {
        display: block;
        margin-top: 1rem;
        margin-left: 0;
    }

    #close-policy-bar {
        float: none;
    }

    #close-policy-message {
        float: none;
        margin-top: 10px;
    }

    .tiny-margin {
        margin-bottom: 2rem;
    }

    .small-margin {
        margin-bottom: 3rem; 
    }

    .medium-margin {
        margin-bottom: 4rem; 
    }

    .large-margin {
        margin-bottom: 6rem; 
    }

    .container-fluid.video {
        height: auto;
    }

    #bgvid {
        width: 100%;
        height: auto;
    }
}

@media (max-width : 692px) {
    #policy-message {
        height: 150px;
    }
}
/* --------------------------- ///////// FREYA GAME PAGE OVERRIDES ///////// --------------------------- */
/* Promoted from per-page inline <style> after validation on Sharp Flint. */

#loader-wrapper { display: none !important; }

.hero-bg { opacity: 1; }

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.9) 100%);
    z-index: 0;
    pointer-events: none;
}
.hero-caption { position: relative; z-index: 2; }
.hero-caption h5 { color: #b63cf2; letter-spacing: 0.15em; font-size: 0.9rem; }
.hero-caption h1 { font-size: 5rem; margin: 0.5rem 0 1rem; }
.hero-caption p { font-size: 1.1rem; color: rgba(255,255,255,0.8); }

.container-fluid.video {
    height: auto;
    max-width: 1200px;
    margin: -4rem auto 0;
    padding: 0 1rem;
    position: relative;
    z-index: 3;
}
#bgvid,
.container-fluid.video iframe {
    width: 100%;
    height: auto;
    max-height: 70vh;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    display: block;
}

.about-section {
    background: transparent !important;
    padding: 4rem 0 2rem;
}
.about-section .side-shot {
    box-shadow: 0 15px 40px rgba(101, 34, 225, 0.25);
}

@media (max-width: 768px) {
    .hero-caption h1 { font-size: 3rem; }
    .container-fluid.video { margin-top: -2rem; }
}

/* Navbar brand logo — replaces the text "Freya Games" */
#main-logo .nav-logo,
.navbar-brand .nav-logo {
    height: 120px;
    width: auto;
    display: block;
}
@media (max-width: 768px) {
    #main-logo .nav-logo,
    .navbar-brand .nav-logo { height: 80px; }
}
