body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #0c4b81, #001A33);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    color: #000000;
    min-height: 100vh;
    font-weight: bold;
}
.container {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
    font-weight: bold;
}

.box, .button-box {
    background: linear-gradient(90deg, #D5D3CD, #5c5858);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    width: 100%;
    font-weight: bold;
}
.box p {
    margin: 0;
    font-size: 1.15rem;
    font-weight: bold;
}

.button-container {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-weight: bold;
}
button {
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.15s, box-shadow 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #383030, #052849);
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0,59,111,0.18);
}
.button-container button {
    flex: 1;
    aspect-ratio: 1;
    background: linear-gradient(90deg, #383030, #052849);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,59,111,0.18);
    font-weight: bold;
}
.large-button {
    width: 100%;
    aspect-ratio: 6 / 1;
    margin-top: 16px;
    background: linear-gradient(90deg, #003B6F, #001A33);
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0,59,111,0.18);
    height: 80px;
}
button:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 4px 16px rgba(0,59,111,0.22);
    font-weight: bold;
}

@media (max-width: 600px) {
    .container, .box, .button-box {
        padding: 16px;
        font-weight: bold;
    }
    .button-container {
        flex-direction: column;
        gap: 12px;
        font-weight: bold;
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 20px;
    background: linear-gradient(1deg, #D5D3CD, #222);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    flex-wrap: wrap;
    font-weight: bold;
}
.header-logo img {
    max-width: 150px;
    height: auto;
}
.header-buttons {
    display: flex;
    gap: 10px;
    margin-left: auto;
    flex-wrap: wrap;
    font-weight: bold;
}
.header-buttons button {
    flex: 1 1 0;
    padding: 6px 20px;
    font-size: 1rem;
    min-width: 120px;
    cursor: pointer;
    max-width: 100vw;
    box-sizing:border-box;
    font-weight: bold;
}
.container {
    margin-top: 120px; 
    font-weight: bold;
}
@media (max-width: 700px) {
    .header-buttons {
        width: 100%;
        justify-content: flex-start;
        margin-left: 0;
        gap: 6px;
        font-weight: bold;
    }
    .header-buttons button {
        min-width: 80px;
        font-size: 0.95rem;
        padding: 6px 10px;
        font-weight: bold;
    }
}

.announcements-box {
    padding: 18px 24px;
    font-weight: bold;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(68,68,68,0.15);
    background: linear-gradient(90deg, #ff0000, #ec1506);
    width: 102.67%;
}

.acc-setting-buttons {
    display: flex;
    gap: 10px;
    margin-left: auto;
    flex-wrap: wrap;
    font-weight: bold;
}
.acc-setting-buttons button {
    flex: 1 1 0;
    padding: 6px 20px;
    font-size: 1rem;
    min-width: 120px;
    cursor: pointer;
    max-width: 100vw;
    box-sizing: border-box;
    font-weight: bold;
}

.feed-box {
    text-align: center;
    position: static;
    text-decoration: underline;
    font-weight: bold;
    font-size: 2rem;
}
.feed-content {
    background: linear-gradient(90deg, #4b4848, #5c5858);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    width: 100%;
    color: #ffffff;
    font-weight: bold;
    max-width: 530px;
}
.discordlink {
    background: linear-gradient(90deg, #D5D3CD, #5c5858);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    width: 100%;
    font-weight: bold;
}
.p1 {
    text-align: center;
    position: static;
    text-decoration: underline;
    font-weight: bold;
    font-size: 2rem;
}
.credits {
    background: linear-gradient(90deg, #D5D3CD, #5c5858);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    width: 100%;
    font-weight: bold;
}
.credits-content {
    font-size: 1.15rem;
    font-weight: bold;
}