html {
	background-image: url("/img/dark-bg.png");
    background: #111;
    color: white;
}

body {
	margin: 0px;
	min-width: 840px;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* ensures full height */
}

.main-content {
    flex: 1; /* fills all available vertical space between header and footer */
}

.site-header {
    background-color: #000;
    border-bottom: 3px solid red;
    padding: 20px 0 10px 0;
    text-align: center;
}

.logo-center img {
    max-width: 100%;
    height: auto;
    width: 600px;
    margin-bottom: 10px;
}
.nav-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
}

.navbar ul {
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar a {
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .navbar a.active,
    .navbar a:hover {
        color: #e60000;
    }

.cta-buttons {
    display: flex;
    gap: 10px;
}

    .cta-buttons .btn {
        padding: 10px 20px;
        font-weight: bold;
        border-radius: 4px;
        text-transform: uppercase;
        text-decoration: none;
        color: #fff;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

.play-btn {
    background: linear-gradient(to right, #d00, #900);
}

.discord-btn {
    background-color: #007bff;
}

    .play-btn:hover,
    .discord-btn:hover {
        opacity: 0.85;
    }

.site-footer {
    background-color: #111;
    color: #c9b579;
    padding: 40px 20px 20px;
    font-family: 'Georgia', serif;
    border-top: 2px solid #900;
}

.footer-top {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 180px;
}

    .footer-column h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #fff;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
    }

        .footer-column ul li {
            margin: 6px 0;
        }

            .footer-column ul li a {
                color: #c9b579;
                text-decoration: none;
            }

                .footer-column ul li a:hover {
                    color: #fff;
                }

.footer-logo img {
    width: 600px;
    margin-bottom: 10px;
}

.footer-icons i {
    color: #c9b579;
    font-size: 20px;
    margin: 0 8px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 14px;
    color: #aaa;
}

    .footer-bottom a {
        color: #c9b579;
        text-decoration: none;
        margin: 0 5px;
    }

        .footer-bottom a:hover {
            color: #fff;
        }

.error-page {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.error-content {
    max-width: 500px;
    margin: 0 auto;
}

.error-icon {
    margin-bottom: 20px;
}

.error-content h1 {
    font-size: 32px;
    color: #ff8a00;
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
}

.error-content p {
    font-size: 18px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-return {
    background-color: #ff8a00;
    padding: 10px 20px;
    border-radius: 4px;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .btn-return:hover {
        background-color: #ffa733;
    }

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #000;
    background-image: url('/assets/hero-art.png'); /* use your correct path */
    background-size: contain; /* shows full image */
    background-repeat: no-repeat;
    background-position: right center;
    min-height: 600px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    min-height: 100%;
    opacity: 0.9;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.0) 100%);
    display: flex;
    align-items: center;
    padding: 60px 20px;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    max-width: 600px;
    padding: 20px;
    color: #fff;
}

    .hero-content h1 {
        font-size: 56px;
        line-height: 1.1;
        text-transform: uppercase;
        margin-bottom: 20px;
        font-family: 'Georgia', serif;
    }

.hero-white {
    color: #fff;
}

.hero-gold {
    color: #ffcc33;
}

.hero-content p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
}

.hero-btn {
    background: linear-gradient(to right, #b30000, #ff0000);
    padding: 14px 30px;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
    border: 1px solid #880000;
    transition: 0.3s ease;
    font-family: 'Georgia', serif;
}

    .hero-btn:hover {
        background: linear-gradient(to right, #ff3300, #cc0000);
    }


.section-header {
    text-align: center;
    margin-top: 60px;
}

.section-header h2 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    height: 4px;
    width: 100%;
    background: url('/img/blood-bar.png') center/contain no-repeat;
    margin-top: 5px;
}

/* SIGNUP CONTAINER */
.signup-container {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
    text-align: center;
}

/* LOGO INSIDE BOX */
.signup-top-box-logo img {
    margin-bottom: 20px;
}

/* FORM HEADER */
.signup-container h1 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #ffcc33;
    font-family: 'Georgia', serif;
}

/* FORM */
.signup-container form {
    text-align: left;
    margin-bottom: 20px;
}

.signup-container label {
    font-weight: bold;
    color: #ccc;
}

.signup-container input[type="text"],
.signup-container input[type="password"],
.signup-container input[type="email"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0 16px 0;
    border: 1px solid #444;
    border-radius: 6px;
    background-color: #222;
    color: #fff;
}

.signup-container input:focus {
    border-color: #ffcc33;
    outline: none;
}

/* SUBMIT BUTTON */
.signup-container input[type="submit"] {
    width: 100%;
    background: linear-gradient(to right, #b30000, #ff0000);
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .signup-container input[type="submit"]:hover {
        background: linear-gradient(to right, #ff3300, #cc0000);
    }

/* ERROR AND SUCCESS BOXES */
.signup-error-box,
.signup-success-box {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
}

.signup-error-box {
    background-color: #3b0000;
    color: #ff6666;
    border: 1px solid #ff0000;
}

.signup-success-box {
    background-color: #003b00;
    color: #66ff66;
    border: 1px solid #00cc00;
}

/* BOTTOM NOTICE */
.signup-container p {
    font-size: 14px;
    color: #ccc;
    margin-top: 10px;
    line-height: 1.5;
}

.signup-container a {
    color: #ffcc33;
    text-decoration: none;
}

    .signup-container a:hover {
        color: #fff;
        text-decoration: underline;
    }

.register-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    background-color: #111;
    color: #fff;
}

.signup-top-box-logo {
    text-align: center;
    margin-bottom: 20px;
}

    .signup-top-box-logo img {
        max-width: 100%;
        height: auto;
        width: 500px; 
        display: inline-block;
    }

.download-hero {
    background: url('/assets/download-background.png') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.download-overlay {
    background: rgba(0, 0, 0, 0.75);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-container {
    max-width: 700px;
    padding: 40px;
    text-align: center;
    background-color: rgba(17, 17, 17, 0.9);
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
}

    .download-container h1 {
        font-size: 36px;
        color: #ffcc33;
        margin-bottom: 30px;
        font-family: 'Georgia', serif;
        text-transform: uppercase;
    }

.download-box {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #ffcc33;
}

    .download-box h2 {
        font-size: 24px;
        margin-bottom: 10px;
        color: #fff;
    }

    .download-box p {
        font-size: 16px;
        color: #ccc;
        margin-bottom: 20px;
    }

.btn-download {
    background: linear-gradient(to right, #b30000, #ff0000);
    padding: 12px 25px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    transition: background 0.3s ease;
}

    .btn-download:hover {
        background: linear-gradient(to right, #ff3300, #cc0000);
    }

.store-hero {
    background: url('/assets/download-background.png') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    padding: 60px 20px;
    color: #fff;
}

.store-overlay {
    background: rgba(0, 0, 0, 0.85);
    padding: 60px 20px;
    border-radius: 12px;
}

.store-container {
    max-width: 1100px;
    margin: 0 auto;
}

    .store-container h1 {
        font-family: 'Georgia', serif;
        text-align: center;
        margin-bottom: 40px;
        color: #ffcc33;
        font-size: 36px;
    }

.store-boxes {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.store-box {
    background: #1a1a1a;
    padding: 30px;
    border: 1px solid #ffcc33;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 0 15px rgba(255, 204, 51, 0.2);
}

    .store-box h2 {
        font-size: 22px;
        color: #fff;
        margin-bottom: 10px;
    }

    .store-box p {
        font-size: 16px;
        color: #ccc;
        margin-bottom: 15px;
    }

.btn-store {
    background: linear-gradient(to right, #b30000, #ff0000);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 6px;
    display: inline-block;
    transition: background 0.3s ease;
}

    .btn-store:hover {
        background: linear-gradient(to right, #ff3300, #cc0000);
    }

.store-terms {
    background: #111;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #ffcc33;
    margin-bottom: 50px;
}

    .store-terms h2 {
        font-size: 20px;
        color: #fff;
        margin-bottom: 10px;
    }

    .store-terms ol {
        padding-left: 20px;
        margin-bottom: 15px;
        font-size: 14px;
        color: #ccc;
    }

    .store-terms label {
        font-size: 14px;
        display: block;
        color: #ffcc33;
    }

.features-section {
    text-align: center;
}

    .features-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
        color: #fff;
        font-family: 'Georgia', serif;
    }

.features-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    width: 240px;
    border: 1px solid #444;
    box-shadow: 0 0 10px rgba(255, 204, 51, 0.1);
}

    .feature img {
        width: 100%;
        border-radius: 6px;
        margin-bottom: 10px;
    }

    .feature h3 {
        color: #ffcc33;
        font-size: 18px;
        margin-bottom: 5px;
    }

    .feature p {
        color: #ccc;
        font-size: 14px;
    }


@media only screen and (max-width: 1282px) {
	/* For tablets: */

}

@media (max-width: 500px) {
    .signup-top-box-logo img {
        width: 80%;
    }
}
@media (max-width: 600px) {
    .download-container {
        padding: 20px;
    }

    .download-box h2 {
        font-size: 20px;
    }

    .btn-download {
        width: 100%;
        padding: 14px;
    }
}

