
        /* Basic styling for the testimonial */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-color: #f8f9fa;
            padding: 20px;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            padding: 35px;
            max-width: 350px;
            width: 100%;
            text-align: center;
            border-top: 5px solid #4a6bff;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
        }
        
        .quote-icon {
            color: #4a6bff;
            font-size: 32px;
            margin-bottom: 15px;
        }
        
        .testimonial-text {
            font-size: 22px;
            font-weight: 600;
            color: #333;
            line-height: 1.4;
            margin-bottom: 20px;
        }
        
        .rating-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        
        .rating-badge {
            background: linear-gradient(135deg, #4a6bff, #6a8cff);
            color: white;
            font-weight: 700;
            font-size: 20px;
            padding: 10px 20px;
            border-radius: 50px;
            display: inline-block;
            margin-right: 15px;
        }
        
        .stars {
            color: #ffc107;
            font-size: 22px;
            letter-spacing: 3px;
        }
        
        .source {
            color: #666;
            font-size: 16px;
            font-style: italic;
        }
        
        .source a {
            color: #4a6bff;
            text-decoration: none;
            font-weight: 600;
        }
        
        .source a:hover {
            text-decoration: underline;
        }
        
        .divider {
            height: 1px;
            background: #eee;
            margin: 20px 0;
        }
        
        .casino-tag {
            display: inline-block;
            background-color: #f0f5ff;
            color: #4a6bff;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-top: 10px;
        }
		.casino-tag a {
  text-decoration: none;
}
        
        /* Responsive adjustments */
        @media (max-width: 600px) {
            .testimonial-card {
                padding: 25px;
            }
            
            .testimonial-text {
                font-size: 20px;
            }
            
            .rating-badge {
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .rating-container {
                flex-direction: column;
            }
        }
