
body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    margin: 0;
    padding: 0;
    color: white;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-x: hidden;
    position: relative;
}

.sky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    background: linear-gradient(180deg, #9b59b6, #8e44ad, #663399, #4a148c);
    background-size: 400% 400%;
    animation: skyShift 15s ease infinite;
    z-index: -3;
}

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

.clouds {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    z-index: -2;
    overflow: hidden;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    opacity: 0.7;
}

.cloud:before,
.cloud:after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
}

.cloud1 {
    width: 80px;
    height: 40px;
    top: 20%;
    left: 10%;
    animation: cloudFloat1 20s linear infinite;
}

.cloud1:before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 10px;
}

.cloud1:after {
    width: 60px;
    height: 40px;
    top: -15px;
    right: 10px;
}

.cloud2 {
    width: 60px;
    height: 30px;
    top: 15%;
    right: 20%;
    animation: cloudFloat2 25s linear infinite;
}

.cloud2:before {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 5px;
}

.cloud2:after {
    width: 50px;
    height: 30px;
    top: -10px;
    right: 5px;
}

.cloud3 {
    width: 100px;
    height: 50px;
    top: 30%;
    left: 60%;
    animation: cloudFloat3 30s linear infinite;
}

.cloud3:before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 15px;
}

.cloud3:after {
    width: 70px;
    height: 50px;
    top: -20px;
    right: 15px;
}

@keyframes cloudFloat1 {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(calc(100vw + 100px)); }
}

@keyframes cloudFloat2 {
    0% { transform: translateX(calc(100vw + 100px)); }
    100% { transform: translateX(-100px); }
}

@keyframes cloudFloat3 {
    0% { transform: translateX(-150px); }
    100% { transform: translateX(calc(100vw + 150px)); }
}

.ocean {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    background: linear-gradient(180deg, #3498db 0%, #2980b9 50%, #1e3a8a 100%);
    z-index: -3;
}

.beach {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15vh;
    background: linear-gradient(180deg, #8e44ad 0%, #663399 50%, #4a148c 100%);
    z-index: -2;
    box-shadow: inset 0 5px 15px rgba(0,0,0,0.3);
}

.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 1;
    margin-top: 10vh;
}

h1 {
    font-size: 4em;
    margin: 20px 0;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    animation: bounce 2s ease-in-out infinite alternate;
    color: #fff;
    background: rgba(0,0,0,0.4);
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(255,255,255,0.3);
    position: relative;
}

h1:after {
    content: '';
    position: absolute;
    top: 5px;
    right: 10px;
    width: 15px;
    height: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    box-shadow: -20px 10px 0 rgba(255,255,255,0.1), -40px -5px 0 rgba(255,255,255,0.1);
}

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

.subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    background: rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.porple-graphic {
    width: 300px;
    height: 200px;
    margin: 30px 0;
    position: relative;
}

.rock {
    width: 200px;
    height: 120px;
    background: linear-gradient(45deg, #6a4c93, #9b59b6, #8e44ad);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: absolute;
    left: 50px;
    top: 120px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    animation: rockFloat 3s ease-in-out infinite alternate;
}

.rock:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 20px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    top: 30%;
    border-radius: 50%;
    animation: shimmer 4s ease-in-out infinite;
}

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

@keyframes rockFloat {
    0% { transform: translateY(0px) rotate(-1deg); }
    100% { transform: translateY(-8px) rotate(1deg); }
}

.seagull {
    position: absolute;
    top: 90px;
    left: 120px;
    font-size: 2em;
    animation: seagullBob 2s ease-in-out infinite;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
}

@keyframes seagullBob {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

.main-sign {
    background: linear-gradient(145deg, #8B4513, #A0522D);
    border: 4px solid #654321;
    padding: 25px;
    margin: 30px 0;
    font-size: 1.2em;
    min-height: 80px;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
    transform: rotate(-1deg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.3s ease;
}

.main-sign:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 100px;
    background: linear-gradient(145deg, #654321, #8B4513);
    border-radius: 0 0 10px 10px;
    box-shadow: 2px 0 6px rgba(0,0,0,0.4);
    z-index: -1;
}

.main-sign:after {
    content: '';
    position: absolute;
    top: -5px;
    right: 10px;
    width: 8px;
    height: 8px;
    background: #444;
    border-radius: 50%;
    box-shadow: -15px 5px 0 #444, -30px -2px 0 #444;
}

.main-sign.show {
    opacity: 1;
}

.main-sign:hover {
    transform: rotate(-1deg) scale(1.05);
}

.main-sign:active {
    transform: rotate(-1deg) scale(0.98);
}

.shell-counter {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(139, 69, 19, 0.9);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1.2em;
    border: 3px solid #654321;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 100;
    transform: rotate(2deg);
}

.donation-system {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(139, 69, 19, 0.9);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    border: 3px solid #654321;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 100;
    transform: rotate(-2deg);
    text-align: center;
}

.donation-counter {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.donate-button {
    background: linear-gradient(145deg, #2ecc71, #27ae60);
    border: 2px solid #1e8449;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    font-family: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

.donate-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.donate-button:active {
    transform: scale(0.95);
}

.donate-button:disabled {
    background: linear-gradient(145deg, #7f8c8d, #95a5a6);
    border-color: #5d6d7e;
    cursor: not-allowed;
    transform: none;
}

.direction-signs {
    position: fixed;
    bottom: 8vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    box-sizing: border-box;
}

.direction-sign {
    background: linear-gradient(145deg, #8B4513, #A0522D);
    border: 3px solid #654321;
    padding: 12px 16px;
    color: white;
    text-decoration: none;
    font-size: 0.9em;
    position: relative;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    max-width: 180px;
    min-width: 140px;
    text-align: center;
    word-wrap: break-word;
    line-height: 1.2;
}

.direction-sign.left {
    transform: rotate(-3deg);
}

.direction-sign.right {
    transform: rotate(2deg);
}

.direction-sign:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 80px;
    background: linear-gradient(145deg, #654321, #8B4513);
    border-radius: 0 0 8px 8px;
    box-shadow: 2px 0 4px rgba(0,0,0,0.3);
    z-index: -1;
}

.direction-sign:hover {
    transform: rotate(-3deg) scale(1.1);
}

.direction-sign.right:hover {
    transform: rotate(2deg) scale(1.1);
}

.direction-sign:after {
    position: absolute;
    font-size: 1.5em;
    top: 50%;
    transform: translateY(-50%);
}

.direction-sign.left:after {
    content: '←';
    left: -10px;
}

.direction-sign.right:after {
    content: '→';
    right: -10px;
}

footer {
    margin-top: 40px;
    font-size: 0.9em;
    font-style: italic;
    opacity: 0.9;
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    z-index: 1;
    margin-bottom: 20px;
}

.waves {
    position: fixed;
    bottom: 15vh;
    left: 0;
    width: 100%;
    height: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,0,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z" fill="%23ffffff" fill-opacity="0.4"/></svg>') repeat-x;
    animation: wave 10s linear infinite;
    z-index: -1;
}

.waves2 {
    position: fixed;
    bottom: 12vh;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23ffffff" fill-opacity="0.25"/></svg>') repeat-x;
    animation: wave 15s linear infinite reverse;
    z-index: -1;
}

.waves3 {
    position: fixed;
    bottom: 10vh;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23ffffff" fill-opacity="0.15"/></svg>') repeat-x;
    animation: wave 20s linear infinite;
    z-index: -1;
}

@keyframes wave {
    0% { background-position-x: 0; }
    100% { background-position-x: 1200px; }
}

.seashell {
    position: fixed;
    bottom: 5vh;
    font-size: 1.5em;
    opacity: 0.6;
    animation: shellBob 4s ease-in-out infinite;
    z-index: 0;
}

.seashell:nth-child(1) { left: 10%; animation-delay: 0s; }
.seashell:nth-child(2) { left: 25%; animation-delay: 1s; }
.seashell:nth-child(3) { left: 40%; animation-delay: 2s; }
.seashell:nth-child(4) { left: 60%; animation-delay: 0.5s; }
.seashell:nth-child(5) { left: 80%; animation-delay: 1.5s; }

@keyframes shellBob {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(5deg); }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }
    
    .subtitle {
        font-size: 1.2em;
    }
    
    .porple-graphic {
        width: 250px;
        height: 150px;
    }
    
    .rock {
        width: 150px;
        height: 90px;
        left: 50px;
        top: 100px;
    }
    
    .seagull {
        top: 70px;
        left: 100px;
        font-size: 1.5em;
    }
    
    .main-sign {
        padding: 15px 20px;
        font-size: 1.1em;
        max-width: 400px;
    }
    
    .direction-signs {
        padding: 0 10px;
    }
    
    .direction-sign {
        font-size: 0.8em;
        padding: 10px 12px;
        max-width: 140px;
        min-width: 120px;
    }
    
    .shell-counter, .donation-system {
        font-size: 1em;
        padding: 12px 16px;
    }
}
