/* r/ooer inspired chaotic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00, #ff00ff);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: #00ff00;
    overflow-x: hidden;
    position: relative;
}

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

/* Chaotic background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,.05) 10px, rgba(255,255,255,.05) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0,0,0,.05) 10px, rgba(0,0,0,.05) 20px);
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

/* Header styling */
.header {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.7);
    border: 5px solid #ff00ff;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 0 30px #00ffff, 0 0 60px #ff00ff;
    transform: rotate(-1deg);
    animation: headerFloat 3s ease-in-out infinite;
}

@keyframes headerFloat {
    0%, 100% { transform: rotate(-1deg) translateY(0px); }
    50% { transform: rotate(1deg) translateY(-10px); }
}

.glitch {
    font-size: 4em;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    text-shadow: 
        0.05em 0 0 #ff00ff,
        -0.03em -0.04em 0 #00ffff,
        0.025em 0.04em 0 #ffff00;
    animation: glitch 725ms infinite;
    color: #ffffff;
    letter-spacing: 0.1em;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00ff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00ffff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch {
    0% { text-shadow: 0.05em 0 0 #ff00ff, -0.03em -0.04em 0 #00ffff, 0.025em 0.04em 0 #ffff00; }
    15% { text-shadow: 0.05em 0 0 #ff00ff, -0.03em -0.04em 0 #00ffff, 0.025em 0.04em 0 #ffff00; }
    16% { text-shadow: -0.05em -0.025em 0 #ff00ff, 0.025em 0.035em 0 #00ffff, -0.05em -0.05em 0 #ffff00; }
    49% { text-shadow: -0.05em -0.025em 0 #ff00ff, 0.025em 0.035em 0 #00ffff, -0.05em -0.05em 0 #ffff00; }
    50% { text-shadow: 0.05em 0.035em 0 #ff00ff, 0.03em 0 0 #00ffff, 0 -0.04em 0 #ffff00; }
    99% { text-shadow: 0.05em 0.035em 0 #ff00ff, 0.03em 0 0 #00ffff, 0 -0.04em 0 #ffff00; }
    100% { text-shadow: -0.05em 0 0 #ff00ff, -0.025em -0.04em 0 #00ffff, -0.04em -0.025em 0 #ffff00; }
}

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 31px, 0); }
    20% { clip: rect(85px, 9999px, 140px, 0); }
    40% { clip: rect(20px, 9999px, 90px, 0); }
    60% { clip: rect(50px, 9999px, 70px, 0); }
    80% { clip: rect(5px, 9999px, 100px, 0); }
    100% { clip: rect(60px, 9999px, 85px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 119px, 0); }
    20% { clip: rect(90px, 9999px, 60px, 0); }
    40% { clip: rect(10px, 9999px, 105px, 0); }
    60% { clip: rect(120px, 9999px, 45px, 0); }
    80% { clip: rect(25px, 9999px, 80px, 0); }
    100% { clip: rect(95px, 9999px, 15px, 0); }
}

.subtitle {
    font-size: 1.5em;
    color: #ffff00;
    margin-top: 20px;
    text-shadow: 2px 2px 4px #000000;
    animation: colorCycle 3s infinite;
}

@keyframes colorCycle {
    0%, 100% { color: #ffff00; }
    33% { color: #00ffff; }
    66% { color: #ff00ff; }
}

/* Section styling */
section {
    margin: 40px 0;
    padding: 30px;
    background: rgba(0, 0, 0, 0.8);
    border: 3px dashed #00ff00;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    transform: rotate(0.5deg);
    transition: all 0.3s ease;
}

section:nth-child(even) {
    transform: rotate(-0.5deg);
    border-color: #ff00ff;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

section:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.8);
}

.section-header h2 {
    font-size: 2.5em;
    color: #ff00ff;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0 #00ffff, 6px 6px 0 #ffff00;
    animation: bounce 2s infinite;
}

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

.content-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border: 2px solid #00ffff;
    border-radius: 10px;
    font-size: 1.2em;
    line-height: 1.6;
    color: #ffffff;
    text-shadow: 1px 1px 2px #000000;
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.3), rgba(0, 255, 255, 0.3));
    border: 3px solid #ffff00;
    border-radius: 15px;
    padding: 25px;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.testimonial-card:nth-child(even) {
    transform: rotate(1deg);
}

.testimonial-card:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 0 30px #00ffff;
}

.testimonial-content .quote {
    font-size: 1.1em;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.5;
}

.testimonial-content .author {
    text-align: right;
    color: #ffff00;
    font-weight: bold;
    font-size: 1.1em;
}

/* Photo grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border: 5px solid #ff00ff;
    border-radius: 10px;
    transform: rotate(-3deg);
    transition: all 0.3s ease;
    background: #000;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.photo-item:nth-child(even) {
    transform: rotate(3deg);
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.photo-item:hover {
    transform: rotate(0deg) scale(1.1);
    z-index: 10;
    box-shadow: 0 0 40px #ffff00;
}

.photo-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    filter: saturate(1.5) contrast(1.2);
    transition: filter 0.3s ease;
}

.photo-item:hover img {
    filter: saturate(2) contrast(1.5) brightness(1.1);
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #00ff00;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.photo-item:hover .photo-caption {
    transform: translateY(0);
}

/* Video section */
.video-container {
    text-align: center;
    margin-top: 20px;
}

.video-container video {
    max-width: 100%;
    width: 800px;
    border: 5px solid #00ffff;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.7);
    background: #000;
}

.video-caption {
    margin-top: 15px;
    color: #ffff00;
    font-size: 1.1em;
    text-shadow: 2px 2px 4px #000000;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.9);
    border: 3px solid #ff00ff;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

.footer p {
    font-size: 1.5em;
    color: #00ffff;
    margin: 10px 0;
    text-shadow: 2px 2px 4px #000000;
}

.footer-note {
    font-style: italic;
    color: #ffff00;
    animation: pulse 2s infinite;
}

.footer-credit {
    font-size: 1em;
    color: #ff00ff;
    margin-top: 15px;
    font-style: normal;
    text-shadow: 1px 1px 2px #000000;
}

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

/* Responsive design */
@media (max-width: 768px) {
    .glitch {
        font-size: 2.5em;
    }
    
    .subtitle {
        font-size: 1.2em;
    }
    
    .section-header h2 {
        font-size: 2em;
    }
    
    .testimonials-grid,
    .photo-grid {
        grid-template-columns: 1fr;
    }
}

/* Fixed corner image */
.fixed-corner-image {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 150px;
    height: auto;
    z-index: 10000;
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
    animation: spin 3s linear infinite;
}

/* Extra chaotic elements */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Add some random floating elements effect */
body::after {
    content: '★';
    position: fixed;
    font-size: 2em;
    color: #ffff00;
    animation: float 10s infinite ease-in-out;
    pointer-events: none;
    z-index: 9999;
}

@keyframes float {
    0% { top: -10%; left: 10%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 110%; left: 90%; opacity: 0; }
}

/* Made with Bob */
