
/* Local Font Imports */
@font-face {
    font-family: 'Kokoro';
    src: url('font/Kokoro-trial/KokoroTrial-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Kokoro';
    src: url('font/Kokoro-trial/KokoroTrial-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Kokoro';
    src: url('font/Kokoro-trial/KokoroTrial-Heavy.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gosh';
    src: url('font/Gosh-trial/Standard/GoshTrial-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gosh';
    src: url('font/Gosh-trial/Standard/GoshTrial-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gosh';
    src: url('font/Gosh-trial/Standard/GoshTrial-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}



/* Body and general styles */
* {
    font-family: 'Gosh', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: 'Gosh', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: #05020A;
    background-image: radial-gradient(circle, #15121A 2px, transparent 2px);
    background-size: 24px 24px;
    min-height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
}

body > main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

/* Header styles */
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    display: inline-block;
    margin-left: 2rem;
    margin-top: 1rem;
}

.ahoy-logo {
    height: 40px;
    width: auto;
}

.nav-link-blog {
    font-family: 'Gosh', sans-serif !important;
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    pointer-events: auto;
    margin-right: 12vw;
}

.nav-link-blog:hover,
.nav-link-blog:focus,
.nav-link-blog:active,
.nav-link-blog:visited {
    color: #60C0C0 !important;
    text-decoration: none !important;
}
.nav-link-blog:visited {
    color: rgba(255, 255, 255, 0.9) !important;
}

@media (max-width: 1600px) {
    .nav-link-blog {
        margin-right: 8vw;
    }
}

@media (max-width: 1400px) {
    .nav-link-blog {
        margin-right: 6vw;
    }
}

@media (max-width: 1200px) {
    .nav-link-blog {
        margin-right: 6vw;
    }
}

@media (max-width: 992px) {
    .nav-link-blog {
        margin-right: 5vw;
    }
}

@media (max-width: 768px) {
    .nav-link-blog {
        margin-right: 4vw;
    }
}

@media (max-width: 576px) {
    .nav-link-blog {
        margin-right: 2rem;
    }
}



/* Header fix to not cover back links */
header {
    position: relative;
    z-index: 5;
    pointer-events: none;
}

header .logo a {
    pointer-events: auto;
}


.text-image-container {
    position: fixed;
    top: 50px;
    right: 40px;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.text-image-container-left {
    position: fixed;
    bottom: 50px;
    left: 40px;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

@media (max-width: 991.98px) {
    .text-image-container {
        right: 20px;
    }

    .text-image-container-left {
        left: 20px;
    }
}

@media (max-width: 767.98px) {
    .text-image-container {
        right: 10px;
    }

    .text-image-container-left {
        left: 10px;
    }
}

.text-image-container > .line-image {
    transform: rotate(180deg);
}


.text-image {
    max-width: 200px;
    height: auto;
    width: auto;
    height: 25%;
}

.line-image {
    width: auto;
    height: 60%;
}


/* Header fix to not cover back links */
header {
    position: relative;
    z-index: 5;
    pointer-events: none;
}

header .logo a {
    pointer-events: auto;
}

/* Custom container */
.custom-container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    flex: 1 0 auto;
}

@media (min-width: 300px) {
    .custom-container {
        max-width: 95vw;
    }
}

.no-scale {
    transform: scale(1) !important;
}

@media (min-width: 576px) {
    .custom-container {
        max-width: 95vw;
    }


}

@media (min-width: 768px) {
    .custom-container {
        max-width: 95vw;
    }
}

@media (min-width: 992px) {
    .custom-container {
        max-width: 90vw;
    }
}

@media (min-width: 1200px) {
    .custom-container {
        max-width: 85vw;
    }
}

@media (min-width: 1400px) {
    .custom-container {
        max-width: 80vw;
    }
}

@media (min-width: 1600px) {
    .custom-container {
        max-width: 75vw;
    }
}

@media (min-width: 1800px) {
    .custom-container {
        max-width: 70vw;
    }
}

.min-vh-75 {
    min-height: 75vh;
}

.content-section {
    padding-right: 1rem;
}

.coming-soon-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: white;
    flex-shrink: 0;
    border: 1px solid white;
    padding: 8px 16px;
    padding-top: 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: .8;
}

.content-section h1 {
    color: white;
    margin-bottom: 1.5rem;
    font-family: 'Kokoro', sans-serif;
    font-weight: 400;
}

.content-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.content-section .lead {
    font-size: 1.8rem;
    font-weight: 300;
}

/* Email signup styles */
.email-signup {
    margin-top: 2rem;
}

@media (max-width: 767.98px) {
    .email-signup {
        margin-top: 0rem;
    }
}

.join-voyage-text {
    color: white;
    font-weight: 400;
    font-size: 1.5rem;
}

.left-column {
    margin-top: 100px;
    margin-bottom: 50px;
}

/* Override for jobs page - no top margin needed */
.col-lg-8.col-md-10 {
    margin-top: 0 !important;
}

.form-control {
    padding: 0.65rem 0.75rem;
    height: 50px;
    font-size: 1.1rem;
    border: 1px solid #ffffff;
    background: transparent;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: rgba(255, 255, 255, 1);
    font-weight: 300;
    transition: background 0.3s ease;
    font-family: 'Gosh', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-control:focus {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none !important;
    outline: none;
    color: white;
    border-width: 1px !important;
    padding: 0.65rem 0.75rem !important;
    height: 50px !important;
    transform: none !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Gosh', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 300;
}

.btn-primary {
    background: linear-gradient(45deg, #60C0C0, #EEDDDC);
    color: #000000;
    border: none;
    border-radius: 10px;
    font-weight: 400;
    padding: 0.65rem .6rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    font-size: 1rem;
    height: 50px;
}

.btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #50B0B0, #DCC0BE);
    color: #000000;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(3px);
}

.btn-primary:active {
    transform: translateY(0);
}



@media (max-width: 992px) {
    .illustration-container {
        align-items: center;
    }
}

.text-image-container {
    position: fixed;
    top: 50px;
    right: 40px;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.text-image-container-left {
    position: fixed;
    bottom: 50px;
    left: 40px;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

@media (max-width: 991.98px) {
    .text-image-container {
        right: 20px;
    }

    .text-image-container-left {
        left: 20px;
    }
}

@media (max-width: 767.98px) {
    .text-image-container {
        right: 10px;
    }

    .text-image-container-left {
        left: 10px;
    }
}

.text-image-container > .line-image {
    transform: rotate(180deg);
}


.text-image {
    max-width: 200px;
    height: auto;
    width: auto;
    height: 25%;
}

.line-image {
    width: auto;
    height: 60%;
}

.img-fluid-height {
    height: 100%;
    width: auto;
}

.img-fluid-width {
    width: 100%;
    height: auto;
}
.landscape-image-container-full {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.landscape-image-container-full img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 100%;
}

.landscape-image-mobile {
    width: 140%;
    height: 140%;
    object-fit: cover;
}

.keyhole-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    position: relative;
}

.keyhole-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 600px;
    max-height: 600px;
    min-width: 300px;
    min-height: 300px;
    background-image: url('img/Ellipse 51.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.keyhole-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@media (max-width: 1199.98px) {
    .keyhole-image {
        max-width: 450px;
    }
}

@media (max-width: 991.98px) {
    main {
        padding-top: 0px;
    }

    .keyhole-image {
        max-width: 600px;
    }

    .keyhole-container::before {
        max-width: 300px;
        max-height: 300px;
        min-width: 200px;
        min-height: 200px;
        opacity: 0.4;
    }

    .keyhole-container {
        justify-content: center;
        margin-top: 20px;
        position: absolute;
        top: 20%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100vw;
        height: 100vh;
        pointer-events: none;
    }

    .left-column {
        display: flex;
        justify-content: center;
        width: 100%;
        position: relative;
        z-index: 1;
    }

    .content-section {
        max-width: 600px;
        text-align: left;
    }
}

.responsive-keyhole-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.5;
    margin-top: -150px;
}

.responsive-keyhole-container .keyhole-container {
    position: static;
    margin-top: 0;
    transform: none;
    width: auto;
    height: auto;
}

@media (max-width: 767.98px) {
    .keyhole-image {
        max-width: 600px;
    }

    .keyhole-container {
        justify-content: center;
        margin-top: 20px;
        position: absolute;
        top: 20%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100vw;
        height: 100vh;
        pointer-events: none;
    }


    .keyhole-container::before {
        max-width: 300px;
        max-height: 300px;
        min-width: 200px;
        min-height: 200px;
        opacity: 0.4;
    }


    .left-column {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 0px;
    }

    .content-section {
        max-width: 600px;
        text-align: left;
    }
}

/* Responsive styles */
@media (max-width: 767.98px) {
    /* Hide illustration on mobile */
    .col-lg-5.col-md-4 {
        display: none !important;
    }
    
    /* Adjust content for mobile */
    .content-section {
        padding-right: 0;
        text-align: center;
    }
    
    .content-section h1 {
        font-size: 2.5rem;
    }
    
    main {
        padding-top: 30px;
    }
    
    .logo {
        font-size: 1.25rem;
        margin-right: 1rem;
    }
    
    /* Stack email input and button on mobile */
    .email-signup .row.g-2 > div {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .content-section h1 {
        font-size: 2rem;
    }
    
    .content-section p {
        font-size: 1rem;
    }
    
    .content-section .lead {
        font-size: 1.1rem;
    }
}

/* Alert messages */
.alert {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0.25rem 0;
    font-size: 0.85rem;
    font-weight: 300;
    position: absolute;
    z-index: 10;
}

.alert-success {
    color: rgba(255, 255, 255, 0.8);
}

.alert-danger,
.alert-error {
    color: rgba(255, 132, 132, 0.702) !important;
    background: none !important;
}

/* Animation for showing success message */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success.show {
    animation: slideIn 0.3s ease-out;
}

/* Job listings styles */
.job-listings {
    margin-top: 2rem;
}

.job-card {
    background: #0F0C14;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 1.5rem;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
    position: relative;
}

.job-card:hover {
    background: #141017;
    border-color: rgba(255, 255, 255, 0.15);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.job-title {
    color: white;
    font-family: 'Gosh', sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    margin: 0;
    letter-spacing: -0.01em;
}

.job-type {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Gosh', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.job-description {
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Gosh', sans-serif;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0;
    flex: 1;
}

.job-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.2rem;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: 'Gosh', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.job-apply-btn {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-family: 'Gosh', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.job-apply-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.jobs-footer {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.jobs-footer p {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Gosh', sans-serif;
    margin-bottom: 0;
}

.jobs-footer a {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: underline !important;
}

.jobs-footer a:hover {
    color: #60C0C0 !important;
    text-decoration: underline !important;
}

/* Bounty callout on jobs page */
.bounty-callout-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.bounty-callout-link:hover {
    text-decoration: none;
    color: inherit;
}

.bounty-callout {
    background: #14110B;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.12),
                0 0 20px rgba(255, 215, 0, 0.08),
                0 0 40px rgba(255, 215, 0, 0.04);
    transition: all 0.2s ease;
}

.bounty-callout-link:hover .bounty-callout {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.18),
                0 0 25px rgba(255, 215, 0, 0.12),
                0 0 50px rgba(255, 215, 0, 0.06);
}


.bounty-callout-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.bounty-text-content {
    flex: 1;
}

.bounty-cta-wrapper {
    flex-shrink: 0;
}

.treasure-chest {
    font-size: 1.75rem;
    opacity: 0.9;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
}

.bounty-text h3 {
    color: rgba(255, 215, 0, 0.9);
    font-family: 'Gosh', sans-serif;
    font-weight: 500;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.bounty-text p {
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Gosh', sans-serif;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
    font-weight: 400;
}

.bounty-cta-btn {
    background: rgba(255, 215, 0, 0.08);
    color: rgba(255, 215, 0, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 6px;
    font-weight: 400;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.1),
                0 0 8px rgba(255, 215, 0, 0.1),
                0 0 16px rgba(255, 215, 0, 0.05);
}


.bounty-cta-btn:hover {
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.25);
    color: rgba(255, 215, 0, 1);
    box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.15),
                0 0 12px rgba(255, 215, 0, 0.15),
                0 0 24px rgba(255, 215, 0, 0.08);
}

.bounty-cta-btn:active {
    background: rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.4);
    color: rgba(255, 215, 0, 1);
    box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.25),
                0 0 12px rgba(255, 215, 0, 0.25),
                0 0 20px rgba(255, 215, 0, 0.15);
}

.bounty-cta-btn:focus {
    background: rgba(255, 215, 0, 0.08);
    color: rgba(255, 215, 0, 0.9);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.1),
                0 0 8px rgba(255, 215, 0, 0.1),
                0 0 16px rgba(255, 215, 0, 0.05);
    outline: none;
}

/* Responsive adjustments for job cards */
@media (max-width: 768px) {
    .job-card {
        padding: 1.5rem;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-type {
        margin-top: 0.5rem;
    }

    .skill-tag {
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
    }

    .bounty-callout {
        padding: 1.5rem;
    }

    .bounty-callout-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .treasure-chest {
        font-size: 3rem;
    }

    .bounty-text h3 {
        font-size: 1.5rem;
    }

    .bounty-text p {
        font-size: 1rem;
    }

    /* Mobile navigation fixes */
    header {
        position: relative !important;
        z-index: 5;
        margin-bottom: 0.25rem;
        padding-top: 0.75rem !important;
        padding-bottom: 0.25rem !important;
    }

    .back-link {
        position: relative;
        z-index: 10;
        margin-top: 0;
        display: inline-block;
    }

    .coming-soon-banner {
        margin-top: 0;
    }

    main {
        padding-top: 0.5rem !important;
    }
}

/* Job detail page styles */
.job-detail-section {
    padding-right: 1rem;
    padding-bottom: 4rem;
    position: relative;
    z-index: 15;
}

.back-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: 'Gosh', sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 10;
    display: inline-block;
}

.back-link:hover {
    color: #60C0C0;
}

.job-detail-header {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
}

.job-detail-title {
    color: white;
    font-family: 'Kokoro', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.job-detail-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Gosh', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.job-detail-content {
    margin-top: 3rem;
}

.job-detail-content section {
    margin-bottom: 3rem;
}

.job-detail-content h2 {
    color: white;
    font-family: 'Gosh', sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.job-detail-content h3 {
    color: #60C0C0;
    font-family: 'Gosh', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.job-detail-content p {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Gosh', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.job-detail-content ul {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Gosh', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.job-detail-content ol {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Gosh', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.job-detail-content li {
    margin-bottom: 0.5rem;
}

.job-detail-content strong {
    color: white;
}

.responsibility-group, .requirements-group {
    background: #0F0C14;
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.apply-section {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.apply-card {
    background: #0F0C14;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    max-width: 600px;
}

.apply-card h3 {
    color: white;
    font-family: 'Kokoro', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.apply-card p {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Gosh', sans-serif;
    margin-bottom: 2rem;
}

.apply-card a:not(.btn) {
    color: #60C0C0;
    text-decoration: none;
}

.apply-card a:not(.btn):hover {
    color: #EEDDDC;
}

.apply-btn {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Responsive adjustments for job details */
@media (max-width: 768px) {
    .job-detail-title {
        font-size: 2rem;
    }

    .job-detail-subtitle {
        font-size: 1.1rem;
    }

    .responsibility-group, .requirements-group {
        padding: 1rem;
    }

    .apply-card {
        padding: 2rem;
        margin: 0 1rem;
    }
}

/* Bounty page styles */
.bounty-section {
    padding-right: 1rem;
    padding-bottom: 4rem;
    position: relative;
    z-index: 15;
}

.bounty-header {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
}

.bounty-title {
    color: white;
    font-family: 'Gosh', sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.bounty-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Gosh', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bounty-content {
    margin-top: 3rem;
}

.bounty-content section {
    margin-bottom: 3rem;
}

.bounty-content h2 {
    color: white;
    font-family: 'Gosh', sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.bounty-content h3 {
    color: #60C0C0;
    font-family: 'Gosh', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.bounty-content h4 {
    color: white;
    font-family: 'Gosh', sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.bounty-content p {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Gosh', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.bounty-content ul {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Gosh', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.bounty-content li {
    margin-bottom: 0.5rem;
}

.bounty-category {
    background: #0F0C14;
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
}

.reward-range {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(45deg, #60C0C0, #EEDDDC);
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Gosh', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.category-requirements {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.category-requirements strong {
    color: white;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    background: linear-gradient(45deg, #60C0C0, #EEDDDC);
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Kokoro', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
}

.step-content p {
    margin-bottom: 0;
}

.bounty-email {
    color: #60C0C0;
    text-decoration: none;
    font-weight: 500;
}

.bounty-email:hover {
    color: #EEDDDC;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 100%;
}

.criteria-item {
    background: #0F0C14;
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.criteria-item h4 {
    color: #60C0C0;
    font-family: 'Gosh', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.criteria-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.guidelines-section h3 {
    color: white;
    font-family: 'Gosh', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.getting-started-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 100%;
}

.start-option {
    background: #0F0C14;
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.start-option h4 {
    color: #60C0C0;
    font-family: 'Gosh', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.start-option p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.bounty-cta {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.cta-card {
    background: #0F0C14;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    max-width: 600px;
}

.cta-card h3 {
    color: white;
    font-family: 'Gosh', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Gosh', sans-serif;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 0.8rem 2rem;
    font-family: 'Gosh', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Jobs button on index page */
.banner-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.jobs-banner {
    background: linear-gradient(135deg, rgba(96, 192, 192, 0.08), rgba(238, 221, 220, 0.06));
    color: #8B7FFF;
    padding: 4px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    font-family: 'Gosh', sans-serif;
    text-decoration: none;
    border: 1px solid rgba(96, 192, 192, 0.15);
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(10px);
}

.jobs-banner::after {
    content: '→';
    padding-right: 12px;
    transition: transform 0.3s ease;
}

.jobs-banner .hiring-text {
    background: linear-gradient(135deg, rgba(96, 192, 192, 0.15), rgba(238, 221, 220, 0.12));
    color: white;
    font-weight: 500;
    padding: 2px 10px;
    border-radius: 22px;
    display: inline-block;
}

.jobs-banner .bonus-text {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    padding: 2px 10px;
    padding-left: 4px;
    display: inline-block;
}

.jobs-banner:hover {
    background: linear-gradient(135deg, rgba(96, 192, 192, 0.12), rgba(238, 221, 220, 0.08));
    border-color: rgba(96, 192, 192, 0.25);
    text-decoration: none;
}

.jobs-banner:hover .hiring-text {
    background: linear-gradient(135deg, rgba(96, 192, 192, 0.25), rgba(238, 221, 220, 0.18));
}

.jobs-banner:hover .bonus-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive banner container */
@media (max-width: 768px) {
    .banner-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .jobs-banner {
        font-size: 0.85rem;
        padding: 8px 18px;
    }
}

/* Responsive adjustments for bounty page */
@media (max-width: 768px) {
    .bounty-title {
        font-size: 1.8rem;
    }

    .bounty-subtitle {
        font-size: 1.1rem;
    }

    .bounty-category {
        padding: 1.5rem;
    }

    .reward-range {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .criteria-grid {
        grid-template-columns: 1fr;
    }

    .getting-started-options {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 2rem;
        margin: 0 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* Elegant Footer */
.elegant-footer {
    background: transparent;
    padding: 1rem 0;
    margin-top: auto;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.footer-content {
    text-align: center;
}

.elegant-footer p {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Gosh', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.elegant-footer:hover p {
    color: rgba(255, 255, 255, 0.7);
}

/* Special footer styling for homepage to avoid scroll */
body.homepage .elegant-footer {
    margin-top: 3rem;
    padding: 0.5rem 0;
}

@media (max-width: 768px) {
    .elegant-footer {
        margin-top: 1.5rem;
        padding: 0.75rem 0;
    }

    .elegant-footer p {
        font-size: 0.8rem;
    }

    /* Further reduce homepage footer spacing on mobile */
    body.homepage .elegant-footer {
        margin-top: 0.5rem;
        padding: 0.5rem 0;
    }

    /* Center homepage content better on mobile */
    body.homepage .custom-container {
        padding-left: 10px;
        padding-right: 10px;
    }
}