.banner {
    width: 100%;
    height: 100vh;
    background-image: url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-content {
    text-align: center;
    z-index: 1;
    max-width: 80%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin-top: -50px;
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.banner-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.banner-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
}

.main-content {
    background-color: #000;
    padding: 2rem 0;
}

.section {
    margin-bottom: 2rem;
}

.ip-section {
    background-color: var(--secondary-color);
    border: 3px solid #1e1e1f;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.ip-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ip-display {
    font-size: 1.8rem;
    font-weight: bold;
    word-break: break-all;
    background-color: var(--primary-color);
    padding: 1rem;
    border: 2px solid #333;
    flex: 1;
    min-width: 200px;
}

.copy-button {
    font-size: 1.2rem;
    padding: 10px 20px;
    cursor: pointer;
    white-space: nowrap;
}

.gameplay-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    background-color: var(--secondary-color);
    border: 3px solid #1e1e1f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    overflow: hidden;
}

.gameplay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-member {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: var(--secondary-color);
    border: 3px solid #1e1e1f;
}

.staff-avatar {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    border: 3px solid #1e1e1f;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.staff-info h4 {
    margin-bottom: 0.5rem;
}

.rules-section {
    background-color: var(--secondary-color);
    border: 3px solid #1e1e1f;
    padding: 1.5rem;
    margin-top: 2rem;
}

.rules-list {
    list-style-type: none;
    counter-reset: rule-counter;
}

.rules-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #444;
    counter-increment: rule-counter;
}

.rules-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.rules-list li::before {
    content: counter(rule-counter) ". ";
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--accent-color);
}

.faq-section {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 1rem;
    border: 2px solid var(--secondary-color);
}

.faq-question {
    background-color: var(--primary-color);
    padding: 1rem;
    cursor: pointer;
    font-weight: bold;
    border-bottom: 2px solid var(--secondary-color);
}

.faq-answer {
    background-color: var(--secondary-color);
    padding: 1rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.play-button {
    font-size: 1.2rem;
    padding: 12px 24px;
}

.wiki-button {
    font-size: 1.2rem;
    padding: 12px 24px;
}

footer {
    background-color: #1e1e1f;
    color: var(--text-color);
    padding: 2rem 0;
    border-top: 3px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--link-color);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    border: 2px solid #444;
    text-align: center;
    line-height: 36px;
    color: var(--text-color);
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: #000;
}

.footer-bottom {
    margin-top: 2rem;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #333;
}