 :root {
            --color-primary: #4CAF50;
            --color-secondary: #2e7d32;
            --color-dark: #0f0f0f;
            --color-dark-light: #2d2d2d;
            --color-light: #ffffff;
            --color-gray: #aaaaaa;
            
            --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
            --gradient-dark: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-light) 100%);
            --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
            
            --border-radius: 12px;
            --box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        
        .main-container{
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: var(--gradient-dark);
            color: var(--color-light);
            line-height: 1.6;
            min-height: 100vh;
            padding: 2rem;
            overflow-x: hidden;
        }
        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-dark);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            transition: opacity 0.5s ease;
        }
        
        .loader {
            border: 4px solid rgba(255, 255, 255, 0.1);
            border-top-color: var(--color-primary);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
            margin-bottom: 1rem;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Achievement Alert */
        .achievement-alert {
            position: fixed;
            top: 20px;
            right: 20px;
            background: var(--gradient-primary);
            padding: 12px 20px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            z-index: 100;
            display: none;
            animation: slideIn 0.5s ease;
        }
        
        @keyframes slideIn {
            from { transform: translateX(100%); }
            to { transform: translateX(0); }
        }
        
        /* Container */
        .container {
            max-width: 800px;
            margin: 0 auto;
            opacity: 0;
            animation: fadeIn 0.5s ease 0.5s forwards;
        }
        
        @keyframes fadeIn {
            to { opacity: 1; }
        }
        
        
        .brand-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .logo2 {
            font-size: 2.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: bold;
        }
        
        .brand-header h1 {
            font-size: 1.8rem;
            flex-grow: 1;
        }
        
        .brand-header h1 span {
            color: var(--color-primary);
            font-weight: bold;
        }
        
        .user-stats {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
        }
        
        .xp-bar {
            width: 80px;
            height: 6px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 3px;
            overflow: hidden;
        }
        
        .xp-progress {
            height: 100%;
            width: 0%;
            background: var(--gradient-primary);
            transition: var(--transition);
        }
        
        /* Hero Section */
        .hero {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .hero-title {
            font-size: 2.2rem;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }
        
        .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: bold;
        }
        
        .subtitle {
            color: var(--color-gray);
            font-size: 1rem;
        }
        
        /* Generator Card */
        .generator-card {
            background: var(--gradient-glass);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: var(--box-shadow);
            margin-bottom: 2rem;
        }
        
        .config-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .config-item {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .config-item label {
            font-size: 0.9rem;
            color: var(--color-gray);
            cursor: pointer;
        }
        
        .config-item input[type="range"] {
            width: 100%;
            cursor: pointer;
            background: transparent;
        }
        
        .config-item input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
            accent-color: var(--color-primary);
        }
        
        .password-display {
            display: flex;
            margin: 1.5rem 0;
            position: relative;
        }
        
        #password {
            flex: 1;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--border-radius);
            color: var(--color-light);
            font-size: 1.1rem;
            text-align: center;
            outline: none;
            transition: var(--transition);
        }
        
        #password:focus {
            border-color: var(--color-primary);
        }
        
        .copy-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--color-gray);
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            padding: 5px;
        }
        
        .copy-btn:hover {
            color: var(--color-primary);
        }
        
        .copy-btn .tooltip {
            position: absolute;
            top: -35px;
            right: 0;
            background: var(--color-dark-light);
            color: var(--color-light);
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.8rem;
            opacity: 0;
            transition: var(--transition);
            pointer-events: none;
        }
        
        .copy-btn:hover .tooltip {
            opacity: 1;
        }
        
        .strength-meter {
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            margin: 1.5rem 0;
            overflow: hidden;
            position: relative;
        }
        
        .strength-bar {
            height: 100%;
            width: 0;
            background: var(--gradient-primary);
            transition: width 0.5s ease, background 0.3s;
        }
        
        .strength-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 5px;
            font-size: 0.8rem;
            color: var(--color-gray);
        }
        
        .action-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        button {
            padding: 12px 20px;
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            
        }
        
        .generate-btn {
            background: var(--gradient-primary);
            color: white;
            animation: pulse 2s infinite;
        }
        
        .export-btn {
            background: rgba(255, 255, 255, 0.1);
            color: var(--color-light);
        }
        
        .export-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }
        
        /* Analysis Section */
        .analysis-section {
            background: var(--gradient-glass);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: var(--box-shadow);
            margin-bottom: 2rem;
        }
        
        .analysis-section h3 {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .analysis-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .analysis-card {
            background: rgba(0, 0, 0, 0.2);
            padding: 1rem;
            border-radius: var(--border-radius);
            text-align: center;
        }
        
        .analysis-card h4 {
            font-size: 0.9rem;
            color: var(--color-gray);
            margin-bottom: 0.5rem;
        }
        
        .analysis-card p {
            font-size: 1.2rem;
            font-weight: bold;
        }
        
        #securityChart {
            width: 100% !important;
            height: 200px !important;
            margin-top: 1rem;
        }
        
        /* Engagement Section */
        .engagement-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .tip-card {
            background: var(--gradient-primary);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            color: white;
        }
        
        .tip-card h3 {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .tip-btn {
            background: rgba(0, 0, 0, 0.2);
            color: white;
            border: none;
            margin-top: 1rem;
            padding: 8px 15px;
            font-size: 0.9rem;
        }
        
        .tip-btn:hover {
            background: rgba(0, 0, 0, 0.3);
        }
        
        .stats-card {
            background: var(--gradient-glass);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .stat-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
        }
        
        .stat-item:last-child {
            margin-bottom: 0;
        }
        
        .stat-item span:first-child {
            color: var(--color-gray);
        }
        
        /* FAQ Section */
        .faq-section {
            margin-bottom: 2rem;
        }
        
        .faq-section h2 {
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        
        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        
        .faq-question {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: none;
            color: var(--color-light);
            text-align: left;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .faq-icon {
            font-size: 1.2rem;
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: rgba(0, 0, 0, 0.2);
        }
        
        .faq-answer p {
            padding: 1rem;
        }
        
        .faq-item.active .faq-answer {
            max-height: 200px;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        /* Footer */
        .app-footer {
            text-align: center;
            margin-top: 3rem;
            color: var(--color-gray);
            font-size: 0.9rem;
        }
        
        .credits {
            margin-top: 0.5rem;
            opacity: 0.7;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            body {
                /*padding: 1rem;*/
            }
            
            .config-grid {
                grid-template-columns: 1fr;
            }
            
            .action-buttons {
                flex-direction: column;
            }
            
            .engagement-section {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .brand-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
        }
        
        
 /* ===== ARTICLE SPECIFIC STYLES - NO BODY STYLES ===== */
 #password-guide-article {
      width: 95%;
      margin: 0 auto;
      padding: 2rem 1.5rem 3rem 1.5rem;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    /* Hero Section */
    .password-guide-hero {
      text-align: center;
      margin-bottom: 2.5rem;
      padding: 2rem 1.5rem;
      background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
      border-radius: 32px;
      box-shadow: 0 12px 30px rgba(76, 175, 80, 0.3);
    }

    .password-guide-hero h1 {
      font-size: 2.6rem;
      font-weight: 800;
      color: white;
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
      font-family: 'Playfair Display', serif;
    }

    .password-guide-hero .password-hero-sub {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.9);
      max-width: 720px;
      margin: 0 auto;
      line-height: 1.5;
    }

    .password-guide-meta {
      display: flex;
      justify-content: center;
      gap: 2rem;
      color: rgba(255, 255, 255, 0.8);
      font-weight: 500;
      margin-top: 1.2rem;
      flex-wrap: wrap;
    }

    .password-guide-meta span i {
      margin-right: 0.5rem;
    }

    /* Main Content */
    .password-main-content {
      background: white;
      border-radius: 28px;
      padding: 2rem 2rem 2.5rem 2rem;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(76, 175, 80, 0.15);
    }

    .password-main-content h2 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-top: 2rem;
      margin-bottom: 1rem;
      color: #2e7d32;
      border-left: 5px solid #4caf50;
      padding-left: 1rem;
      font-family: 'Playfair Display', serif;
    }

    .password-main-content h2:first-of-type {
      margin-top: 0;
    }

    .password-main-content h3 {
      font-size: 1.35rem;
      font-weight: 600;
      margin: 1.5rem 0 0.75rem 0;
      color: #4caf50;
    }

    .password-main-content p {
      font-size: 1.05rem;
      color: #2d3748;
      margin-bottom: 1.2rem;
      line-height: 1.6;
    }

    .password-main-content ul, .password-main-content ol {
      margin: 1rem 0 1.2rem 1.8rem;
      color: #2d3748;
      line-height: 1.6;
    }

    .password-main-content li {
      margin-bottom: 0.5rem;
    }

    .password-highlight-box {
      background: linear-gradient(135deg, rgba(46, 125, 50, 0.08), rgba(76, 175, 80, 0.05));
      border-left: 6px solid #4caf50;
      padding: 1.25rem 1.5rem;
      border-radius: 20px;
      margin: 1.75rem 0;
    }

    .password-pro-tip {
      background: rgba(76, 175, 80, 0.1);
      border-radius: 20px;
      padding: 1.2rem 1.5rem;
      margin: 1.5rem 0;
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      border: 1px solid rgba(46, 125, 50, 0.3);
    }

    .password-pro-tip i {
      font-size: 1.8rem;
      color: #2e7d32;
    }

    .password-stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.2rem;
      margin: 2rem 0;
    }

    .password-stat-card {
      background: #f5f7fa;
      border-radius: 20px;
      padding: 1.2rem;
      text-align: center;
      transition: all 0.2s;
      border: 1px solid rgba(76, 175, 80, 0.2);
    }

    .password-stat-card .stat-number {
      font-size: 2rem;
      font-weight: 800;
      color: #2e7d32;
      margin-bottom: 0.25rem;
    }

    .password-quote-block {
      background: #f5f7fa;
      padding: 1.5rem;
      border-radius: 24px;
      text-align: center;
      font-style: italic;
      margin: 1.5rem 0;
      border: 1px solid rgba(76, 175, 80, 0.2);
    }

    .password-quote-block i {
      font-size: 2rem;
      color: #4caf50;
      margin-bottom: 0.5rem;
      display: inline-block;
    }

    .password-table-wrapper {
      overflow-x: auto;
      margin: 1.5rem 0;
    }

    .password-entropy-table {
      width: 100%;
      border-collapse: collapse;
      background: #f5f7fa;
      border-radius: 16px;
      overflow: hidden;
    }

    .password-entropy-table th, .password-entropy-table td {
      padding: 12px 16px;
      text-align: left;
      border-bottom: 1px solid rgba(76, 175, 80, 0.2);
    }

    .password-entropy-table th {
      background: rgba(76, 175, 80, 0.1);
      font-weight: 600;
      color: #2e7d32;
    }

    .password-entropy-table tr:hover {
      background: rgba(76, 175, 80, 0.05);
    }

    .password-tips-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.2rem;
      margin: 1.5rem 0;
    }

    .password-tip-card {
      background: #f5f7fa;
      border-radius: 16px;
      padding: 1.2rem;
      border: 1px solid rgba(76, 175, 80, 0.2);
      transition: all 0.2s;
    }

    .password-tip-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(76, 175, 80, 0.1);
    }

    .password-tip-title {
      font-weight: 700;
      color: #2e7d32;
      margin-bottom: 0.5rem;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .password-footer-note {
      margin-top: 2.5rem;
      text-align: center;
      font-size: 0.85rem;
      color: #718096;
      border-top: 1px solid #e2e8f0;
      padding-top: 2rem;
    }

    @media (max-width: 768px) {
      .password-guide-hero h1 {
        font-size: 2rem;
      }
      .password-main-content {
        padding: 1.5rem;
      }
      #password-guide-article {
        padding: 1rem;
      }
    }