/* RESET */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: url(img/backgroundSNIPER_2_2023.jpg);
    background-repeat: repeat-y;
    background-attachment: fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
}

/* HEADER */
header{
    width: 60%;
    height: 200px;
    margin: 0 auto;
    background-image: url(img/ocsbanner_2020.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
}

/* NAV */
nav ul{
    text-align: center;
    list-style: none;
}

nav ul li{
    display: inline-block;
    margin: 5px;
}

/* CONTAINER */
#container{
    width: 60%;
    margin: 20px auto;
    border-radius: 20px;
    border: 1px solid #c29d18;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
}

/* ARTICLE */
article{
    border-radius: 20px;
    border: 1px solid #c29d18;
    margin: 20px auto;
    padding: 15px;
    background-color: #202020;
}

/* FOOTER */
footer{
    width: 60%;
    margin: 20px auto;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #c29d18;
    background-color: #202020;
    color: #c29d18;
    text-align: center;
}

/* TABLE */
table{
    width: 100%;
    color: #c29d18;
    border-collapse: collapse;
    margin: 20px auto;
}

td{
    text-align: center;
    border: 1px solid #c29d18;
    background-color: #202020;
    padding: 10px;
}

/* TEXT */
.txtcolorb,
.mtxtcolor,
.story{
    color: #c29d18;
    text-align: center;
}

/* BOXES (NO FLOATS — FLEXBOX INSTEAD) */
.flex-container{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.sev4,
.ts3{
    flex: 1 1 300px;
    min-height: 400px;
    border-radius: 15px;
    border: 1px solid #c29d18;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 15px;
}

/* LINKS */
a{
    color: #c29d18;
    background-color: #202020;
    padding: 5px 10px;
    border: 1px solid #c29d18;
    border-radius: 20px;
    text-decoration: none;
    transition: 0.3s;
}

a:hover{
    color: #ffffff;
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 1024px){
    header,
    footer,
    #container{
        width: 90%;
    }
}

@media (max-width: 768px){
    .flex-container{
        flex-direction: column;
    }
}
.steam-widget {
    width: 100%;
    max-width: 650px;
    margin: 20px auto;
}

.steam-widget iframe {
    width: 100%;
    height: 190px;
}
.forum-wrapper {
    width: 100%;
    margin: 20px auto;
}

.forum-wrapper iframe {
    width: 100%;
    height: 900px;
    border: 1px solid #c29d18;
    border-radius: 15px;
}
.server-frame {
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
}

.server-frame iframe {
    width: 100%;
    height: 600px;
    border: 1px solid #c29d18;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.3);
}
.member-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.member-table th,
.member-table td {
    border: 1px solid #c29d18;
    padding: 15px;
    text-align: center;
}

.member-table th {
    background-color: rgba(0, 0, 0, 0.6);
    color: gold;
}

.member-table img {
    max-width: 120px;
    height: auto;
    border-radius: 10px;
}

.rank-founder {
    color: red;
    font-weight: bold;
}
.rank-member {
    color: green;
    font-weight: bold;
}

.former-note {
    margin-bottom: 20px;
    font-size: 18px;
}

.anti-cheat {
    text-align: center;
}

.warning {
    color: red;
    font-size: 20px;
    font-weight: bold;
}

.cheat-img {
    height: 100px;
}

.cheat-banner {
    max-width: 100%;
}
.requirements {
    text-align: left;
    max-width: 800px;
    margin: 20px auto;
    line-height: 1.8;
}

.requirements li {
    margin-bottom: 10px;
}

.join-contact {
    margin-top: 30px;
    font-size: 18px;
}

.join-warning {
    margin-top: 20px;
    color: #b10000;
    font-weight: bold;
	font-size:20px;
}

.disclaimer {
    text-align: center;
}

.no-exceptions {
    color: red;
    font-weight: bold;
    font-size: 20px;
}

.founder-quote {
    margin-top: 20px;
    font-style: italic;
    color: #c29d18;
}
.donate-section {
    text-align: center;
}

.donate-highlight {
    font-size: 20px;
    color: lightgreen;
    margin: 20px 0;
}

.donate-button {
    margin: 30px 0;
}

.paypal-btn {
    max-width: 330px;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.donate-disclaimer {
    font-size: 14px;
    color: orange;
    margin-top: 20px;
}

.donate-thanks {
    font-size: 22px;
    margin-top: 20px;
}
/* Glow Animation */
.glow {
    font-size: 16px; /* adjust if needed */
    color: #ffffff;
    text-align: center;
    animation: glowPulse 1.5s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    from {
        text-shadow:
            0 0 5px #ff0000,
            0 0 10px #ff0000,
            0 0 15px #ff0000,
            0 0 20px #ff0000;
    }
    to {
        text-shadow:
            0 0 2px #ff0000,
            0 0 5px #ff0000,
            0 0 8px #ff0000,
            0 0 12px #ff0000;
    }
}


