
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    
    background: linear-gradient(rgba(35, 34, 38, 0.88), rgba(35, 34, 38, 0.88)), 
                url('banner.png') no-repeat center center fixed;
    background-size: cover;
    color: #c4c1c9; /* dull light grey */
    font-family: Helvetica, Arial, sans-serif;
    padding: 0;
    margin: 0;
    text-align: center;
    line-height: 1.4;
    min-height: 100vh;
}


.top-nav {
    text-align: right;
    padding: 20px 30px;
}

.top-nav a {
    color: #887f96;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.top-nav a:hover {
    color: #9e94ad;
    text-decoration: underline;
}


.center-content {
    max-width: 600px;
    width: 100%;
    margin: 90px auto 0 auto; 
    padding: 0 20px;
}


.brand-name {
    font-size: 64px; 
    color: #a28cb5; 
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}


.platform-section {
    margin-bottom: 35px;
}

.platforms-list {
    font-size: 11px;
    color: #767080; 
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.icon-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}


.plat-icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
    color: #767080; 
}


.plat-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}


.button-zone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.server-btn {
    display: inline-flex;
    align-items: center;
    background-color: #383240;
    color: #e3e0e8;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    border: 1px solid #474052;
    white-space: nowrap;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.server-btn:hover {
    background-color: #413a4a;
    border-color: #554d61;
}


.discord-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    display: inline-block;
    flex-shrink: 0;
}

.divider {
    border: 0;
    height: 1px;
    background: #34313a;
    margin: 50px auto;
    width: 80%;
}


.ui-leaks-preview h2 {
    color: #dedbe3;
    font-size: 20px;
    margin-bottom: 5px;
}

.ui-leaks-preview p {
    font-size: 13px;
    color: #767080;
    margin-bottom: 15px;
}

.view-leaks-link {
    color: #887f96;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.view-leaks-link:hover {
    text-decoration: underline;
}



.leaks-layout, .faq-layout {
    max-width: 700px;
    width: 100%;
    margin: 40px auto;
    text-align: left;
    padding: 0 20px;
}

.back-home {
    display: inline-block;
    color: #887f96;
    text-decoration: none;
    margin-bottom: 30px;
    font-size: 14px;
    transition: color 0.2s ease;
}

.faq-title, .leaks-title {
    color: #dedbe3;
    margin-bottom: 25px;
    font-size: 28px;
}

.faq-block, .leak-card {
    margin-bottom: 20px;
    background-color: rgba(42, 41, 46, 0.85);
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #323138;
    transition: border-color 0.2s ease;
}

.faq-block:hover, .leak-card:hover {
    border-color: #474052;
}

.faq-block h3, .leak-card h3 {
    color: #a28cb5;
    font-size: 16px;
    margin-bottom: 8px;
}

.faq-block p {
    color: #afacb5;
    font-size: 14px;
    line-height: 1.5;
}

.leak-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 10px;
    border: 1px solid #1f1e22;
    background-color: #232226;
    border-radius: 4px;
}

.leaks-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.leaks-grid .leak-card {
    flex: 1 1 160px;
    max-width: 180px;
    padding: 12px;
    margin-bottom: 0;
}

.leaks-grid .leak-card h3 {
    font-size: 13px;
}

.credits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.credit-tile {
    flex: 1 1 150px;
    max-width: 180px;
    background-color: rgba(42, 41, 46, 0.85);
    border: 1px solid #323138;
    border-radius: 6px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.credit-tile:hover {
    border-color: #474052;
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.credit-tile h3 {
    color: #a28cb5;
    font-size: 15px;
    margin-bottom: 4px;
}

.credit-tile p {
    color: #767080;
    font-size: 12px;
}

.credit-role {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    color: #dedbe3;
    font-size: 13px;
    margin-top: 0;
    padding-top: 0;
    border-top: 1px solid transparent;
    transition: max-height 0.25s ease, opacity 0.25s ease, margin-top 0.25s ease, padding-top 0.25s ease, border-color 0.25s ease;
}

.credit-tile.active .credit-role {
    max-height: 60px;
    opacity: 1;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #323138;
}


.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 19, 22, 0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.visible {
    display: flex;
}

.modal-box {
    background-color: #2a292e;
    border: 1px solid #474052;
    border-radius: 6px;
    padding: 25px;
    max-width: 380px;
    text-align: center;
}

.modal-box h3 {
    color: #a28cb5;
    font-size: 18px;
    margin-bottom: 10px;
}

.modal-box p {
    color: #afacb5;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 18px;
}

.job-tag {
    display: inline-block;
    color: #a28cb5;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid #474052;
    border-radius: 4px;
    padding: 3px 8px;
    margin-bottom: 10px;
}

.faq-block ul {
    color: #afacb5;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
    padding-left: 20px;
}

.job-apply-link {
    display: inline-block;
    color: #887f96;
    font-size: 14px;
    text-decoration: none;
    margin-top: 12px;
    transition: color 0.2s ease;
}

.job-apply-link:hover {
    color: #9e94ad;
    text-decoration: underline;
}

.job-form {
    text-align: left;
    max-width: 500px;
    margin-top: 10px;
}

.job-form label {
    display: block;
    color: #afacb5;
    font-size: 13px;
    margin-bottom: 6px;
    margin-top: 16px;
}

.job-form input,
.job-form select,
.job-form textarea {
    width: 100%;
    background-color: #1f1e22;
    color: #e3e0e8;
    border: 1px solid #383240;
    border-radius: 4px;
    padding: 10px 12px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.job-form input:focus,
.job-form select:focus,
.job-form textarea:focus {
    outline: none;
    border-color: #a28cb5;
}

.job-form textarea {
    resize: vertical;
    min-height: 100px;
}

.job-form button {
    margin-top: 20px;
    cursor: pointer;
}

.job-form-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    font-size: 13px;
    margin-top: 14px;
}

.form-status.success {
    color: #8fbf8f;
}

.form-status.error {
    color: #c98a8a;
}


.demo-article {
    margin-bottom: 20px;
}

.demo-article p {
    color: #afacb5;
    font-size: 14px;
    line-height: 1.6;
}

.play-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    display: inline-block;
    flex-shrink: 0;
}

.demo-warning {
    background-color: rgba(201, 138, 138, 0.08);
    border: 1px solid #5c3a3a;
    border-radius: 6px;
    padding: 18px 20px;
    margin-bottom: 25px;
}

.demo-warning h3 {
    color: #d99a9a;
    font-size: 15px;
    margin-bottom: 8px;
}

.demo-warning p {
    color: #b5aeae;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.demo-warning p:last-child {
    margin-bottom: 0;
}


#demo-stage {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 2000;
}

#demo-stage.active {
    display: block;
}

#demo-frame-slot, #demo-frame-slot .demo-frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

#exit-demo-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #474052;
    background-color: rgba(42, 41, 46, 0.85);
    color: #e3e0e8;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    z-index: 2010;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

#exit-demo-btn:hover {
    background-color: #413a4a;
    border-color: #554d61;
}

#demo-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(42, 41, 46, 0.9);
    color: #dedbe3;
    border: 1px solid #474052;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 13px;
    cursor: pointer;
    z-index: 2010;
    opacity: 1;
    transition: opacity 0.6s ease;
}

#demo-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

#demo-hint kbd {
    background-color: #1f1e22;
    border: 1px solid #474052;
    border-radius: 3px;
    padding: 1px 6px;
    font-family: inherit;
    font-size: 12px;
}