/* Base Layout Engine */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    background-color: #2B2B2B; /* Brand Deep Charcoal */
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

.porkbun-body-flex-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    box-sizing: border-box;
}

.container {
    width: 90%;
    max-width: 550px;
    text-align: center;
    padding: 110px 0 40px 0; /* Space clearing below menu header navigation */
    animation: fadeIn 1.2s ease-in-out;
    box-sizing: border-box;
}

/* ==================================================================
UNIFIED FIXED TOP NAVIGATION ENGINE
================================================================== */
.porkbun-static-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 60px !important;
    background-color: #1E1E1E !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.25) !important;
    z-index: 9999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    padding: 0 40px !important;
    box-sizing: border-box !important;
}

.porkbun-menu-container {
    position: relative !important;
    display: inline-block !important;
}

.porkbun-hamburger-trigger {
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 24px !important;
    height: 18px !important;
    padding: 0 !important;
    z-index: 10000001 !important;
}

.porkbun-hamburger-trigger span {
    display: block !important;
    width: 100% !important;
    height: 2px !important;
    background-color: #EAECED !important;
    border-radius: 2px !important;
    transition: background-color 0.2s ease !important;
}

.porkbun-hamburger-trigger:hover span {
    background-color: #0073BB !important;
}

.porkbun-dropdown-menu {
    display: none !important;
    position: absolute !important;
    top: 32px !important;
    right: 0 !important;
    background-color: #252525 !important;
    min-width: 180px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35) !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    border: 1px solid #333333 !important;
}

.porkbun-dropdown-menu a {
    color: #EAECED !important;
    padding: 12px 18px !important;
    text-decoration: none !important;
    display: block !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: background-color 0.2s ease, color 0.2s ease !important;
    text-align: left !important;
}

.porkbun-dropdown-menu a:hover {
    background-color: #0073BB !important;
    color: #FFFFFF !important;
}

.porkbun-show-menu {
    display: block !important;
}

.logo {
    max-width: 320px;
    height: auto;
    margin-bottom: 50px;
}

.about-section p {
    font-weight: 300;
    line-height: 1.8;
    color: #E5E5E5;
    font-size: 1.05rem;
    margin: 0;
}

.divider {
    border: none;
    border-top: 1px solid #444444;
    margin: 45px auto;
    width: 60px;
}

.contact-section h2 {
    font-weight: 400;
    letter-spacing: 3px;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #888888;
}

.contact-section .contact-info {
    font-weight: 300;
    line-height: 1.6;
    color: #B0B0B0;
    font-size: 0.95rem;
    margin: 0;
}

.contact-section a {
    color: #0073BB;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-section a:hover {
    color: #0099FF;
    text-decoration: underline;
}

/* ==================================================================
STANDARD CLEAN CONTAINER FOR MAILERLITE INJECTION
================================================================== */
.porkbun-subscribe-box-wrapper {
    width: 100% !important;
    max-width: 400px !important; /* Centers and limits whatever layout is chosen inside MailerLite */
    margin: 40px auto 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

footer {
    width: 100%;
    text-align: center;
    padding: 40px 0;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: #666666;
    text-transform: uppercase;
    margin-top: auto;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}