   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
		/*	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
            min-height: 100vh;
            padding: 20px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        header {
            background: rgba(255, 255, 255, 0.95);
            text-align: center;
            margin-bottom: 40px;
            padding: 40px 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        h1 {
            color: #667eea;
            font-size: clamp(2em, 5vw, 3em);
            margin-bottom: 15px;
        }
        
        .subtitle {
            color: #666;
            font-size: clamp(1em, 2.5vw, 1.3em);
            font-weight: 300;
        }
        
        .widgets-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .widget-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        
        .widget-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }
        
        .widget-icon {
            font-size: 3em;
            margin-bottom: 15px;
            display: block;
        }
        
        .widget-name {
            color: #764ba2;
            font-size: 1.4em;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .widget-description {
            color: #666;
            font-size: 0.95em;
            line-height: 1.5;
        }
        
        .widget-link {
            display: inline-block;
            margin-top: 15px;
            color: #667eea;
            font-weight: 600;
            font-size: 0.9em;
        }
        
        footer {
            background: rgba(255, 255, 255, 0.95);
            padding: 30px;
            text-align: center;
            border-radius: 15px;
            margin-top: 40px;
        }
        
        footer p {
            color: #666;
            margin-bottom: 10px;
            font-size: clamp(0.85em, 2vw, 1em);
        }
        
        footer a {
            color: #667eea;
            text-decoration: none;
        }
        
        footer a:hover {
            text-decoration: underline;
        }
        
        .info-box {
            background: rgba(255, 255, 255, 0.95);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .info-box h2 {
            color: #764ba2;
            margin-bottom: 15px;
            font-size: clamp(1.3em, 3vw, 1.8em);
        }
        
        .info-box p {
            color: #555;
            line-height: 1.8;
            font-size: clamp(0.95em, 2.5vw, 1.1em);
        }
        
        @media (max-width: 768px) {
            .widgets-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            header {
                padding: 30px 15px;
            }
        }