/* Add Google Fonts import for better cross-platform support */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One:wght@400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Fredoka One', 'Comic Sans MS', cursive, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: 'Fredoka One', 'Comic Sans MS', cursive, -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(45deg, #0052FF, #1E3A8A, #3B82F6, #60A5FA);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: white;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 82, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(96, 165, 250, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: -2;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
}

.chair-icon {
    font-size: 3rem;
    animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.logo h1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.3);
}

/* Hero Section */
.hero {
    padding: 40px 0;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    text-shadow: 5px 5px 0px rgba(0,0,0,0.3);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.meme-text {
    font-size: 2rem;
    margin: 30px 0;
    font-weight: bold;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.big-chair {
    font-size: 15rem;
    margin: 40px 0;
    animation: spin 10s linear infinite;
    text-shadow: 10px 10px 0px rgba(0,0,0,0.2);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.btn {
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-family: 'Fredoka One', 'Comic Sans MS', cursive, -apple-system, BlinkMacSystemFont, sans-serif;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-buy {
    background: linear-gradient(45deg, #0052FF, #1E3A8A);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 82, 255, 0.3);
}

.btn-chart {
    background: linear-gradient(45deg, #3B82F6, #60A5FA);
    color: white;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.btn:hover {
    transform: translateY(-5px) scale(1.1);
    animation: none;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    text-align: center;
}

.stats h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.3);
}

/* Meme Section */
.memes {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.1);
}

.memes h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 40px;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.3);
}

.meme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.meme-card {
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.meme-card:hover {
    transform: rotate(-2deg) scale(1.05);
}

.meme-emoji {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: wiggle 3s ease-in-out infinite;
}

.meme-text-small {
    font-size: 1.3rem;
    font-weight: bold;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.3);
}

/* Community Section */
.community {
    padding: 60px 0;
    text-align: center;
}

.community h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.3);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.social-link {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 2rem;
    transition: all 0.3s;
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: bounce 2s infinite;
}

.social-link:nth-child(2) { animation-delay: -0.5s; }
.social-link:nth-child(3) { animation-delay: -1s; }
.social-link:nth-child(4) { animation-delay: -1.5s; }

.social-link:hover {
    transform: scale(1.3) rotate(360deg);
    background: rgba(255, 255, 255, 0.4);
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.footer-meme {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .big-chair {
        font-size: 8rem;
    }
    
    .meme-text {
        font-size: 1.5rem;
    }

    .btn {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-chair {
    position: absolute;
    font-size: 2rem;
    animation: floatAround 15s linear infinite;
    opacity: 0.3;
}

@keyframes floatAround {
    0% { transform: translateX(-100px) translateY(100vh) rotate(0deg); }
    100% { transform: translateX(100vw) translateY(-100px) rotate(360deg); }
}

.floating-chair:nth-child(1) { left: 10%; animation-delay: 0s; }
.floating-chair:nth-child(2) { left: 30%; animation-delay: -5s; }
.floating-chair:nth-child(3) { left: 50%; animation-delay: -10s; }
.floating-chair:nth-child(4) { left: 70%; animation-delay: -15s; }
.floating-chair:nth-child(5) { left: 90%; animation-delay: -20s; }