body {
    font-family: 'Comic Sans MS', cursive;
    background: url('epicbackground.webp') repeat;
    color: #00FF00;
    text-shadow: 2px 2px #FF00FF;
    overflow-x: hidden;
    cursor: url('cursor.webp'), auto;
}

.container {
    max-width: 1337px;
    margin: 0 auto;
    padding: 20px;
    border: 5px solid #FF00FF;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 420px;
    position: relative;
    overflow: hidden;
}
.conspiracy-text {
    position: absolute;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

@media (max-width: 600px) {
    .conspiracy-text {
        font-size: 12px !important;
    }
}

h1 {
    text-align: center;
    font-size: 69px;
    animation: rainbow 5s infinite, shake 0.5s infinite, pulse 2s infinite;
}

h2 {
    text-align: center;
    font-size: 13px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-container a {
    display: inline-block;
    text-decoration: none;
}

.logo-container a:hover .logo-placeholder {
    transform: scale(1.1);
}

#entry-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#loading {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #00FF00;
}

#enter-button {
    font-size: 24px;
    padding: 10px 20px;
    background-color: #00FF00;
    color: #000;
    border: none;
    cursor: pointer;
}

#enter-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#main-content {
    display: none;
}

#custom-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #00FF00;
    color: #000;
    padding: 20px;
    border-radius: 10px;
    display: none;
    z-index: 2000;
}

.meme-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.meme-item {
    margin: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.meme-item:hover {
    transform: scale(1.1) rotate(3deg);
}

.meme-item img {
    max-width: 200px;
    border: 3px solid #00FF00;
}

.mlg {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 100px;
    animation: spin 2s linear infinite;
}

.hitmarker {
    position: fixed;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 9999;
}

.hitmarker-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    top: 50%;
    left: 0;
}

.hitmarker-line:nth-child(1) {
    transform: rotate(45deg);
}

.hitmarker-line:nth-child(2) {
    transform: rotate(-45deg);
}

#over9000 {
    font-size: 42px;
    text-align: center;
    margin-top: 20px;
    animation: pulse 1s infinite;
}

.nyan-cat {
    position: fixed;
    top: 50%;
    left: -150px;
    width: 150px;
    animation: nyan-fly 10s linear infinite;
}

.doge {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 100px;
    animation: doge-wow 2s infinite;
}

.cycling-quote {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 18px;
    color: #fff;
    animation: fadeInOut 5s;
  }
  
  @keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    20%, 80% { opacity: 1; }
  }

.airhorn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 80px;
    cursor: pointer;
}

.pepe {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    transition: top 0.5s;
}

.container:hover .pepe {
    top: 10px;
}

.quotes {
    text-align: center;
    font-size: 24px;
    margin-top: 20px;
}

.quotes p {
    margin: 10px 0;
    animation: colorChange 3s infinite;
}

@keyframes backgroundPulse {
    0%, 100% { background-size: 100% 100%; }
    50% { background-size: 110% 110%; }
}

@keyframes rainbow {
    0% { color: red; }
    14% { color: orange; }
    28% { color: yellow; }
    42% { color: green; }
    57% { color: blue; }
    71% { color: indigo; }
    85% { color: violet; }
    100% { color: red; }
}

@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes nyan-fly {
    0% { left: -150px; }
    100% { left: 100%; }
}

@keyframes doge-wow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes colorChange {
    0% { color: #00FF00; }
    50% { color: #FF00FF; }
    100% { color: #00FF00; }
}