body {
    font-family: Arial, sans-serif;
    background-color: rgb(25, 25, 25);
    margin: 0;
    overflow-x: hidden;
}

.header {
    background-color: rgb(42, 42, 42);
    height: 65px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.icon {
    height: 70px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
}

.titles {
    display: flex;
    align-items: center;
    margin-left: 20px;
    flex-grow: 1;
}

.blank h1 {
    color: rgb(219, 21, 22);
    margin: 0;
}

.RP h1 {
    color: rgb(231, 232, 234);
    margin: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tab-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.tab-button:hover .menu-icon span {
    background-color: rgb(219, 21, 22);
}

.tab-button.open .menu-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.tab-button.open .menu-icon span:nth-child(2) {
    opacity: 0;
}

.tab-button.open .menu-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.tab-list {
    position: fixed;
    top: 65px;
    right: -250px;
    width: 250px;
    height: calc(100vh - 65px);
    background-color: rgb(42, 42, 42);
    transition: right 0.3s ease-in-out;
    z-index: 999;
}

.tab-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab-list li {
    padding: 12px 16px;
    border-bottom: 1px solid rgb(25, 25, 25);
}

.tab-list li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.tab-list li:hover, .tab-list li.active-tab {
    background-color: rgb(219, 21, 22);
}

.tab-icon {
    font-size: 16px;
    width: 20px;
    margin-right: 8px;
    text-align: center;
}

.tab-list.open {
    right: 0;
}

.slideshow-container {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) grayscale(0.3);
}

.slideshow-overlay {
    position: absolute;
    top: 250px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.overlay-icon {
    width: 450px;
    height: auto;
    margin-bottom: 10px;
}

.overlay-text {
    font-size: 50px;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.overlay-text .blank {
    color: rgb(219, 21, 22);
}

.overlay-text .rp {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.subtext {
    font-size: 24px;
    color: white;
    margin-top: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.slideshow-filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.712);
    z-index: 1;
}

.discord-panel {
    background-color: rgb(25, 25, 25);
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.discord-content {
    max-width: 800px;
    margin: 0 auto;
}

.discord-panel h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: rgb(219, 21, 22);
}

.discord-panel p {
    font-size: 18px;
    margin-bottom: 30px;
}

.discord-button {
    display: inline-block;
    background-color: #7289DA;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.discord-button:hover {
    background-color: #5a6fb5;
}

.about-section {
    background-color: rgb(25, 25, 25);
    padding: 40px 20px;
    color: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: rgb(219, 21, 22);
    text-align: center;
}

.about-item {
    margin-bottom: 30px;
}

.about-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: rgb(219, 21, 22);
}

.about-item p {
    font-size: 16px;
    line-height: 1.6;
}

.footer {
    background-color: rgb(42, 42, 42);
    padding: 20px;
    text-align: center;
    color: white;
    border-top: 2px solid rgb(219, 21, 22);
    margin-top: 40px;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.footer-links a:hover {
    color: rgb(219, 21, 22);
}

.footer-disclaimer {
    font-size: 12px;
    margin-bottom: 10px;
    color: rgb(150, 150, 150);
}

.footer-copyright {
    font-size: 12px;
    color: rgb(150, 150, 150);
}

.tab-login {
    width: 100%;
    padding: 12px 16px;
    background-color: rgb(42, 42, 42);
    border-top: 1px solid rgb(25, 25, 25);
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
}

.tab-login a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
}

.tab-login a:hover {
    background-color: rgb(219, 21, 22);
}

@media (max-width: 768px) {
    .slideshow-overlay {
        top: 150px; 
    }

    .overlay-icon {
        width: 300px; 
    }

    .overlay-text {
        font-size: 40px; 
    }

    .subtext {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .slideshow-overlay {
        top: 100px; 
    }

    .overlay-icon {
        width: 200px; 
    }

    .overlay-text {
        font-size: 30px;
    }

    .subtext {
        font-size: 16px; 
    }
}