/* Font Import */
@font-face {
    font-family: 'PoppinsBlack';
    src: url('../fonts/Poppins-Black.ttf') format('truetype');
}
@font-face {
    font-family: 'PoppinsMedium';
    src: url('../fonts/poppins.medium.ttf') format('truetype');
}

/* Full-height flexbox for sticky footer */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PoppinsMedium', sans-serif;
    background-color: #000000;
    color: #fff;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Page wrapper takes full height, pushes footer down */
.page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Content Box - Full width, solid background, centered content */
.content-box {
    background-color: #303030;
    padding: 40px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Container for logo + text */
.container {
    text-align: center;
    max-width: 800px;
    width: 100%;
    margin-bottom: 30px;
}

.container p {
    margin: 15px 0;
    font-size: 1.2rem;
}

img.logo {
    max-width: 50%;
    height: auto;
    margin-bottom: 20px;
}

/* Buttons */
.button-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
}

.button-container button {
    padding: 12px 24px;
    background-color: #303030;
    color: white;
    border: 2px solid #ffffff;
    border-radius: 4px;
    cursor: pointer;
    flex: 1 1 140px;
    font-family: 'PoppinsBlack', sans-serif;
    font-size: 1.4rem;
    transition: border-color 0.3s ease;
}

.button-container button:hover {
    border-color: #ff0000;
    background-color: #404040;
}

/* Info Box - NO BORDER, solid background */
.info-box {
    background-color: #303030;
    color: #fff;
    padding: 25px;
    width: 90%;
    max-width: 700px;
    margin: 20px auto;
    border-radius: 8px;
    /* REMOVED BORDER */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-box h2 {
    margin: 10px 0;
    color: #fff;
    font-size: 2rem;
    font-family: 'PoppinsBlack';
}

.info-box h3 {
    margin: 15px 0 8px;
    color: #fff;
    font-size: 1.5rem;
    font-family: 'PoppinsBlack';
}

.info-box p {
    margin: 8px 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #000000;
    color: #ccc;
    text-align: center;
    padding: 25px 15px;
    font-size: 0.8rem;
    border-top: 2px solid #303030;
    margin-top: auto;
}

footer img.logo2 {
    max-width: 40px;
    height: auto;
    margin-bottom: 10px;
}

footer a {
    color: #0066cc;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
    color: #ff0000;
}

/* Responsive */
@media (max-width: 600px) {
    .container p, .info-box p {
        font-size: 1rem;
    }
    .info-box h2 {
        font-size: 1.6rem;
    }
    .info-box h3 {
        font-size: 1.3rem;
    }
    .button-container button {
        flex: 1 1 100%;
        font-size: 1.2rem;
        padding: 10px;
    }
    img.logo {
        max-width: 70%;
    }
}
/* -------------------------------------------------
   PRIVACY POLICY PAGE – reuse existing dark theme
   ------------------------------------------------- */
.privacy-page {
    padding: 40px 20px;
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.privacy-container {
    max-width: 800px;
    width: 100%;
    line-height: 1.7;
}

.privacy-container h1 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    text-align: center;
}
.privacy-container .updated {
    text-align: center;
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 2rem;
}
.privacy-container h2 {
    margin: 2rem 0 0.8rem;
    font-size: 1.8rem;
}
.privacy-container ul {
    margin: 1rem 0 1.5rem 2rem;
}
.privacy-container a {
    color: #0066cc;
}
.privacy-container a:hover {
    text-decoration: underline;
    color: #ff0000;
}
.privacy-container .back-link {
    margin-top: 3rem;
    text-align: center;
}
/* =============================================
   WARPATH PHASES – COLLAPSIBLE + LOCKED
   ============================================= */
.phase {
    margin-bottom: 25px;
    background-color: #303030;
    border-radius: 8px;
    overflow: hidden;
}

.phase-header {
    padding: 12px 20px;
    background-color: #404040;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.phase-header:hover {
    background-color: #505050;
}

.phase-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

.phase-header .arrow {
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.phase-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.phase-body.open {
    max-height: 1000px; /* large enough for all content */
    padding: 20px;
}

.phase-body h3 {
    margin: 0 0 12px 0;
    font-size: 1.5rem;
}

.phase-body ul {
    margin: 0;
    padding-left: 20px;
}

.phase-body li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 5px;
}

.phase-body li.lunched {
    color: #00ff00; /* green */
    font-weight: bold;
}

.phase-body .checkmark {
    color: #00ff00;
    font-weight: bold;
    margin-right: 8px;
}

/* LOCKED PHASES */
.phase.locked {
    opacity: 0.5;
    pointer-events: none;
}

.phase.locked h2 {
    color: #888;
    font-size: 1.6rem;
    margin: 15px 20px;
}

.phase.locked .locked-text {
    margin: 0 20px 15px;
    font-style: italic;
    color: #aaa;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .phase-header h2 { font-size: 1.5rem; }
    .phase-body h3 { font-size: 1.3rem; }
}
.phase-header {
    padding: 12px 20px;
    background-color: #404040;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.phase-header:hover {
    background-color: #505050;
}

.phase-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

.phase-header .arrow {
    font-size: 1.4rem;
    font-weight: bold;
    transition: transform 0.2s ease;
}

/* Arrow rotates when open */
.phase-body.open + .phase-header .arrow,
.phase-header .arrow.open {
    transform: rotate(180deg);
}

.donate-container {
    text-align: center;
    margin: 40px 0 20px;
}

.donate-btn {
    display: inline-block;
    padding: 16px 48px;
    background-color: #ff0000;
    color: white;
    font-family: 'Poppins Medium', sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.donate-btn:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}