/* Custom CSS Variables for easier theme management */
:root {
    --white: #fff;
    --max-width: 1080px;
    --n-space: min(max(12px, 3.5vmin), 30px);
    --n-space-s: min(max(8px, 2vmin), 20px);
    --n-space-xs: min(max(4px, 1vmin), 10px);
    --primary: #000000;
    --secondary: #D4AF37;
    /* Gold */
    --secondary-hover: #B8860B;
    /* Darker Gold */
    --red-deep: #800000;
    /* Deep Red */
    --red-highlight: #CC0000;
    /* Bright Red */
    --dark-brown: #2C0A0A;
    --silver: #C0C0C0;
    --green-accent: #228B22;
    /* Forest Green */
    --green-accent-hover: #006400;
    /* Darker Green */
    --neon-green: #39FF14;
    /* Bright Neon Green */
    --neon-green-shadow: rgba(57, 255, 20, 0.7);
    /* Neon Green Shadow */
    --radius: 12px;
}

/* Utility classes for consistent spacing */
.px-n {
    padding-left: var(--n-space);
    padding-right: var(--n-space);
}

.py-s {
    padding-top: var(--n-space-s);
    padding-bottom: var(--n-space-s);
}

.gap-s {
    gap: var(--n-space-s);
}

/* Responsive text sizes for mobile */
@media (max-width: 768px) {
    .text-3xl-mobile {
        font-size: 1.875rem;
    }

    .text-2xl-mobile {
        font-size: 1.5rem;
    }

    .text-xl-mobile {
        font-size: 1.25rem;
    }

    .text-lg-mobile {
        font-size: 1.125rem;
    }
}

/* Container for main content, centered with responsive padding */
.n-container {
    max-width: var(--max-width);
    margin: auto;
    padding: 0 var(--n-space);
}

/* Styling for image containers */
.div-image {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--silver);
}

/* Remove bullet points from lists */
ul.no-bullets {
    list-style-type: none;
}

/* Custom scrollbar styling for a unique look */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-brown);
}

::-webkit-scrollbar-thumb {
    background: var(--red-highlight);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Heading styles with neon green text shadow for emphasis */
h1,
h2,
h3,
h4 {
    font-weight: bold;
    color: var(--secondary);
    text-shadow: 0 0 5px var(--neon-green-shadow), 0 0 10px var(--neon-green-shadow);
}

/* Body and default link styles */
body {
    color: var(--white);
    background: linear-gradient(90deg, #0A0000 0%, #200000 50%, #400000 100%);
    font-family: 'Prompt', sans-serif;
    line-height: 1.6;
    /* Improved readability */
}

/* Image responsiveness and border-radius */
img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Default link styling */
a {
    text-decoration: none;
    color: var(--white);
}

/* Fixed navigation bar styling */
.nav {
    background: #150000;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--n-space-s) var(--n-space);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    /* Added shadow for depth */
}

/* Logo styling with skew transform */
.logo {
    background: #3c0000;
    border-radius: 10px;
    transform: skewY(-3deg) skewX(-17deg);
    padding: 36px 25px 16px 66px;
    margin: -30px 0 -20px -65px;
    display: flex;
    align-items: center;
}

.logo-inner {
    transform: skewY(3deg) skewX(17deg);
    display: flex;
    align-items: center;
}

.logo-inner img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

/* Styling for highlighted text within content */
.link-style,
strong {
    color: var(--secondary);
    font-weight: bold;
}

/* Base button styles */
.btn,
.btn-primary,
.btn-secondary {
    color: var(--white);
    font-size: 1rem;
    border-radius: var(--radius);
    text-align: center;
    padding: 10px;
    padding-inline: 20px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* Full-width button styles */
.btn-full {
    color: var(--white);
    font-size: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    padding: 10px;
    flex: 1;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* Register button with neon green gradient and shadow */
.btn-register {
    background: linear-gradient(90deg, var(--neon-green) 35%, var(--green-accent-hover) 100%);
    color: var(--dark-brown);
    box-shadow: 0 4px 15px var(--neon-green-shadow);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 6px 20px var(--neon-green-shadow);
}

/* Login button with red gradient and shadow */
.btn-login {
    background: linear-gradient(90deg, var(--red-highlight) 35%, var(--red-deep) 100%);
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.4);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.6);
}

/* Details (FAQ) styling */
details {
    margin-bottom: 15px;
    color: var(--white);
    font-size: 1.5rem;
}

summary {
    border-radius: 10px;
    padding: .5em 1.3rem;
    background-color: var(--red-deep);
    list-style: none;
    display: flex;
    justify-content: space-between;
    transition: height 1s ease;
    cursor: pointer;
    border: 2px solid var(--secondary);
}

summary::-webkit-details-marker {
    display: none;
}

summary:after {
    content: '\002B';
    transition: transform 0.3s ease;
}

details[open] summary {
    margin-bottom: .5em;
    background-color: var(--red-highlight);
}

details[open] summary:after {
    content: '\00D7';
    transform: rotate(180deg);
}

details[open] div {
    padding: .5em 1em;
    background-color: rgba(44, 10, 10, 0.9);
    border-radius: 0 0 var(--radius) var(--radius);
}

/* Article section styling */
.article {
    margin-top: 30px;
    margin-bottom: 30px;
    background: rgba(44, 10, 10, 0.9);
    border: 2px solid var(--silver);
    padding: var(--n-space);
    border-radius: var(--radius);
}

/* Hero section top padding adjustment for fixed header */
.hero {
    padding-top: calc(var(--n-space) + var(--n-space) + var(--n-space));
}

/* Slots image border-radius (if used) */
.n-slots {
    border-radius: 20px;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .logo-inner {
        max-width: 110px;
    }

    .moblie-hidden {
        display: none;
        /* Hide login button on mobile for space */
    }
}

/* Custom CSS for the new hero text section */
.hero-text {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: var(--radius);
    border: 2px solid var(--secondary);
    padding: var(--n-space);
    margin-top: calc(var(--n-space) + 50px);
    /* Adjust spacing from the fixed header */
}
