* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a0a1a 0%, #2d1b2d 100%);
    color: #ff00ff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(139, 69, 19, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(101, 67, 33, 0.3) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(101, 67, 33, 0.05) 10px,
            rgba(101, 67, 33, 0.05) 20px
        );
    pointer-events: none;
    z-index: 0;
}

.overlay-text {
    position: fixed;
    top: 20px;
    left: 90%;
    transform: translateX(-50%);
    z-index: 1000;
    pointer-events: none;
}

.warning-banner {
    background: linear-gradient(90deg, #ff0000, #ff6600, #ff0000);
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    box-shadow: 0 0 20px rgba(255,0,0,0.6), 0 0 40px rgba(255,0,0,0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

header, main, footer {
    position: relative;
    z-index: 1;
}

.main-header {
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 3px solid #ff00ff;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
}

.logo {
    font-size: 48px;
    text-shadow: 
        0 0 10px #ff00ff,
        0 0 20px #ff00ff,
        0 0 30px #ff00ff;
    margin-bottom: 10px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff; }
    to { text-shadow: 0 0 20px #ff00ff, 0 0 30px #ff00ff, 0 0 40px #ff00ff, 0 0 50px #ff00ff; }
}

.tagline {
    font-size: 18px;
    color: #ff66ff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-content {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.chat-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 968px) {
    .chat-container {
        grid-template-columns: 1fr;
    }
}

.chat-window {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #ff00ff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.3);
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff00ff;
}

.chat-header h2 {
    font-size: 28px;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #00ff00;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff00;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.video-area {
    background: #000;
    border: 3px solid #ff00ff;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.fake-video {
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 360px;
}

.frog-face-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    z-index: 10;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ff00ff;
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.6), 0 0 80px rgba(74, 124, 89, 0.4);
    animation: hop 3s ease-in-out infinite;
}

@keyframes hop {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
}

.frog-face {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: 
        hue-rotate(90deg) 
        saturate(1.3) 
        brightness(0.9) 
        contrast(1.1);
    transition: all 0.5s;
}

.frog-face-container:hover .frog-face {
    transform: scale(1.1);
    filter: 
        hue-rotate(90deg) 
        saturate(1.5) 
        brightness(1.0) 
        contrast(1.2);
}

.frog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 25%, rgba(74, 124, 89, 0.3) 0%, transparent 30%),
        radial-gradient(circle at 70% 25%, rgba(74, 124, 89, 0.3) 0%, transparent 30%),
        linear-gradient(to bottom, transparent 0%, rgba(46, 90, 61, 0.2) 100%);
    pointer-events: none;
    z-index: 11;
    animation: frogGlow 3s ease-in-out infinite;
}

@keyframes frogGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.8; }
}

.dirt-splatter {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.dirt-splatter::before,
.dirt-splatter::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #8b4513 0%, #654321 70%, transparent 100%);
    border-radius: 50%;
    opacity: 0.8;
}

.dirt-splatter::before {
    top: 60px;
    right: 80px;
    transform: rotate(25deg);
}

.dirt-splatter::after {
    bottom: 80px;
    left: 100px;
    width: 60px;
    height: 60px;
    transform: rotate(-35deg);
}

.mud-puddle {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 40%;
    background: radial-gradient(ellipse, rgba(101, 67, 33, 0.7) 0%, rgba(139, 69, 19, 0.5) 50%, transparent 100%);
    border-radius: 50%;
    animation: ripple 3s ease-in-out infinite;
}

@keyframes ripple {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.7; }
    50% { transform: translateX(-50%) scale(1.1); opacity: 0.5; }
}

.chat-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid #ff00ff;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #ff00ff 0%, #cc00cc 100%);
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff33ff 0%, #ff00ff 100%);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #ff00ff;
}

.btn-secondary:hover {
    background: rgba(255, 0, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

.dirt-meter {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(139, 69, 19, 0.2);
    border-radius: 10px;
    border: 2px solid #8b4513;
}

.meter-bar {
    flex: 1;
    height: 25px;
    background: rgba(101, 67, 33, 0.5);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, #8b4513 0%, #654321 100%);
    width: 85%;
    transition: width 0.5s;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
}

.frog-grid {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #ff00ff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.3);
}

.frog-grid h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
}

.frog-card {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #4a7c59 0%, #2d5a3d 100%);
    border: 2px solid #ff00ff;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.frog-card:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
    z-index: 5;
}

.frog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: 
        hue-rotate(90deg) 
        saturate(1.2) 
        brightness(0.85) 
        contrast(1.1);
    transition: all 0.3s;
}

.frog-card:hover .frog-card-img {
    filter: 
        hue-rotate(90deg) 
        saturate(1.4) 
        brightness(0.95) 
        contrast(1.2);
    transform: scale(1.1);
}

.frog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 25%, rgba(74, 124, 89, 0.4) 0%, transparent 35%),
        radial-gradient(circle at 70% 25%, rgba(74, 124, 89, 0.4) 0%, transparent 35%),
        linear-gradient(to bottom, transparent 0%, rgba(46, 90, 61, 0.3) 100%);
    pointer-events: none;
    z-index: 2;
}

.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #ff00ff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ff00ff;
}

.main-footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 3px solid #ff00ff;
    padding: 30px;
    text-align: center;
    margin-top: 50px;
}

.main-footer p {
    margin: 10px 0;
    font-size: 18px;
}

.disclaimer {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

/* Mud splatter animations */
@keyframes mudSplatter {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 0.6;
    }
}

.mud-active {
    animation: mudSplatter 0.5s ease-out;
}

/* Additional dirt effects */
.frog-card.active {
    border-color: #ff0000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

