html,
body {
    height: 100%;
	background: #010b15;	
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

p {
	color:white;
	font-family: 'Roboto', sans-serif;
	font-size:12px;
}

.heroic {
	border:1px solid #0b1a28;
	background: #00080e;
	background-image: url('images/heroback.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	font-family: 'Roboto', sans-serif;
	padding:20px;
	padding-top:4px;
	padding-bottom:4px;
	margin-left:6px;
	margin-right:6px;
	border-radius:12px;
	height:250px;
	margin-top:20px;
}

.heroic h1 {
	font-family: 'Roboto', sans-serif;
	font-size:30px;
	color:white;	
}

.heroic h2 {
	font-family: 'Roboto', sans-serif;
	font-size:15px;
	color:#208ae5;
	margin-bottom:-20px;
	padding-bottom:0px;
}

.heroic p {
	font-family: 'Roboto', sans-serif;
	font-size:14px;
	color:white;	
	line-height: 24px;
}



.srdiv {
	border:1px solid #0b1a28;
	background: #00080e;
	font-family: 'Roboto', sans-serif;
	padding:20px;
	padding-top:4px;
	padding-bottom:4px;
	margin-left:6px;
	margin-right:6px;
	border-radius:12px;
	height:100%;
	margin-top:20px;
}

.srdiv h1 {
	font-family: 'Roboto', sans-serif;
	font-size:16px;
	color:#208ae5;
}

.srdiv h2 {
	font-family: 'Roboto', sans-serif;
	font-size:16px;
	color:white;
}

.srdiv p {
	font-family: 'Roboto', sans-serif;
	font-size:12px;
	color:white;	
}

.srdiv a {
	font-family: 'Roboto', sans-serif;
	font-size:14px;
	color:gray;	
    text-decoration: underline dotted;
    text-decoration-color: gray;
}

.srdiv a:hover {
	font-family: 'Roboto', sans-serif;
	font-size:14px;
	color:#208ae5;
    text-decoration: underline dotted;
    text-decoration-color: #208ae5;	
}

.page-content {
    flex: 1;
}

.footer {
    width: 100%;
    height: 60px;
    background: #00080e;
    border-top: 1px solid #0b1a28;
	margin-top:30px;
}

.menu-banner {
    width: 100%;
    height: 60px;
    background: #00080e;
    border-bottom: 1px solid #0b1a28;
}

.three-column-layout {
    display: grid;
    grid-template-columns: auto 1fr auto;
    width: 80%;
	height:60px;
    align-items: center;
	margin: 0 auto;
}

.middle-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.six-column-layout {
    display: grid;
    grid-template-columns: auto auto auto auto auto auto;
    width: 80%;
    align-items: center;
	margin: 0 auto;
	margin-top:30px;
}

.tri-column-layout {
    display: grid;
    grid-template-columns: auto 1fr auto;
    width: 80%;
    align-items: center;
	margin: 0 auto;
	margin-top:30px;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    width: 80%;
    align-items: center;
	margin: 0 auto;
	margin-top:30px;
}

.two-column-layout-inside {
    display: grid;
    grid-template-columns: 1fr auto;
    width: 100%;
	margin: 0 auto;
}

.one-column-layout {
    display: grid;
    grid-template-columns: auto;
    width: 80%;
    align-items: center;
	margin: 0 auto;
	margin-top:30px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #999;
    font-size: 22px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #ffffff;
    transform: scale(1.15);
}

.social-icons a:nth-child(1):hover {
    color: #1DA1F2; /* Twitter/X blue */
}

.social-icons a:nth-child(2):hover {
    color: #FF0000; /* YouTube red */
}

.social-icons a:nth-child(3):hover {
    color: #E1306C; /* Instagram pink */
}

.social-icons a {
    color: #666;
    font-size: 20px;
}

.social-icons a:hover {
    transform: translateY(-2px);
}

.button-link {
    display: inline-block;
	margin-right:4px;
    padding: 6px 20px;
    background: #010b15;
	font-family: 'Roboto', sans-serif;
	font-size:14px;
    color: #ffffff;
    border: 1px solid #444;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.25s ease,
                border-color 0.25s ease,
                box-shadow 0.25s ease;
}

.button-link:hover {
    background: #2d2d2d;
    border-color: #777;
    box-shadow: 0 0 10px rgba(255,255,255,0.15);
}

.button-link:active {
    background: #181818;
}

.button-link2 {
    display: inline-block;
	margin-right:4px;
    padding: 6px 20px;
    background: #0159ae;
	font-family: 'Roboto', sans-serif;
	font-size:14px;
    color: #ffffff;
    border: 1px solid #444;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.25s ease,
                border-color 0.25s ease,
                box-shadow 0.25s ease;
}

.button-link2:hover {
    background: #2d2d2d;
    border-color: #777;
    box-shadow: 0 0 10px rgba(255,255,255,0.15);
}

.button-link2:active {
    background: #181818;
}


.main-nav {
    display: flex;
    gap: 4px;
}

.main-nav a {
    position: relative;
    display: inline-block;
    padding: 12px 20px;
    color: #d0d0d0;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;

    transition: all 0.25s ease;
	text-transform: uppercase;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #0b1a28;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.main-nav a:hover {

    color: #208ae5;
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

.main-nav2 {
    display: flex;
    gap: 4px;
}

.main-nav2 a {
    position: relative;
    display: inline-block;
    padding: 12px 20px;
    color: #d0d0d0;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 10px;

    transition: all 0.25s ease;
	text-transform: uppercase;
}

.main-nav2 a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.main-nav2 a:hover {

    color: #208ae5;
}

.main-nav2 a:hover::after {
    transform: scaleX(1);
}


.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 8, 14, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-overlay:target {
    display: flex;
}

.login-modal {
    position: relative;
    width: 360px;
    padding: 30px;
    background: linear-gradient(
        110deg,
        #00080e 0%,
        #071a2d 55%,
        #0b3a68 100%
    );
    border: 1px solid #0b1a28;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(32, 138, 229, 0.25);
    font-family: 'Roboto', sans-serif;
}

.login-modal h2 {
    font-family: 'Roboto', sans-serif;
	margin: 0 0 8px 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

.modal-subtitle {
	font-family: 'Roboto', sans-serif;
    margin: 0 0 24px 0;
    color: #9db6cc;
    font-size: 12px;
}

.login-modal label {
    display: block;
    margin-bottom: 6px;
    color: #d0d0d0;
    font-size: 12px;
    text-transform: uppercase;
}

.login-modal input {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 16px;
    padding: 10px;
    background: #010b15;
    color: #ffffff;
    border: 1px solid #0b1a28;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
}

.login-modal input:focus {
    outline: none;
    border-color: #208ae5;
    box-shadow: 0 0 8px rgba(32, 138, 229, 0.35);
}

.modal-login-button {
    width: 100%;
    margin-top: 6px;
    padding: 10px 20px;
    background: #0159ae;
    color: #ffffff;
    border: 1px solid #208ae5;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.modal-login-button:hover {
    background: #208ae5;
    box-shadow: 0 0 12px rgba(32, 138, 229, 0.45);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    color: #9db6cc;
    text-decoration: none;
    font-size: 26px;
    line-height: 1;
}

.modal-close:hover {
    color: #ffffff;
}


.srdiv a.quick {
	font-family: 'Roboto', sans-serif;
	border-top: 1px dotted #0b1a28;
	width: 95%;
	height:20px;	
	text-transform:uppercase;
	text-decoration: none;
	display: block;
	padding:6px;
	margin:auto;
}

.srdiv .quick:hover {
	font-family: 'Roboto', sans-serif;
	border-top: 1px dotted #0b1a28;
	background-color:#010b15;
	width: 95%;
	height:20px;	
	text-decoration: none;
	text-transform:uppercase;
	display: block;
	padding:6px;
	margin:auto;
}

.srdiv h3 {
	font-family: 'Roboto', sans-serif;
	font-size:30px;
	color:white;	
}

.srdiv h4 {
	font-family: 'Roboto', sans-serif;
	font-size:14px;
	color:white;	
	line-height: 24px;
	font-weight:normal;
}

.roundpic {
	border-radius:6px;
	border: 1px solid #0b1a28;
	margin-left:0px;
	padding:0px;
}


.srdiv2 {
	border:1px solid #0b1a28;
	background: #00080e;
	font-family: 'Roboto', sans-serif;
	padding:0px;
	padding-top:4px;
	padding-bottom:4px;
	margin-left:6px;
	margin-right:6px;
	border-radius:12px;
	height:90%;
	margin-top:20px;
	text-align:center;
}

.srdiv2 h1 {
	font-family: 'Roboto', sans-serif;
	font-size:16px;
	color:#208ae5;
}

.srdiv2 h2 {
	font-family: 'Roboto', sans-serif;
	font-size:16px;
	color:white;
}

.srdiv2 p {
	font-family: 'Roboto', sans-serif;
	font-size:12px;
	color:white;	
}

.srdiv2 a {
	font-family: 'Roboto', sans-serif;
	font-size:14px;
	color:gray;	
    text-decoration: underline dotted;
    text-decoration-color: gray;
}

.srdiv2 a:hover {
	font-family: 'Roboto', sans-serif;
	font-size:14px;
	color:#208ae5;
    text-decoration: underline dotted;
    text-decoration-color: #208ae5;	
}

.srdiv li {
	font-family: 'Roboto', sans-serif;
	font-size:12px;
	color:white;
}

hr {
    border: 0;
    border-top: 1px dashed #0b1a28;
}


.srdiv-selector {
	border:1px solid #0b1a28;
	background:#00080e;
	font-family:'Roboto', sans-serif;
	padding:20px;
	padding-top:4px;
	padding-bottom:4px;
	margin-left:6px;
	margin-right:6px;
	border-radius:12px;
	height:100%;
	margin-top:20px;

	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.srdiv-selector:hover {
	background:#102030;
	border-color:#208ae5;
}

.srdiv-selector h1 {
	font-family: 'Roboto', sans-serif;
	font-size:16px;
	color:#208ae5;
}

.srdiv-selector h3 {
	font-family: 'Roboto', sans-serif;
	font-size:16px;
	color:red;
}

.srdiv-selector h2 {
	font-family: 'Roboto', sans-serif;
	font-size:16px;
	color:white;
}

.srdiv-selector p {
	font-family: 'Roboto', sans-serif;
	font-size:12px;
	color:white;	
}

.srdiv-selector.active {
	background:#102030;
	border-color:#FF0000;
}


.srdiv .button-link-l {
    all: unset;

    display: inline-block;
    box-sizing: border-box;

    margin-right: 4px;
    padding: 6px 20px;

    background: #0159ae;
    color: #ffffff;

    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;

    border: 1px solid #444;
    border-radius: 4px;

    cursor: pointer;
    user-select: none;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        opacity 0.25s ease;
}

.srdiv .button-link-l:hover:not(.disabled) {
    background: #2d2d2d;
    border-color: #777;
    box-shadow: 0 0 10px rgba(255,255,255,0.15);
}

.srdiv .button-link-l.disabled,
.srdiv .button-link-l:disabled {
    background: #111;
    color: #666;
    border-color: #222;

    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
}


.waitlist-result {
    display:none;
    margin-bottom:15px;
    padding:10px;
    border-radius:4px;
    font-family:'Roboto',sans-serif;
    font-size:13px;
}

.waitlist-result.success {
    display:block;
    background:#08210e;
    border:1px solid #1f7a3b;
    color:#8ce6a7;
}

.waitlist-result.error {
    display:block;
    background:#2a0d0d;
    border:1px solid #8a2f2f;
    color:#ffb0b0;
}

.srdiv-selector img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.srdiv2 img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}


.contact-form label {
    display:block;
    margin-top:12px;
    margin-bottom:5px;
    color:#d0d0d0;
    font-family:'Roboto', sans-serif;
    font-size:12px;
    text-transform:uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width:100%;
    box-sizing:border-box;
    padding:10px;
    background:#010b15;
    color:#ffffff;
    border:1px solid #0b1a28;
    border-radius:4px;
    font-family:'Roboto', sans-serif;
    font-size:13px;
}

.contact-form textarea {
    min-height:130px;
    resize:vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline:none;
    border-color:#208ae5;
    box-shadow:0 0 8px rgba(32,138,229,0.35);
}

.contact-result {
    display:none;
    margin-top:12px;
    padding:10px;
    border-radius:4px;
    font-family:'Roboto', sans-serif;
    font-size:13px;
}

.contact-result.success {
    display:block;
    background:#08210e;
    border:1px solid #1f7a3b;
    color:#8ce6a7;
}

.contact-result.error {
    display:block;
    background:#2a0d0d;
    border:1px solid #8a2f2f;
    color:#ffb0b0;
}

.contact-hidden {
    display:none;
}