/* ---------------- Global ---------------- */
body.fjollu-space {
    margin: 0;
    padding: 0;
    font-family: 'Share Tech Mono', monospace;
    background-color: #3b0505;
    color: #ffda99;
	overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------------- Navbar ---------------- */
.navbar {
    background-color: #3b0505;
    padding: 1rem 0;
}

.nav-link {
    color: #ffda99;
    font-weight: 500;
    position: relative;
    transition: color 0.3s, transform 0.3s;
}

/* Active link */
.nav-link.active {
    color: #7bdf7f !important;
}

/* Optional: underline for active */
.nav-link.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #7bdf7f;
    border-radius: 2px;
    margin-top: 4px;
}

/* Hover effect */
.nav-link:hover {
    color: #7bdf7f;
    transform: translateY(-2px);
}

/* Navbar brand */
.navbar-brand img {
    height: 80px;
}

/* ---------------- Navbar Toggler ---------------- */
.navbar-toggler {
    border: none;
    color: #ffda99;
    font-size: 1.5rem;
    transition: color 0.3s;
}

/* Change toggler color when menu is open */
.navbar-toggler.collapsed {
    color: #ffda99;
}

.navbar-toggler:not(.collapsed) {
    color: #7bdf7f;
}

/* Optional: hover effect for toggler */
.navbar-toggler:hover {
    color: #7bdf7f;
}


/* ---------------- Hero Section ---------------- */
.fjollu-space-hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    background: url('../images/hero.jpg') center/cover no-repeat;
}

.fjollu-space-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(59, 5, 5, 0);
}

.fjollu-space-hero h1 {
    color: #7bdf7f;
    font-size: 3rem;
    z-index: 2;
    position: relative;
}

.fjollu-space-hero p {
    color: #ffda99;
    font-size: 1.2rem;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

/* Hero Buttons */
.fjollu-space-btn {
    background-color: #7bdf7f;
    color: #3b0505;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s;
}

.fjollu-space-btn:hover {
    background-color: #ffda99;
    color: #3b0505;
}

.fjollu-space-btn-outline {
    border: 2px solid #7bdf7f;
	background-color:#3b0505;
    color: #7bdf7f;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s;
}

.fjollu-space-btn-outline:hover {
    background-color: #7bdf7f;
    color: #3b0505;
}

/* ---------------- Notice Card ---------------- */
.fjollu-space-notice-card {
    background-color: #3b0505;
    border: 2px solid #7bdf7f;
    border-radius: 15px;
    padding: 2rem;
    color: #ffda99;
}

/* ---------------- Game Section ---------------- */
.fjollu-space-game-frame {
    max-width: 960px;
    height: 540px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(123, 223, 127, 0.5);
}

.fjollu-space-game-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ---------------- Features ---------------- */
.fjollu-space-section-title {
    color: #7bdf7f;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.fjollu-space-lead {
    color: #ffda99;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.fjollu-space-feature-card {
    background-color: #3b0505;
    color: #ffda99;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.fjollu-space-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(123, 223, 127, 0.5);
}

.feature-icon {
    font-size: 2rem;
    color: #7bdf7f;
}

/* ---------------- About Section ---------------- */
.fjollu-space-about-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.fjollu-space-about-content {
    max-width: 800px;
    text-align: center;
}

.fjollu-space-about-img {
    max-width: 100%;
}


/* ---------------- Reviews ---------------- */
.fjollu-space-review-card {
    text-align: left;
    background-color: #2c0303;
    color: #ffda99;
    transition: transform 0.3s, box-shadow 0.3s;
}

.fjollu-space-review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(123, 223, 127, 0.5);
}

.review-avatar {
    width: 40px;
    height: 40px;
    background-color: #7bdf7f;
    color: #3b0505;
    font-weight: bold;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
}

/* ---------------- Footer ---------------- */
.fjollu-space-footer {
    background-color: #3b0505;
    color: #ffda99;
    padding: 3rem 1rem 2rem;
}

.fjollu-space-footer-links a {
    color: #ffda99;
    transition: color 0.3s;
}

.fjollu-space-footer-links a:hover {
    color: #7bdf7f;
}

.fjollu-space-footer-disclaimer {
    background-color: #2c0303;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-align: left;
}
.reeshtech-link {
    color: #7bdf7f;
    text-decoration: none;
    font-weight: 600;
}

/* ---------------- Scroll Top Button ---------------- */
.fjollu-space-scroll-top {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #7bdf7f;
    color: #3b0505;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;

    /* Center arrow */
    display: flex;
    align-items: center;
    justify-content: center;
}

.fjollu-space-scroll-top:hover {
    background-color: #ffda99;
}

/* ---------------- Age Popup ---------------- */
.fjollu-space-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.fjollu-space-popup-card {
    background: #3b0505;
    color: #ffda99;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 25px rgba(0,0,0,0.7);
}

/* ---------------- Responsive ---------------- */
@media (max-width: 992px) {
    .fjollu-space-hero h1 { font-size: 2.2rem; }
    .fjollu-space-hero p { font-size: 1rem; }
    .fjollu-space-game-frame { height: 400px; }
}

@media (max-width: 576px) {
    .fjollu-space-hero h1 { font-size: 1.8rem; }
    .fjollu-space-hero p { font-size: 0.95rem; }
    .fjollu-space-game-frame { height: 250px; }
}



/* ---------------- Contact Section ---------------- */
.fjollu-space-contact-form .form-label {
    color: #ffda99;
    font-weight: 500;
}

.fjollu-space-contact-form .fjollu-space-input {
    background-color: #3b0505;
    color: #ffda99;
    border: 1px solid #7bdf7f;
    border-radius: 8px;
    padding: 10px 12px;
    transition: border 0.3s, background-color 0.3s;
    width: 100%;
}

.fjollu-space-contact-form .fjollu-space-input:focus {
    outline: none;
    border-color: #ffda99;
    background-color: #3b0505;
    box-shadow: 0 0 5px #7bdf7f;
}

.fjollu-space-contact-form textarea.fjollu-space-input {
    resize: none;
}

.fjollu-space-contact-form .fjollu-space-btn {
    background-color: #7bdf7f;
    color: #3b0505;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
}

.fjollu-space-contact-form .fjollu-space-btn:hover {
    background-color: #ffda99;
    color: #3b0505;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .fjollu-space-contact-form .fjollu-space-btn {
        width: 100%;
    }
}



/* ---------------- Legal Pages ---------------- */
.fjollu-space-legal {
    background-color: #3b0505;
    color: #ffda99;
    padding: 80px 15px;
    text-align: left;
}

.fjollu-space-legal h1.fjollu-space-section-title {
    color: #7bdf7f;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.fjollu-space-legal h3 {
    color: #7bdf7f;
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.fjollu-space-legal p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.fjollu-space-legal a.fjollu-space-link {
    color: #7bdf7f;
    text-decoration: underline;
}

.fjollu-space-legal a.fjollu-space-link:hover {
    color: #ffda99;
}
