
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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;
}

.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: 3px;
    border: 1px solid #474052;
    white-space: nowrap;
}

.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;
}

.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;
}

.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: 4px;
    border: 1px solid #323138;
}

.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;
}