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

body {
    font-family: 'Comic Sans MS', 'Comic Sans', 'Comic Neue', sans-serif;
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00, #ff00ff);
    background-size: 400% 400%;
    animation: backgroundShift 3s ease infinite;
    color: #000000;
    overflow-x: hidden;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><text y="18" font-size="20">⭐</text></svg>'), auto;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff00ff;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffff00;
    font-size: 3rem;
}

.loading-bar {
    width: 50%;
    height: 2rem;
    background: #000000;
    border: 0.5rem solid #ffff00;
    margin-top: 2rem;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: #00ffff;
    width: 0%;
    animation: loading 5s linear infinite;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 50%; }
    100% { width: 100%; }
}

.construction-banner {
    background: #ffff00;
    color: #ff0000;
    padding: 1rem;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    border: 0.5rem dashed #ff0000;
    animation: blink 0.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.visitor-counter {
    background: #00ffff;
    color: #ff00ff;
    padding: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    border: 0.3rem solid #ff00ff;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

h1 {
    font-size: 4rem;
    margin: 2rem 0;
    text-shadow: 0.3rem 0.3rem 0 #ff00ff, -0.3rem -0.3rem 0 #00ffff;
    animation: bounce 1s infinite;
}

h2 {
    font-size: 2.5rem;
    margin: 1.5rem 0;
    text-decoration: underline;
}

.rainbow-text {
    background: linear-gradient(90deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow 2s linear infinite;
}

@keyframes rainbow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.blinking-text {
    animation: blink 0.5s infinite;
    font-size: 2rem;
    font-weight: bold;
    color: #ff0000;
}

.shake {
    animation: shake 0.5s infinite;
    color: #00ff00;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-1rem); }
    75% { transform: translateX(1rem); }
}

.bounce {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-1rem); }
}

.content-section {
    background: rgba(255, 255, 255, 0.8);
    border: 0.5rem solid #ff00ff;
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 1rem 1rem 0 #00ffff, -1rem -1rem 0 #ffff00;
}

.annoying-text {
    font-size: 1.5rem;
    line-height: 2;
    color: #0000ff;
    text-transform: uppercase;
}

.feature-list {
    list-style: none;
    font-size: 1.5rem;
    text-align: left;
    display: inline-block;
}

.feature-list li {
    margin: 1rem 0;
    padding: 0.5rem;
    background: #ffff00;
    border: 0.3rem solid #ff00ff;
    color: #ff0000;
}

.gif-section {
    margin: 2rem 0;
    padding: 2rem;
    background: #00ffff;
    border: 0.5rem dashed #ff00ff;
}

.gif-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.spinning-gif {
    width: 200px;
    height: 200px;
    border: 0.5rem solid #ffff00;
    animation: spin 3s linear infinite;
    border-radius: 50%;
}

@keyframes spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

.image-gallery-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #ffff00;
    border: 1rem solid #ff00ff;
    border-radius: 1rem;
    box-shadow: 1rem 1rem 0 #00ffff, -1rem -1rem 0 #ff0000;
}

.image-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-image {
    max-width: 300px;
    max-height: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 0.5rem solid #ff00ff;
    border-radius: 1rem;
    box-shadow: 0.5rem 0.5rem 0 #00ffff, -0.5rem -0.5rem 0 #ff0000;
    animation: imageBounce 3s ease-in-out infinite;
    background: #ffffff;
    padding: 0.5rem;
}

.gallery-image:nth-child(even) {
    animation: imageRotate 4s ease-in-out infinite;
}

.gallery-image:nth-child(odd) {
    animation: imageBounce 3s ease-in-out infinite;
}

@keyframes imageBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-1rem) scale(1.05);
    }
}

@keyframes imageRotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(5deg) scale(1.05);
    }
}

.moving-text {
    font-size: 2rem;
    color: #ff00ff;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
    transition: all 0.1s;
}

.marquee-section {
    margin: 2rem 0;
    padding: 1rem;
    background: #ffff00;
    border: 0.5rem solid #ff0000;
}

.marquee-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff00ff;
}

.testimonials-section {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00);
    background-size: 200% 200%;
    animation: backgroundShift 3s ease infinite;
    border: 1rem solid #ff0000;
    border-radius: 1rem;
    box-shadow: 0 0 2rem #ffff00, inset 0 0 2rem #00ffff;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border: 0.5rem solid #ff00ff;
    border-radius: 0.5rem;
    box-shadow: 0.5rem 0.5rem 0 #00ffff, -0.5rem -0.5rem 0 #ffff00;
    animation: testimonialGlow 2s ease-in-out infinite;
    text-align: center;
}

.testimonial:nth-child(even) {
    animation: testimonialBounce 3s ease-in-out infinite;
    border-color: #00ff00;
}

.testimonial-text {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.testimonial-author {
    font-size: 1rem;
    color: #ff0000;
    font-style: italic;
    font-weight: bold;
}

@keyframes testimonialGlow {
    0%, 100% {
        box-shadow: 0.5rem 0.5rem 0 #00ffff, -0.5rem -0.5rem 0 #ffff00, 0 0 1rem #ff00ff;
    }
    50% {
        box-shadow: 0.5rem 0.5rem 0 #00ffff, -0.5rem -0.5rem 0 #ffff00, 0 0 2rem #ff00ff;
    }
}

@keyframes testimonialBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-0.5rem);
    }
}



.footer {
    margin-top: 3rem;
    padding: 2rem;
    background: #000000;
    color: #ffffff;
    border-top: 1rem solid #ff00ff;
}

.footer p {
    margin: 1rem 0;
    font-size: 1.2rem;
}

@keyframes backgroundShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cursor-trail-element {
    position: fixed;
    pointer-events: none;
    font-size: 1.5rem;
    z-index: 9999;
    animation: trailFade 1s ease-out forwards;
}

@keyframes trailFade {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5) rotate(360deg);
    }
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: rgba(255, 0, 255, 0.9);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 1rem;
    box-sizing: border-box;
}

.popup.show {
    display: flex;
    animation: popupBounce 0.5s;
}

.popup-content {
    background: #ffff00;
    padding: 3rem;
    border: 1rem solid #ff00ff;
    border-radius: 1rem;
    text-align: center;
    max-width: 500px;
    animation: shake 0.3s infinite;
}

.popup-content h2 {
    color: #ff0000;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.popup-content p {
    color: #0000ff;
    font-size: 1.5rem;
    margin: 1rem 0;
}

.popup-close {
    background: #ff0000;
    color: #ffffff;
    border: 0.5rem solid #000000;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    font-family: 'Comic Sans MS', cursive;
    cursor: pointer;
    margin-top: 1rem;
    animation: bounce 0.5s infinite;
}

.popup-close:hover {
    background: #00ff00;
    color: #ff00ff;
}

.tenor-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 255, 0.95);
    z-index: 10002;
    justify-content: center;
    align-items: center;
    animation: gifPopupEntrance 0.3s ease-out;
}

.tenor-popup.show {
    display: flex;
}

.tenor-gif-container {
    width: 100%;
    max-width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tenor-gif-embed {
    width: 100%;
    height: 100%;
}

@keyframes gifPopupEntrance {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.tinsel-border {
    position: fixed;
    z-index: 9998;
    pointer-events: none;
    background: repeating-linear-gradient(
        90deg,
        #ff0000 0px,
        #ff0000 10px,
        #00ff00 10px,
        #00ff00 20px,
        #ffff00 20px,
        #ffff00 30px,
        #ff00ff 30px,
        #ff00ff 40px,
        #00ffff 40px,
        #00ffff 50px
    );
    animation: tinselSparkle 2s linear infinite;
}

.tinsel-top {
    top: 0;
    left: 0;
    width: 100%;
    height: 1.5rem;
    background-size: 50px 100%;
}

.tinsel-bottom {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5rem;
    background-size: 50px 100%;
}

.tinsel-left {
    top: 0;
    left: 0;
    width: 1.5rem;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        #ff0000 0px,
        #ff0000 10px,
        #00ff00 10px,
        #00ff00 20px,
        #ffff00 20px,
        #ffff00 30px,
        #ff00ff 30px,
        #ff00ff 40px,
        #00ffff 40px,
        #00ffff 50px
    );
    background-size: 100% 50px;
}

.tinsel-right {
    top: 0;
    right: 0;
    width: 1.5rem;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        #ff0000 0px,
        #ff0000 10px,
        #00ff00 10px,
        #00ff00 20px,
        #ffff00 20px,
        #ffff00 30px,
        #ff00ff 30px,
        #ff00ff 40px,
        #00ffff 40px,
        #00ffff 50px
    );
    background-size: 100% 50px;
}

@keyframes tinselSparkle {
    0%, 100% {
        opacity: 1;
        filter: brightness(1);
    }
    50% {
        opacity: 0.8;
        filter: brightness(1.5);
    }
}

#christmas-trees {
    position: relative;
    width: 100%;
    min-height: 100%;
    pointer-events: none;
    z-index: 1;
}

.christmas-tree {
    position: absolute;
    font-size: 2.5rem;
    animation: treeTwinkle 2s ease-in-out infinite;
    filter: drop-shadow(0.2rem 0.2rem 0.2rem rgba(0, 0, 0, 0.5));
}

.christmas-tree:nth-child(odd) {
    animation: treeBounce 3s ease-in-out infinite;
}

.christmas-tree:nth-child(even) {
    animation: treeRotate 4s linear infinite;
}

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

@keyframes treeBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-1rem) rotate(5deg);
    }
}

@keyframes treeRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(10deg) scale(1.1);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    h1 {
        font-size: 2rem;
        margin: 1rem 0;
        text-shadow: 0.2rem 0.2rem 0 #ff00ff, -0.2rem -0.2rem 0 #00ffff;
    }
    
    h2 {
        font-size: 1.5rem;
        margin: 1rem 0;
    }
    
    .container {
        padding: 1rem;
        max-width: 100%;
    }
    
    .content-section {
        padding: 1rem;
        margin: 1rem 0;
        border-width: 0.3rem;
    }
    
    .annoying-text {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .blinking-text {
        font-size: 1.2rem;
    }
    
    .spinning-gif {
        width: 120px;
        height: 120px;
    }
    
    .gif-section {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .gif-container {
        gap: 1rem;
    }
    
    .image-gallery-section {
        padding: 1rem;
        margin: 1.5rem 0;
        border-width: 0.5rem;
    }
    
    .image-gallery {
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .gallery-image {
        max-width: 100%;
        width: auto;
        height: auto;
        max-height: 250px;
        object-fit: contain;
        border-width: 0.3rem;
        padding: 0.3rem;
    }
    
    .marquee-section {
        padding: 0.5rem;
        margin: 1rem 0;
    }
    
    .marquee-text {
        font-size: 1rem;
    }
    

    
    .testimonials-section {
        padding: 1rem;
        margin: 1.5rem 0;
        border-width: 0.5rem;
    }
    
    .testimonials-container {
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .testimonial {
        padding: 1rem;
        border-width: 0.3rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-author {
        font-size: 0.8rem;
    }
    
    .construction-banner {
        font-size: 1.2rem;
        padding: 0.5rem;
    }
    
    .visitor-counter {
        font-size: 1rem;
        padding: 0.3rem;
    }
    
    .feature-list {
        font-size: 1rem;
    }
    
    .feature-list li {
        margin: 0.5rem 0;
        padding: 0.3rem;
    }
    
    .moving-text {
        font-size: 1.2rem;
    }
    
    .click-me-section {
        display: none;
    }
    
    .footer {
        padding: 1rem;
        margin-top: 2rem;
    }
    
    .footer p {
        font-size: 1rem;
        margin: 0.5rem 0;
    }
    
    .popup {
        padding: 0;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        z-index: 10001;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .popup.show {
        display: flex !important;
    }
    
    .popup-content {
        padding: 1.5rem;
        max-width: 90%;
        width: 90%;
        margin: auto;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        max-height: none;
        overflow-y: visible;
        flex-shrink: 0;
    }
    
    .popup-content h2 {
        font-size: 1.5rem;
    }
    
    .popup-content p {
        font-size: 1rem;
    }
    
    .popup-close {
        padding: 0.8rem 1.5rem;
        font-size: 1.2rem;
        min-height: 44px;
    }
    
    .tenor-gif-container {
        max-width: 95%;
        height: 300px;
    }
    
    .tinsel-border {
        height: 1rem;
    }
    
    .tinsel-left,
    .tinsel-right {
        width: 1rem;
    }
    
    .christmas-tree {
        font-size: 2rem;
    }
    
    .loading-text {
        font-size: 1.5rem;
    }
    
    .loading-bar {
        width: 80%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0.5rem;
    }
    
    .content-section {
        padding: 0.8rem;
    }
    
    .spinning-gif {
        width: 100px;
        height: 100px;
    }
    
    .gallery-image {
        max-height: 200px;
        width: auto;
        height: auto;
        object-fit: contain;
    }
    
    .image-gallery-section {
        padding: 0.8rem;
    }
    
    .popup {
        padding: 0;
        align-items: center;
        justify-content: center;
        height: 100vh;
        width: 100vw;
    }
    
    .popup-content {
        padding: 1rem;
        max-width: 95%;
        width: 95%;
        margin: auto;
        max-height: none;
    }
    
    .tenor-gif-container {
        height: 250px;
    }
    
    .christmas-tree {
        font-size: 1.5rem;
    }
}

