/* ==================================================
   GLOBAL STYLES
================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top, rgba(180, 0, 0, 0.35), transparent 35%),
        linear-gradient(135deg, #050505 0%, #111111 45%, #000000 100%);
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    padding: 30px;
}


/* ==================================================
   SITE HEADER
================================================== */

.site-header {
    width: 100%;
    margin-bottom: 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding-top: 10px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    border: 1px solid rgba(255, 0, 0, 0.35);
    border-radius: 22px;
    background: rgba(10, 10, 10, 0.82);
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.22);
	backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-logo img {
    width: 260px;
    max-width: 100%;
    height: auto;
    display: block;
}

.site-nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.site-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.site-nav a:hover {
    color: #ff3333;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}


/* ==================================================
   COMING SOON PAGE
================================================== */

.coming-soon-wrapper {
    width: 100%;
    max-width: 950px;
    text-align: center;
    padding: 50px 30px;
    border: 1px solid rgba(255, 0, 0, 0.35);
    border-radius: 22px;
    background: rgba(10, 10, 10, 0.82);
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.22);
    margin: 0 auto;
}

.logo {
    width: 300px;
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}

.tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: #d7d7d7;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.coming-soon {
    display: inline-block;
    margin: 20px 0;
    padding: 12px 28px;
    border: 2px solid #e50914;
    border-radius: 999px;
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: rgba(229, 9, 20, 0.15);
    box-shadow: 0 0 18px rgba(229, 9, 20, 0.35);
}

.intro {
    max-width: 720px;
    margin: 25px auto 35px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cfcfcf;
}

.highlight {
    color: #ff3333;
    font-weight: bold;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin: 35px 0;
}

.service-card {
    padding: 22px 18px;
    border-radius: 16px;
    background: linear-gradient(145deg, #141414, #090909);
    border: 1px solid rgba(255, 0, 0, 0.25);
    color: #eeeeee;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #ff3333;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.25);
}

.service-card h3 {
    color: #ff3333;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #c7c7c7;
    line-height: 1.5;
}

.cta-box {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.email-link {
    display: inline-block;
    margin-top: 15px;
    padding: 13px 26px;
    border-radius: 12px;
    background: #e50914;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.email-link:hover {
    background: #ff3333;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.45);
}

.footer-note {
    margin-top: 35px;
    font-size: 0.9rem;
    color: #888888;
}


/* ==================================================
   SHARED PAGE CONTENT
================================================== */

.page-content {
    width: 100%;
    max-width: 950px;
    text-align: center;
    padding: 50px 30px;
    border: 1px solid rgba(255, 0, 0, 0.35);
    border-radius: 22px;
    background: rgba(10, 10, 10, 0.82);
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.22);
    margin: 0 auto;
}

.page-content h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
}

.page-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: #d7d7d7;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

.content-box {
    text-align: left;
    padding: 30px;
    margin: 30px 0;
    border-radius: 16px;
    background: linear-gradient(145deg, #141414, #090909);
    border: 1px solid rgba(255, 0, 0, 0.25);
    color: #eeeeee;
}

.content-box h2 {
    color: #ff3333;
    margin-bottom: 15px;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content-box p,
.content-box li {
    font-size: 1.05rem;
    color: #cfcfcf;
    line-height: 1.7;
}

.content-box ul {
    margin-left: 25px;
    margin-top: 10px;
}


/* ==================================================
   POLICY PAGES
================================================== */

.policy-page {
    width: 100%;
    max-width: 950px;
    text-align: left;
    padding: 50px 30px;
    border: 1px solid rgba(255, 0, 0, 0.35);
    border-radius: 22px;
    background: rgba(10, 10, 10, 0.82);
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.22);
    margin: 0 auto;
}

.policy-page h1 {
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
}

.policy-page h2 {
    color: #ff3333;
    margin-top: 30px;
    margin-bottom: 12px;
}

.policy-page p,
.policy-page li {
    color: #cfcfcf;
    font-size: 1.05rem;
    line-height: 1.7;
}

.policy-page ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.policy-page a {
    color: #ff3333;
    text-decoration: none;
}

.policy-page a:hover {
    text-decoration: underline;
}

.policy-page .home-buttons .email-link {
    background: #000000;
    border: 2px solid #e50914;
    color: #ffffff !important;
}

.policy-page .home-buttons .email-link:hover {
    background: #111111;
    color: #ffffff !important;
    border-color: #ff3333;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.35);
}

/* ==================================================
   SECTION HEADER BUTTONS
================================================== */

.policy-page .section-heading-with-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.policy-page .section-heading-with-button h2 {
    margin: 0;
}

.policy-page a.section-button {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 9px 18px;
    border-radius: 10px;
    background-color: #000000 !important;
    border: 2px solid #e50914 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 0.95rem;
}

.policy-page a.section-button:hover {
    background-color: #111111 !important;
    border-color: #ff3333 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.35);
}

/* ==================================================
   SITE FOOTER
================================================== */

.site-footer {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 25px 30px;
    text-align: center;
    color: #888888;
}

.site-footer a {
    color: #ff3333;
    text-decoration: none;
    margin: 0 8px;
}

.site-footer a:hover {
    text-decoration: underline;
}


/* ==================================================
   MOBILE RESPONSIVE
================================================== */

@media (max-width: 768px) {
    .header-container {
        justify-content: center;
        text-align: center;
    }

    .site-nav {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    body {
        padding: 20px;
    }

    .coming-soon-wrapper,
    .page-content,
    .policy-page {
        padding: 35px 20px;
    }

    .coming-soon {
        letter-spacing: 2px;
        font-size: 0.85rem;
    }

    .content-box {
        padding: 22px;
    }
}

