.container { 
    width:100%; 
    max-width:980px; 
    margin:0 auto;
}

/* WOTR Promo Modal Styles - These match the actual HTML output */
.wotrpromo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    visibility: hidden; /* Hidden by default */
    opacity: 0; /* Hidden by default */
}

.wotrpromo-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.wotrpromo-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.wotrpromo-modal-close:hover {
    background: #333;
}

.wotrpromo-logo {
    max-width: 200px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

.wotrpromo-modal h2 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 20px 0;
    color: #000;
}

.wotrpromo-body {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.wotrpromo-button {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.wotrpromo-button:hover {
    background: #333;
    color: #fff;
}

.wotrpromo-policy {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}
