:root {
    --troll-green: #7cc576;
    --dark-green: #5a9c56;
    --pengu-orange: #ff6b57;
    --dark-orange: #e35847;
    --bg-color: #2d5a2d;
    --text: #fff;
    --purple: #a17dc9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Comic Sans MS', 'Impact', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text);
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 80%, #3a6b3a 8%, transparent 8%),
        radial-gradient(circle at 80% 30%, #3a6b3a 7%, transparent 7%),
        radial-gradient(circle at 40% 20%, #3a6b3a 5%, transparent 5%),
        radial-gradient(circle at 60% 60%, #3a6b3a 6%, transparent 6%);
}

.container {
    width: 100%;
    padding: 20px;
}

.entrance-image {
    width: 100%;
    height: 70vh;
    object-fit: contain;
    object-position: center;
    margin-bottom: 40px;
    border: 5px solid var(--troll-green);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background-color: rgba(0,0,0,0.2);
}

header {
    text-align: center;
    padding: 30px 0;
    position: relative;
}

.logo-image {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255,107,87,0.8));
    animation: pulsate 3s infinite ease-in-out;
}

@keyframes pulsate {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(255,107,87,0.8)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 25px rgba(255,107,87,1)); }
}

.content-section {
    margin: 60px 0;
    background-color: rgba(0,0,0,0.3);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    display: flex;
    flex-wrap: wrap;
}

.content-section:nth-child(odd) {
    flex-direction: row;
}

.content-section:nth-child(even) {
    flex-direction: row-reverse;
}

.content-image {
    flex: 1;
    min-width: 300px;
    min-height: 400px;
    object-fit: contain;
    background-color: rgba(0,0,0,0.2);
    padding: 20px;
}

.content-text {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-title {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--pengu-orange);
    text-transform: uppercase;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.5);
    line-height: 1.2;
}

.content-desc {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.5);
    text-align: justify;
}

.content-desc:last-child {
    margin-bottom: 0;
}

.floating-separator {
    height: 200px;
    background-color: rgba(0,0,0,0.2);
    border-radius: 15px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-pengu {
    position: absolute;
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255,107,87,0.6));
}

.floating-pengu-1 {
    animation: float-left-right-1 6s infinite linear;
    top: 20%;
}

.floating-pengu-2 {
    animation: float-left-right-2 8s infinite linear;
    top: 40%;
    animation-delay: -2s;
}

.floating-pengu-3 {
    animation: float-left-right-3 10s infinite linear;
    top: 60%;
    animation-delay: -4s;
}

.floating-pengu-4 {
    animation: float-left-right-1 7s infinite linear;
    top: 30%;
    animation-delay: -1s;
}

.floating-pengu-5 {
    animation: float-left-right-2 9s infinite linear;
    top: 70%;
    animation-delay: -3s;
}

.floating-pengu-6 {
    animation: float-left-right-3 11s infinite linear;
    top: 50%;
    animation-delay: -5s;
}

@keyframes float-left-right-1 {
    0% {
        transform: translateX(-100vw) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100vw) rotate(360deg);
        opacity: 0;
    }
}

@keyframes float-left-right-2 {
    0% {
        transform: translateX(-100vw) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100vw) rotate(-360deg) scale(1.2);
        opacity: 0;
    }
}

@keyframes float-left-right-3 {
    0% {
        transform: translateX(-100vw) rotate(0deg) scale(1.1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100vw) rotate(720deg) scale(0.9);
        opacity: 0;
    }
}

.meme-button {
    display: inline-block;
    background-color: var(--pengu-orange);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    margin: 20px 15px;
    box-shadow: 0 5px 0 var(--dark-orange);
    transition: all 0.2s;
    animation: bounce 2s infinite;
    position: relative;
    overflow: hidden;
}

.meme-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right, 
        rgba(255,255,255,0.3), 
        rgba(255,255,255,0), 
        rgba(255,255,255,0.3)
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
    pointer-events: none;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    20%, 100% { transform: translateX(100%) rotate(45deg); }
}

.meme-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 0 var(--dark-orange);
    animation-play-state: paused;
}

.meme-button:active {
    transform: translateY(3px) scale(1);
    box-shadow: 0 2px 0 var(--dark-orange);
}

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

#troll-cursor {
    position: fixed;
    width: 50px;
    height: 50px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
}

#troll-cursor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

footer {
    background-color: rgba(0,0,0,0.5);
    border-top: 3px solid var(--pengu-orange);
    margin-top: 50px;
    padding: 30px 0;
}

.footer-content {
    width: 100%;
    padding: 0 20px;
    text-align: center;
}

.social-links {
    margin-bottom: 20px;
}

.twitter-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1da1f2;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 0 #0d8bd9;
}

.twitter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #0d8bd9;
    background-color: #0d8bd9;
}

.twitter-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #0d8bd9;
}

.footer-text {
    color: var(--text);
    font-size: 1rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .content-section {
        flex-direction: column !important;
        margin: 40px 0;
    }
    
    .content-image {
        width: 100%;
        min-height: 250px;
    }
    
    .content-text {
        padding: 25px;
    }
    
    .content-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .content-desc {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .entrance-image {
        height: 50vh;
    }
    
    .floating-separator {
        height: 150px;
        margin: 30px 0;
    }
    
    .floating-pengu {
        width: 70px;
        height: 70px;
    }
    
    .twitter-button {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .meme-button {
        font-size: 1.3rem;
        padding: 15px 25px;
        margin: 15px 10px;
    }
} 