* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #181A20;
    color: #fff;
    text-align: center;
    padding: 0;
    margin: 0;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: #0B0E11;
    border-bottom: 2px solid #FDC700;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: gold;
}

.menu {
    font-size: 24px;
    cursor: pointer;
    color: white;
}

/* Responsive Defaults */
img {
    max-width: 100%;
    height: auto;
}

main {
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centers items horizontally in the column */
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    /* Ensures padding is included in width */
    overflow-x: hidden;
    /* Prevent horizontal scroll on main */
}

h1 {
    color: #FDC700;
    max-width: 800px;
    /* Prevents title from stretching too wide */
    width: 100%;
    /* Ensure it respects container width */
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: break-word;
    /* Ensure long text wraps */
}

.verification-box {
    background: black;
    border: 2px solid #FDC700;
    padding: 20px;
    border-radius: 10px;
    display: block;
    /* changed from inline-block for better flex interaction */
    margin-top: 20px;
    width: 100%;
    max-width: 400px;
    /* Restrict width on larger screens */
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    /* Explicitly ensure border-box */
}

button {
    background: #FDC700;
    color: black;
    padding: 10px 20px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background: #d4af37;
}

footer {
    margin-top: 50px;
    padding: 20px;
    background: black;
    border-top: 2px solid #FDC700;
}

footer a {
    color: #FDC700;
    text-decoration: none;
    font-weight: bold;
}