:root {
            --primary-color: #FF3E30;
            --secondary-color: #FFD700;
            --accent-color: #4CAF50;
            --dark-color: #212121;
            --light-color: #F5F5F5;
            --comic-yellow: #FFF9C4;
            --comic-blue: #BBDEFB;
            --comic-pink: #F8BBD0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Comic Neue', cursive;
            background-color: var(--light-color);
            color: var(--dark-color);
            overflow-x: hidden;
            position: relative;
        }

        /* Comic book style background pattern */
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 8%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 8%),
                radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 8%);
            background-size: 20px 20px;
            z-index: -1;
        }

        header {
            background-color: var(--primary-color);
            padding: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        header::before {
            content: "BOOM!";
            position: absolute;
            top: 50%;
            left: -20px;
            transform: translateY(-50%) rotate(-15deg);
            font-family: 'Bangers', cursive;
            font-size: 3rem;
            color: rgba(255, 255, 255, 0.2);
            letter-spacing: 2px;
        }

        header::after {
            content: "WOW!";
            position: absolute;
            top: 50%;
            right: -20px;
            transform: translateY(-50%) rotate(15deg);
            font-family: 'Bangers', cursive;
            font-size: 3rem;
            color: rgba(255, 255, 255, 0.2);
            letter-spacing: 2px;
        }

        h1 {
            font-family: 'Bangers', cursive;
            font-size: 3.5rem;
            color: white;
            text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
            letter-spacing: 2px;
            position: relative;
            z-index: 1;
        }

        .tagline {
            font-family: 'Comic Neue', cursive;
            font-size: 1.2rem;
            color: var(--comic-yellow);
            margin-top: 10px;
            font-weight: bold;
        }

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

        /* Stone Types Section */
        .stone-types {
            margin: 30px 0;
            padding: 20px;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .stone-types::before {
            content: "";
            position: absolute;
            top: -10px;
            left: 20px;
            width: 30px;
            height: 30px;
            background-color: var(--accent-color);
            transform: rotate(45deg);
            z-index: -1;
        }

        .section-title {
            font-family: 'Bangers', cursive;
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            display: inline-block;
            padding: 5px 15px;
            background-color: var(--comic-yellow);
            border-radius: 5px;
            transform: rotate(-2deg);
            box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
        }

        .type-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }

        .type-btn {
            padding: 10px 20px;
            font-family: 'Bangers', cursive;
            font-size: 1.2rem;
            background-color: var(--comic-blue);
            color: var(--dark-color);
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .type-btn:hover {
            transform: translateY(-3px);
            box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
        }

        .type-btn:active {
            transform: translateY(0);
            box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
        }

        .type-btn.active {
            background-color: var(--secondary-color);
            transform: scale(1.05);
        }

        .type-btn::after {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(45deg);
            transition: all 0.5s;
            opacity: 0;
        }

        .type-btn:hover::after {
            animation: shine 0.5s ease-in-out;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
            50% { opacity: 1; }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
        }

        /* Stones Display Section */
        .stones-display {
            margin: 30px 0;
            padding: 20px;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            min-height: 400px;
        }

        .stones-display::before {
            content: "";
            position: absolute;
            top: -10px;
            right: 20px;
            width: 30px;
            height: 30px;
            background-color: var(--primary-color);
            transform: rotate(45deg);
            z-index: -1;
        }

        .stones-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .stone-card {
            background-color: var(--light-color);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        .stone-card:hover {
            transform: translateY(-5px) rotate(1deg);
            box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
        }

        .stone-image {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-bottom: 3px solid var(--secondary-color);
        }

        .stone-info {
            padding: 15px;
            position: relative;
        }

        .stone-name {
            font-family: 'Bangers', cursive;
            font-size: 1.3rem;
            color: var(--dark-color);
            margin-bottom: 5px;
        }

        .stone-properties {
            font-size: 0.9rem;
            color: #555;
        }

        .stone-badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background-color: var(--secondary-color);
            color: var(--dark-color);
            font-family: 'Bangers', cursive;
            font-size: 0.8rem;
            padding: 5px 10px;
            border-radius: 50%;
            transform: rotate(15deg);
            box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
        }

        .show-more-btn {
            display: block;
            margin: 30px auto 0;
            padding: 12px 30px;
            font-family: 'Bangers', cursive;
            font-size: 1.3rem;
            background-color: var(--accent-color);
            color: white;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .show-more-btn:hover {
            transform: scale(1.05);
            box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
        }

        .show-more-btn::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.5s, height 0.5s;
        }

        .show-more-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        /* Social Media Section */
        .social-section {
            margin: 40px 0;
            padding: 20px;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            position: relative;
        }

        .social-section::before {
            content: "SHARE!";
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            font-family: 'Bangers', cursive;
            font-size: 1.5rem;
            color: var(--primary-color);
            background-color: var(--comic-yellow);
            padding: 5px 15px;
            border-radius: 20px;
            box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--dark-color);
            color: white;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
        }

        .social-link:hover {
            transform: translateY(-5px) rotate(15deg);
        }

        .social-link.facebook:hover {
            background-color: #1877F2;
        }

        .social-link.twitter:hover {
            background-color: #1DA1F2;
        }

        .social-link.instagram:hover {
            background-color: #E1306C;
        }

        .social-link.pinterest:hover {
            background-color: #BD081C;
        }

        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
            padding: 10px 20px;
            background-color: #25D366;
            color: white;
            font-family: 'Bangers', cursive;
            font-size: 1.2rem;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
        }

        .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
        }

        /* Loading and Empty State */
        .loading {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 50px;
        }

        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 5px solid var(--comic-blue);
            border-top: 5px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .empty-state {
            text-align: center;
            padding: 50px;
            font-size: 1.2rem;
            color: #777;
        }

        .empty-state i {
            font-size: 3rem;
            color: var(--comic-blue);
            margin-bottom: 20px;
        }

        /* Speech Bubble */
        .speech-bubble {
            position: relative;
            background: var(--comic-yellow);
            border-radius: 15px;
            padding: 15px;
            margin: 20px 0;
            font-family: 'Comic Neue', cursive;
            font-weight: bold;
            box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
        }

        .speech-bubble:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 30px;
            width: 0;
            height: 0;
            border: 15px solid transparent;
            border-top-color: var(--comic-yellow);
            border-bottom: 0;
            margin-left: -15px;
            margin-bottom: -15px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }

            .stones-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }

            .type-buttons {
                gap: 10px;
            }

            .type-btn {
                font-size: 1rem;
                padding: 8px 15px;
            }
        }

        /* Toast Notification */
        .toast {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background-color: var(--dark-color);
            color: white;
            padding: 15px 25px;
            border-radius: 30px;
            font-family: 'Bangers', cursive;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .toast.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

        /* Comic Style Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: white;
            padding: 30px;
            border-radius: 20px;
            max-width: 600px;
            width: 90%;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transform: rotate(-1deg);
        }

        .modal-close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 2rem;
            cursor: pointer;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            transform: rotate(90deg);
        }

        .modal-title {
            font-family: 'Bangers', cursive;
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .modal-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 15px;
            border: 3px solid var(--secondary-color);
        }

        .modal-description {
            font-size: 1.1rem;
            line-height: 1.5;
        }