:root {
    --blue: #0099CC;
    --dark-blue: #006699;
    --darker-blue: #003366;
    --light-blue: #00CCFF;
    --acme-stack: 'ACME Explosive', 'Comic Sans MS', 'Arial', sans-serif;
}

body {
    background-color: #EEEEEE;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: normal;
    color: #000000;
    margin: 0px;
    padding: 0px;

    display: flex;
	align-items: flex-start;
	justify-content: center;
}

.bg {
	background-color: #FFFFFF;
	width: 760px;
	min-height: 100vh;
	
	border-left: 1px solid #919191;
	border-right: 1px solid #919191;

	box-shadow: 0 0 6px 6px rgba(0, 0, 0, 0.2);

	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.content {
    display: grid;
    grid-template-columns: 486px 274px;
    align-items: stretch;
}

.content-left {
    display: flex;
    align-items: center;
    justify-content: left;
    flex-direction: column;
}

.content-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;

    position: relative;
    background: linear-gradient(#0099CC 100px, #1F6090 250px);
    border-left: 4px solid #FFFFFF;
    height: 100%;
    padding-top: -1px;
}

/* this is the top part with the rounded edge */
.content-right::before {
    content: '';
    position: absolute;
    right: 0;
    top: -16px;
    background-color: #0099CC;
    border-top: 4px solid #ffffff;
    border-left: 4px solid #ffffff;
    border-radius: 10px 0 0 0;
    width: 270px;
    height: 13px; /* add 1px for padding */
}

.copyright {
    font-size: 10px;
    color: #FFFFFF;
}

a.copyright:link {
    color: #FFFFFF;
}

a.copyright:hover {
    color: #FFA800;
    text-decoration: none;
}

.nav {
    font-size: 12px;
    color: #FFFF00;
    font-weight: bolder;
    text-decoration: none;
}

a.nav:link {
    color: #FFFFFF;
    text-decoration: none;
}

a.nav:visited {
    color: #FFFFFF;
}

a.nav:hover {
    color: #FFA800;
    text-decoration: none;
}

h1 {
    font-size: 24px;
    font-weight: bold;
}

a {
    font-weight: bold;
    color: #007AA3;
}

a:hover {
    color: #FF9900;
}

.note {
    font-size: 12px;
    color: #333333;
}

h2 {
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    padding-top: 4px;
    padding-bottom: 4px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #CCCCCC;
}

h3 {
    font-size: 16px;
    font-weight: bold;
}

.error {
    color: #FF0000;
    font-weight: bold;
}

select {
    font-size: 16px;
    padding: 2px;
}

textarea {
    font-size: 16px;
    padding: 2px;
}

.header {
    width: 760px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: linear-gradient(#005375 10%, #0097C9 85%);
}

.header-embed-container {
    width: 453px;
    height: 189px;
    position: relative;
}

.header-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 307px;
    height: 189px;
}

.header-logo-text {
    text-shadow: 0 0 5px #000000;
    font-weight: bold;
    color: white;
    font-size: 15px;
    text-align: center;
    margin-top: 10px;
    font-family: 'Arial Rounded MT Bold', 'Arial';
}

.errorInput {
    background-color: #FFFFCC;
}

.white_text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #FFFFFF;
    padding: 10px;
}

.yellow {
    color: #FFCE08;
    font-size: 10px;
}

.blue_text {
    color: #012030;
}

.lg_title {
    font-size: 24px;
    font-weight: bold;
    color: #003366;
}

.td-relative {
    position: relative;
    height: 146px;
}

.description-bg {
    background-color: #fcfcd7;
    height: 100%;
    box-shadow: inset -18px 0 9px -7px rgba(0, 0, 0, 0.14);
}

.description-title {
    display: flex;
    align-items: center;

    position: absolute;
    background-color: #FFCE08;
    text-align: left;
    font-family: var(--acme-stack);
    /*font-weight: bold;*/
    vertical-align: middle;
    color: #006699;
    padding-left: 8px;
    font-size: 15px;
    top: 21px;
    width: 316px;
    height: 20px;

    box-shadow: inset -18px 0 9px -7px rgba(0, 0, 0, 0.14);
}

.blue-rightside {
    background: linear-gradient(#0099CC 0%, #1F6090 30%);
    border-left: 4px solid #FFFFFF;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.blue-rightside-bottom {
    width: 274px;
    height: 100%;
    background-color: #1F6090;
    border-left: 4px solid #FFFFFF;
}

.footer-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 55px;
}

.footer {
    display: flex;
    justify-content: center;

    margin-top: 6.5px;

    padding: 10px;
    
	background: linear-gradient(#236794, #1B5375);
	box-shadow: 0 -1px 0 0 #1F2636, 0 -2px 0 0 #FFFCD8, 0 -7px 0 0 #FACD48;

	font-size: 10px;
	color: #FFFFFF;
    text-align: center;

    width: 486px;
    height: 60px;

    box-sizing: border-box;
}

.nav-bar-drop {
    background-color: #001933;
    box-shadow: 0 10px 9px 5px rgba(0, 0, 0, 0.14);
    height: 10px;
}

.description-box {
    display: flex;
    align-items: flex-start;
    justify-content: left;
    gap: 5px;
    position: relative;
    box-shadow: inset -18px 0 9px -7px rgba(0, 0, 0, 0.14);
}

.description-image {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(#0099CC, #005375);
    border: 4px solid #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.25);
    width: 137px;
    height: 119px;
    margin: 12px;
    z-index: 1;
}

.description-texts {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    position: relative;
}

.description-title2 {
    position: relative;
    text-align: left;
    font-family: var(--acme-stack);
    color: #006699;
    font-size: 15px;
    margin: 20px 0 5px 0;
}

.description-title-bg {
    position: absolute;
    top: 17px;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: #FACD48;
    z-index: 0;
    box-shadow: inset -18px 0 9px -7px rgba(0, 0, 0, 0.14);
}

.description-text {
    padding: 2px;
    width: 275px;
}

.top-section {
    /* Add 8px for border stuff */

    display: flex;
    align-items: center;
    justify-content: left;
}

.top-points {
    height: 100%;
    padding: 10px;
    background-color: #5CA9DD;
    border-top: 5px solid #FACD48;
    border-bottom: 5px solid #FACD48;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: left;
    row-gap: 8px;

    box-sizing: border-box;
}

.top-points-description {
    font-weight: bold;
    text-align: left;
    color: #000000;
}

.top-points-bullets-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    width: 90%;
}

.top-points-list {
    width: 50%;
    padding-left: 10px;
    list-style: none;
    margin: 0;
}

.top-points-list li {
    position: relative;
    padding-left: 15px;
    margin: 0;
}

.top-points-list li::before {
    content: '\2022';
    color: #FACD48;
    font-size: 25px;
    position: absolute;
    left: 0;
    top: -20px;
    transform: translateY(50%);
}

.top-play {
    display: flex;
    align-items: center;
    justify-content: center;
}

.playnow-button {
    width: 240px;
    height: 75px;

    margin-bottom: 5px;
    margin-top: 5px;
    overflow: auto;

    font-size: 33px;
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    color: white;
    background-color: var(--blue);
    padding: 10px 15px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    box-sizing: border-box;
    text-decoration: none;

    box-shadow:
        inset 2px 0px 0px var(--light-blue),
        inset -2px 0px 0px var(--dark-blue),
        0 1px 0 2.5px var(--darker-blue),
        2px 2.5px 0 3px var(--light-blue),
        -1.5px -1.5px 0 3px var(--dark-blue);
}

.playnow-button span {
    font-family: var(--acme-stack);
    font-weight: normal;
    z-index: 1;
    position: relative;
    text-align: center;
}

.playnow-button span::before {
    content: attr(data-text);
    position: absolute;
    z-index: -1;
    color: transparent;
    -webkit-text-stroke: var(--dark-blue);
    -webkit-text-stroke-width: 9px;
}

.video-container {
    width: 246px;
    height: 162px;
    margin: 0 10px 0 10px;
    border-radius: 15px;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px #000000;
    overflow: hidden;
    position: relative;
    background-color: #FFFFFF;
}

.gameplay-video {
    width: 246px;
    height: 162px;
    position: absolute;
    overflow: hidden;
    box-sizing: content-box;
    border-radius: 15px;
}

.misc-box {
    width: 249px;
    height: 59px;
    border: 3px solid black;
    border-radius: 15px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.funstuff {
    background: linear-gradient(#fff8a8, #e7e769);
}

.rulesbox {
    background: linear-gradient(#ef5959, #ae3535);
}

.funstuff img {
    width: 87px;
    left: 12px;
    top: -12px;
    position: absolute;
}

.rulesbox img {
    width: 87px;
    left: 12px;
    top: -12px;
    position: absolute;
}

.misc-box span {
    font-family: var(--acme-stack);
    color: white;
    font-size: 19px;
    position: absolute;
    font-weight: normal;
    z-index: 1;
    left: 90px;
    top: 15px;
    width: calc(100% - 100px);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.misc-box span::before {
    content: attr(data-text);
    position: absolute;
    z-index: -1;
    color: transparent;
    -webkit-text-stroke: 8px black;
    width: 100%;
    text-align: center;
}

@media only screen and (max-width: 760px) {

    .bg {
        border: none;
    }

    .content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .content-right {
        border-left: none;
        border-top: 4px solid white;
        padding-top: 10px;
        padding-bottom: 20px;
    }

    .white_text {
        text-align: center;
    }

    .header-embed-container,
    .content-right::before {
        display: none;
    }

    .footer {
        font-size: 50px;
    }

    .top-section {
        height: 100%;
    }

    .top-points {
        padding: 10px;
    }

    .top-points-description {
        padding: 0 0 10px 0;
        text-align: center;
    }

    .bg,
    .nav-main,
    .content,
    .top-points,
    .top-section,
    .header,
    .footer {
        width: 100%;
    }

    .description-box, .description-title-bg {
        box-shadow: none;
    }

    .nav-main {
        flex: 1 1 calc(33.333% - 20px);
    }

}

@media only screen and (max-width: 480px) {

    .description-box {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-bottom: 15px;
    }

    .description-texts {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .description-image {
        margin: 0;
    }

    .description-title-bg {
        top: 150px;
    }

    .description-text {
        width: 80%;
    }

}