<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            background: linear-gradient(135deg, #0a1931 0%, #1a1a2e 100%);
            color: #e6e6e6;
            line-height: 1.6;
            min-height: 100vh;
            padding-bottom: 50px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Language Switcher */
        .language-switcher {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
            display: flex;
            gap: 10px;
            background: rgba(40, 40, 60, 0.9);
            border-radius: 25px;
            padding: 8px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(120, 224, 143, 0.3);
        }

        .lang-btn {
            background: transparent;
            border: none;
            color: #e6e6e6;
            padding: 8px 16px;
            border-radius: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .lang-btn:hover {
            background: rgba(120, 224, 143, 0.1);
        }

        .lang-btn.active {
            background: #78e08f;
            color: #0a1931;
            font-weight: bold;
        }

        .fi {
            border-radius: 2px;
        }

        /* Header Styles */
        header {
            text-align: center;
            padding: 80px 0 40px;
            position: relative;
        }

        .title {
            font-size: 3.5rem;
            color: #f8c291;
            text-shadow: 0 0 10px rgba(248, 194, 145, 0.3);
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .river-animation {
            height: 4px;
            width: 200px;
            background: linear-gradient(90deg, transparent, #4a69bd, transparent);
            margin: 25px auto;
            border-radius: 2px;
            animation: riverFlow 3s infinite ease-in-out;
        }

        @keyframes riverFlow {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        /* Content Styles */
        .content-wrapper {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

        .story-section {
            background: rgba(30, 30, 46, 0.7);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(74, 105, 189, 0.2);
        }

        .story-section p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
        }

        .story-section p:last-child {
            margin-bottom: 0;
        }

        .rules-section {
            background: rgba(30, 30, 46, 0.7);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(248, 194, 145, 0.2);
        }

        .rules-title {
            color: #f8c291;
            font-size: 2rem;
            margin-bottom: 30px;
            text-align: center;
        }

        .rules-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .rule-card {
            background: rgba(40, 40, 60, 0.8);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: transform 0.3s ease;
            border-left: 4px solid #4a69bd;
        }

        .rule-card:hover {
            transform: translateY(-5px);
        }

        .rule-icon {
            font-size: 2rem;
            color: #f8c291;
            margin-bottom: 15px;
        }

        .rule-text {
            font-size: 1rem;
        }

        /* Interactive Section */
        .interactive-section {
            background: rgba(30, 30, 46, 0.7);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(120, 224, 143, 0.2);
            text-align: center;
        }

        .interactive-title {
            color: #78e08f;
            font-size: 2.2rem;
            margin-bottom: 15px;
        }

        .interactive-subtitle {
            color: #b8b8b8;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 40px;
        }

        .gratitude-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .gratitude-btn {
            background: rgba(40, 40, 60, 0.9);
            border: 2px solid rgba(120, 224, 143, 0.3);
            border-radius: 10px;
            padding: 18px 15px;
            color: #e6e6e6;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }

        .gratitude-btn:hover {
            background: rgba(120, 224, 143, 0.1);
            border-color: #78e08f;
            transform: scale(1.03);
        }

        .gratitude-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .gratitude-btn:disabled:hover {
            background: rgba(40, 40, 60, 0.9);
            border-color: rgba(120, 224, 143, 0.3);
        }

        .btn-content {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .btn-icon {
            font-size: 1.3rem;
        }

        .btn-counter {
            background: rgba(120, 224, 143, 0.2);
            border-radius: 15px;
            padding: 4px 10px;
            font-size: 0.9rem;
            color: #78e08f;
            font-weight: bold;
            min-width: 40px;
            text-align: center;
        }

        /* Total Counter */
        .total-counter {
            background: rgba(40, 40, 60, 0.9);
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
            text-align: center;
            border: 1px solid rgba(248, 194, 145, 0.3);
        }

        .total-counter-title {
            color: #f8c291;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .total-counter-number {
            font-size: 2.5rem;
            color: #78e08f;
            font-weight: bold;
            font-family: 'Courier New', monospace;
        }

        .total-counter-text {
            color: #b8b8b8;
            font-size: 0.9rem;
            margin-top: 10px;
            font-style: italic;
        }

        /* Timer Styles */
        .timer-container {
            background: rgba(40, 40, 60, 0.9);
            border-radius: 10px;
            padding: 25px;
            margin-top: 30px;
            display: none;
        }

        .timer-title {
            color: #f8c291;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .timer-message {
            margin-top: 15px;
            color: #b8b8b8;
            font-style: italic;
        }

        /* Global Statistics Section */
        .global-stats {
            background: rgba(30, 30, 46, 0.7);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(74, 105, 189, 0.2);
            margin-top: 30px;
        }

        .stats-title {
            color: #4a69bd;
            font-size: 2rem;
            margin-bottom: 30px;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .stat-card {
            background: rgba(40, 40, 60, 0.8);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            border-top: 4px solid #4a69bd;
        }

        .stat-value {
            font-size: 2.5rem;
            color: #78e08f;
            font-weight: bold;
            margin: 10px 0;
        }

        .stat-label {
            color: #b8b8b8;
            font-size: 0.9rem;
        }

        .stats-chart {
            background: rgba(40, 40, 60, 0.8);
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
        }

        .chart-title {
            color: #f8c291;
            margin-bottom: 15px;
            text-align: center;
        }

        .chart-bar {
            height: 30px;
            background: rgba(120, 224, 143, 0.1);
            border-radius: 15px;
            margin-bottom: 10px;
            overflow: hidden;
            position: relative;
        }

        .chart-fill {
            height: 100%;
            background: linear-gradient(90deg, #78e08f, #4a69bd);
            border-radius: 15px;
            min-width: 20px;
            transition: width 1s ease;
        }

        .chart-label {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #fff;
            font-weight: bold;
            z-index: 1;
        }

        .chart-value {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #fff;
            font-weight: bold;
            z-index: 1;
        }

        /* Live Counter */
        .live-counter {
            background: rgba(120, 224, 143, 0.1);
            border: 1px solid #78e08f;
            border-radius: 10px;
            padding: 15px;
            margin-top: 20px;
            text-align: center;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(120, 224, 143, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(120, 224, 143, 0); }
            100% { box-shadow: 0 0 0 0 rgba(120, 224, 143, 0); }
        }

        .live-label {
            color: #78e08f;
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .live-number {
            font-size: 2rem;
            color: #f8c291;
            font-weight: bold;
        }

        /* Connection Status */
        .connection-status {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: rgba(40, 40, 60, 0.9);
            border-radius: 20px;
            padding: 8px 15px;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 8px;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }

        .status-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ccc;
        }

        .status-dot.connected {
            background: #78e08f;
            animation: blink 2s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 25, 49, 0.95);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: rgba(30, 30, 46, 0.95);
            border-radius: 15px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 2px solid #78e08f;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
            animation: slideUp 0.5s ease;
        }

        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .modal-icon {
            font-size: 4rem;
            color: #78e08f;
            margin-bottom: 20px;
            animation: pulse 2s infinite;
        }

        .modal-title {
            color: #f8c291;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .modal-text {
            font-size: 1.2rem;
            margin-bottom: 25px;
            line-height: 1.5;
        }

        .modal-btn {
            background: #78e08f;
            color: #0a1931;
            border: none;
            border-radius: 8px;
            padding: 12px 30px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-btn:hover {
            background: #5dc277;
            transform: scale(1.05);
        }

        /* Footer */
        footer {
            text-align: center;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(74, 105, 189, 0.3);
            color: #888;
            font-size: 0.9rem;
        }

        .disclaimer {
            max-width: 800px;
            margin: 0 auto 20px;
            font-style: italic;
        }

        /* Language content */
        .lang-content {
            display: none;
        }

        .lang-content.active {
            display: block;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .title {
                font-size: 2.5rem;
            }
            
            .rules-grid {
                grid-template-columns: 1fr;
            }
            
            .gratitude-container {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .story-section, .rules-section, .interactive-section, .global-stats {
                padding: 25px;
            }
            
            .language-switcher {
                top: 10px;
                right: 10px;
            }
            
            header {
                padding-top: 100px;
            }
        }

        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
