

        .title h1 {
            font-size: 48px;
            color: black;
            font-weight: bold;
            margin-bottom: 30px;
            text-align: center;
            display: block;
            width: 100%;
            line-height: 1.2;
            background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .container-read {
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            backdrop-filter: blur(10px);
            line-height: 2.2;
            font-size: 0;
            max-width: 1200px;
            padding: 30px;
        }

        .container-read span {
            font-size: 20px;
            transition: all 0.3s ease;
        }

        .container-read .title {
            font-size: 24px;
            color: black;
            font-weight: bold;
            display: block;
            margin-bottom: 20px;
            text-align: center;
        }

        .clickable-word {
            position: relative;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.3s ease;
            font-weight: 500;
            color: #2c3e50;
             border: none;
              background: none;
             font-size: 20px;

        }

        .clickable-word:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            z-index: 10;
            background-color: yellow;
        }

        .clickable-word::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 120%;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            font-size: 14px;
            padding: 8px 12px;
            border-radius: 8px;
            white-space: nowrap;
            opacity: 0;
            transition: all 0.3s ease;
            pointer-events: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            z-index: 100;
        }

        .clickable-word::before {
            content: '';
            position: absolute;
            bottom: 110%;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 6px solid #2c3e50;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 100;
        }

        .clickable-word:hover::after,
        .clickable-word:hover::before {
            opacity: 1;
        }

        .instructions {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            max-width: 1200px;
        }

        .instructions h3,
        .instructions p {
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .instructions button {
            background-color: rgba(255, 255, 255, 0.9);
            color: #333;
            border: none;
            padding: 8px 16px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .instructions button:hover {
            background-color: white;
            transform: scale(1.05);
        }

        .festival-decoration {
            text-align: center;
            margin: 20px 0;
            animation: float 3s ease-in-out infinite;
        }

        .festival-decoration img {
            width: 60%;
            height: 500px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            object-fit: cover;
            max-width: 800px;
        }

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

        .reading-progress {
            width: 100%;
            max-width: 1200px;
            height: 6px;
            background: rgba(255,255,255,0.3);
            border-radius: 3px;
            margin: 20px auto;
            overflow: hidden;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
            width: 0%;
            border-radius: 3px;
            transition: width 0.5s ease;
        }

        .celebration {
            text-align: center;
            margin-top: 30px;
            color: white;
        }

        .celebration p {
            font-size: 1.2em;
        }

        @media (max-width: 768px) {
            .title h1 {
                font-size: 32px;
            }

            .container-read {
                padding: 20px;
            }

            .festival-decoration img {
                width: 90%;
                height: 300px;
            }

            .container-read span {
                font-size: 18px;
            }
        }
