/* The Laziest CSS Ever Written */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><text y="20" font-size="20">🖐️</text></svg>'), auto;
}

body {
    font-family: 'Comic Neue', cursive;
    background-color: white;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Loading Spinner - Broken on Purpose */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeOut 3s ease-in-out forwards;
}

.spinner-text {
    font-family: 'Patrick Hand', cursive;
    font-size: 2rem;
    color: #666;
    animation: lazySpin 4s linear infinite;
    transform-origin: center;
}

@keyframes lazySpin {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(90deg); }
    50% { transform: rotate(180deg); }
    75% { transform: rotate(270deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeOut {
    0% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    animation: lazyAppear 2s ease-out;
}

@keyframes lazyAppear {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.hero {
    text-align: center;
    margin: 50px 0;
    position: relative;
}

.hero-title {
    font-family: 'Schoolbell', cursive;
    font-size: 4rem;
    color: #333;
    margin-bottom: 10px;
    transform: rotate(-2deg);
    animation: lazyFloat 3s ease-in-out infinite;
}

.hero-subtitle {
    font-family: 'Patrick Hand', cursive;
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 30px;
    transform: rotate(1deg);
}

@keyframes lazyFloat {
    0%, 100% { transform: rotate(-2deg) translateY(0); }
    50% { transform: rotate(-2deg) translateY(-10px); }
}

/* Coin Container */
.coin-container {
    margin: 40px 0;
    position: relative;
}

.coin {
    animation: lazyFall 4s ease-in-out infinite;
    display: inline-block;
    transform: rotate(15deg);
}

.coin img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

@keyframes lazyFall {
    0% { transform: rotate(15deg) translateY(-20px); }
    50% { transform: rotate(15deg) translateY(10px); }
    100% { transform: rotate(15deg) translateY(-20px); }
}

/* Description */
.description {
    text-align: center;
    margin: 40px 0;
    font-family: 'Comic Neue', cursive;
    font-size: 1.2rem;
    color: #555;
    transform: rotate(0.5deg);
}

/* Button Container */
.button-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

/* Lazy Buttons */
.lazy-button {
    font-family: 'Patrick Hand', cursive;
    font-size: 1.3rem;
    padding: 15px 30px;
    border: 3px solid #333;
    background: linear-gradient(45deg, #ffeb3b, #ffc107);
    border-radius: 20px;
    cursor: pointer;
    transition: all 2s ease-in-out;
    transform: rotate(-1deg);
    box-shadow: 5px 5px 0px #333;
    position: relative;
    overflow: hidden;
}

.lazy-button:hover {
    transform: rotate(1deg) scale(1.05);
    box-shadow: 8px 8px 0px #333;
    background: linear-gradient(45deg, #ffc107, #ffeb3b);
}

.lazy-button:active {
    transform: rotate(0deg) scale(0.95);
    box-shadow: 2px 2px 0px #333;
    transition: all 0.1s ease-in-out;
}

.buy-button {
    background: linear-gradient(45deg, #4caf50, #8bc34a);
}

.buy-button:hover {
    background: linear-gradient(45deg, #8bc34a, #4caf50);
}

.join-button {
    background: linear-gradient(45deg, #2196f3, #03a9f4);
}

.join-button:hover {
    background: linear-gradient(45deg, #03a9f4, #2196f3);
}

/* Shill Section */
.shill-section {
    margin: 60px 0;
    text-align: center;
    position: relative;
}

.chat-popup {
    background: #f0f0f0;
    border: 2px solid #333;
    border-radius: 15px;
    padding: 15px;
    margin: 20px auto;
    max-width: 300px;
    font-family: 'Comic Neue', cursive;
    font-size: 0.9rem;
    transform: rotate(-1deg);
    animation: lazyBounce 5s ease-in-out infinite;
    box-shadow: 3px 3px 0px #333;
}

@keyframes lazyBounce {
    0%, 100% { transform: rotate(-1deg) translateY(0); }
    50% { transform: rotate(-1deg) translateY(-5px); }
}

.shill-counter {
    font-family: 'Patrick Hand', cursive;
    font-size: 1.1rem;
    color: #666;
    margin-top: 20px;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 80px;
    padding: 20px;
    font-family: 'Comic Neue', cursive;
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid #ddd;
    transform: rotate(0.5deg);
}

/* Easter Egg */
.easter-egg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.easter-egg-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    font-family: 'Schoolbell', cursive;
    border: 3px solid #333;
    box-shadow: 10px 10px 0px #333;
    transform: rotate(-2deg);
}

.easter-egg-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.easter-egg-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #666;
}

.easter-egg-close {
    font-family: 'Patrick Hand', cursive;
    font-size: 1rem;
    padding: 10px 20px;
    border: 2px solid #333;
    background: #f0f0f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 1s ease-in-out;
}

.easter-egg-close:hover {
    background: #ddd;
    transform: rotate(1deg);
}

/* Responsive Design - But Lazy */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .coin img {
        width: 80px;
        height: 80px;
    }
    
    .button-container {
        flex-direction: column;
        align-items: center;
    }
    
    .lazy-button {
        font-size: 1.1rem;
        padding: 12px 25px;
    }
}

/* Some overlapping elements for that "lazy dev" feel */
.hero::after {
    content: "💤";
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 2rem;
    animation: lazySnore 3s ease-in-out infinite;
}

@keyframes lazySnore {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Random floating elements */
.container::before {
    content: "zzz";
    position: absolute;
    top: 100px;
    left: 50px;
    font-family: 'Patrick Hand', cursive;
    font-size: 1.5rem;
    color: #ccc;
    transform: rotate(-15deg);
    animation: lazyFloat 4s ease-in-out infinite;
}

.container::after {
    content: "😴";
    position: absolute;
    bottom: 100px;
    right: 50px;
    font-size: 2rem;
    animation: lazyFloat 5s ease-in-out infinite reverse;
} 