* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('images/background.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#border-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: url('images/border.png') repeat-x;
    background-size: contain;
    z-index: 999;
}

#border-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: url('images/border.png') repeat-x;
    background-size: contain;
    z-index: 999;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 100%;
    background: url('images/border.png') repeat-y;
    background-size: contain;
    z-index: 999;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: url('images/border.png') repeat-y;
    background-size: contain;
    z-index: 999;
}

.container {
    padding: 40px;
    width: 90%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}

.title-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 700px;
    height: auto;
    max-width: 90%;
}



.buttons-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 60px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    text-decoration: none;
}

.btn img {
    display: block;
}

.btn-left {
    text-align: center;
}

.btn-right {
    text-align: center;
}



.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 20px;
        min-height: 70vh;
    }
}

/* Header and paragraph styling: bright green fill, dark blue outline, white glow */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ff00; /* bright green fill */
    -webkit-text-stroke: 1px darkblue; /* outline for WebKit browsers */
    text-shadow: 0 0 10px rgba(255,255,255,0.9),
                 -1px -1px 0 darkblue,
                 1px -1px 0 darkblue,
                 -1px 1px 0 darkblue,
                 1px 1px 0 darkblue; /* dark blue outline via shadows */
    margin: 0.2em 0;
    line-height: 1.1;
    font-family: Arial, sans-serif;
}

p {
    font-size: 1rem;
    color: #00ff00; /* bright green fill */
    text-shadow: 0 0 8px rgba(255,255,255,0.85),
                 -1px -1px 0 darkblue,
                 1px -1px 0 darkblue,
                 -1px 1px 0 darkblue,
                 1px 1px 0 darkblue; /* dark blue outline via shadows */
    line-height: 1.6;
    margin-bottom: 1rem;
    font-family: Arial, sans-serif;
}

/* Center chat embed and make it responsive */
.chat-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.chat-section .chat-embed {
    width: 100%;
    max-width: 900px;
    height: 450px;
    display: block;
    border: 3px solid #000;
}
