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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #c4ff00 0%, #b8f000 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

#floating-images {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-image {
    position: absolute;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0;
    animation: floatInOut 4s ease-in-out;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    filter: saturate(1.2) contrast(1.1);
}

@keyframes floatInOut {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(var(--rotation, 0deg));
    }
    20% {
        opacity: 0.7;
        transform: scale(1) rotate(var(--rotation, 0deg));
    }
    80% {
        opacity: 0.7;
        transform: scale(1) rotate(var(--rotation, 0deg));
    }
    100% {
        opacity: 0;
        transform: scale(0.8) rotate(var(--rotation, 0deg));
    }
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    z-index: 10;
}

.date {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    text-align: right;
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 60vh;
}

.logo-section {
    position: relative;
    z-index: 5;
}

.background-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
    animation: rockBackForth 5.7s ease-in-out infinite;
}

.logo-background {
    width: clamp(300px, 80vw, 800px);
    height: auto;
    filter: blur(1px);
}

@keyframes rockBackForth {
    0% { 
        transform: translate(-50%, -50%) rotate(-25deg);
    }
    17% { 
        transform: translate(-50%, -50%) rotate(-10deg);
    }
    34% { 
        transform: translate(-50%, -50%) rotate(-30deg);
    }
    51% { 
        transform: translate(-50%, -50%) rotate(5deg);
    }
    68% { 
        transform: translate(-50%, -50%) rotate(-20deg);
    }
    85% { 
        transform: translate(-50%, -50%) rotate(10deg);
    }
    100% { 
        transform: translate(-50%, -50%) rotate(-25deg);
    }
}

.logo {
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 900;
    line-height: 0.8;
    text-align: center;
    position: relative;
}

.sacred {
    display: block;
    color: #000;
    text-shadow: 3px 3px 0px rgba(255, 255, 255, 0.8);
}

.waste {
    display: block;
    color: #000;
    text-shadow: 3px 3px 0px rgba(255, 255, 255, 0.8);
    position: relative;
}

.waste::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20%;
    right: -20%;
    height: 8px;
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%) rotate(-5deg);
    z-index: -1;
}

.dumpster-section {
    position: absolute;
    left: 3%;
    top: 60%;
    transform: translateY(-50%);
    z-index: 4;
}

.dumpster-container {
    position: relative;
    width: 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dumpster-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.footer {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    z-index: 10;
}

.brownpaper-link {
    color: #000;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 12px 24px;
    border: 2px solid #000;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.brownpaper-link:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}



/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .tagline {
        text-align: center;
    }
    
    .main-content {
        flex-direction: column;
        gap: 2rem;
        min-height: 50vh;
    }
    
    .dumpster-section {
        position: static;
        transform: none;
        order: -1;
    }
    
    .dumpster-container {
        width: 250px;
        height: 180px;
        margin: 0 auto;
    }
    
    .background-logo {
        transform: translate(-50%, -50%) rotate(-10deg);
    }
    
    .logo-background {
        width: clamp(250px, 70vw, 600px);
    }
    
    .logo {
        font-size: clamp(3rem, 12vw, 8rem);
    }
    
    .waste::before {
        left: -10%;
        right: -10%;
    }
    
    .waste::after {
        right: -10%;
    }
}

@media (max-width: 480px) {
    .dumpster-container {
        width: 200px;
        height: 150px;
    }
    
    .date, .tagline {
        font-size: 1rem;
    }
    
    .brownpaper-link {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .character-section {
        left: 8%;
    }
    
    .character-image {
        width: 250px;
        height: 180px;
    }
}
