/* Password Display */
.password-display {
 position: relative;
 margin-bottom: 2rem;
}
.password-input {
 width: 100%;
 padding: 1.2rem 4rem 1.2rem 1.5rem;
 background: rgba(255, 255, 255, 0.05);
 border: 1.5px solid var(--border-light);
 border-radius: 12px;
 color: var(--text-primary);
 font-size: 1.1rem;
 font-family: "Courier New", monospace;
 transition: all 0.3s ease;
}
.password-input:focus {
 border-color: var(--accent-primary);
 box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
 outline: none;
 background: rgba(255, 255, 255, 0.08);
}
.copy-btn {
 position: absolute;
 right: 0.5rem;
 top: 50%;
 transform: translateY(-50%);
 background: rgba(99, 102, 241, 0.2);
 border: 1px solid var(--border-accent);
 border-radius: 8px;
 color: var(--text-primary);
 padding: 0.7rem;
 cursor: pointer;
 transition: all 0.3s ease;
 display: flex;
 align-items: center;
 justify-content: center;
}
.copy-btn:hover {
 background: rgba(99, 102, 241, 0.3);
 transform: translateY(-50%) scale(1.05);
}
.copy-btn.copied {
 background: rgba(16, 185, 129, 0.3);
 border-color: rgba(16, 185, 129, 0.5);
 color: var(--success-color);
}
/* Password Strength */
.password-strength {
 margin-bottom: 2rem;
}
.strength-header {
 display: flex;
 justify-content: space-between;
 align-items: center;
 margin-bottom: 0.5rem;
}
.strength-label {
 font-size: 0.9rem;
 font-weight: 600;
 color: var(--text-secondary);
}
.strength-value {
 font-size: 0.9rem;
 font-weight: 700;
}
.strength-bar {
 height: 6px;
 background: rgba(255, 255, 255, 0.1);
 border-radius: 3px;
 overflow: hidden;
}
.strength-fill {
 height: 100%;
 border-radius: 3px;
 transition: all 0.3s ease;
 width: 0%;
}
.strength-fill.weak {
 background: var(--weak-color);
 width: 33%;
}
.strength-fill.medium {
 background: var(--medium-color);
 width: 66%;
}
.strength-fill.strong {
 background: var(--strong-color);
 width: 100%;
}
/* Generator Type */
.generator-type {
 margin-bottom: 2rem;
}
.type-selector {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 1rem;
 margin-bottom: 1.5rem;
}
.type-btn {
 padding: 1rem;
 background: rgba(255, 255, 255, 0.05);
 border: 1.5px solid var(--border-light);
 border-radius: 12px;
 color: var(--text-secondary);
 font-size: 1rem;
 font-weight: 600;
 cursor: pointer;
 transition: all 0.3s ease;
 text-align: center;
}
.type-btn.active {
 background: rgba(99, 102, 241, 0.1);
 border-color: var(--accent-primary);
 color: var(--accent-primary);
}
.type-btn:hover:not(.active) {
 border-color: var(--border-accent);
 background: rgba(255, 255, 255, 0.08);
}
/* Settings Sections */
.settings-section {
 background: rgba(255, 255, 255, 0.05);
 border: 1px solid var(--border-light);
 border-radius: 12px;
 padding: 1.5rem;
 margin-bottom: 1.5rem;
 transition: all 0.3s ease;
}
.settings-section:hover {
 border-color: var(--border-accent);
}
.settings-title {
 font-size: 1.1rem;
 font-weight: 600;
 color: var(--text-primary);
 margin-bottom: 1rem;
 display: flex;
 align-items: center;
 gap: 0.5rem;
}
/* Input Groups */
.input-group {
 margin-bottom: 1.5rem;
}
.input-group label {
 display: block;
 margin-bottom: 0.8rem;
 font-size: 1rem;
 font-weight: 600;
 color: var(--text-secondary);
}
.input-group input {
 width: 100%;
 padding: 1rem 1.2rem;
 background: rgba(255, 255, 255, 0.05);
 border: 1.5px solid var(--border-light);
 border-radius: 12px;
 color: var(--text-primary);
 font-size: 1rem;
 transition: all 0.3s ease;
}
.input-group input:focus {
 border-color: var(--accent-primary);
 box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
 outline: none;
 background: rgba(255, 255, 255, 0.08);
}
/* Checkbox Groups */
.checkbox-group {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 gap: 1rem;
}
.option {
 display: flex;
 align-items: center;
 gap: 0.8rem;
 padding: 0.8rem;
 background: rgba(255, 255, 255, 0.03);
 border: 1px solid var(--border-light);
 border-radius: 8px;
 transition: all 0.3s ease;
 cursor: pointer;
}
.option:hover {
 border-color: var(--border-accent);
 background: rgba(255, 255, 255, 0.05);
}
.option input[type="checkbox"] {
 width: 18px;
 height: 18px;
 accent-color: var(--accent-primary);
 cursor: pointer;
}
.option label {
 font-size: 0.9rem;
 color: var(--text-secondary);
 cursor: pointer;
 margin: 0;
 font-weight: 500;
}
/* Word List */
.word-list {
 background: rgba(0, 0, 0, 0.3);
 border: 1px solid var(--border-light);
 border-radius: 8px;
 padding: 1rem;
 max-height: 150px;
 overflow-y: auto;
 margin-top: 1rem;
}
.word-list-item {
 padding: 0.5rem;
 margin-bottom: 0.3rem;
 background: rgba(255, 255, 255, 0.05);
 border-radius: 6px;
 font-size: 0.9rem;
 color: var(--text-secondary);
 cursor: pointer;
 transition: all 0.3s ease;
}
.word-list-item:hover {
 background: rgba(99, 102, 241, 0.1);
 color: var(--text-primary);
}
/* Generate Button */
.generate-btn {
 width: 100%;
 padding: 1.2rem 2rem;
 background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
 border: none;
 border-radius: 12px;
 color: var(--text-primary);
 font-size: 1.1rem;
 font-weight: 600;
 cursor: pointer;
 transition: all 0.3s ease;
 position: relative;
 overflow: hidden;
}
.generate-btn::before {
 content: "";
 position: absolute;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100%;
 background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
 transition: left 0.6s ease;
}
.generate-btn:hover::before {
 left: 100%;
}
.generate-btn:hover {
 transform: translateY(-2px);
 box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
 background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary), var(--accent-tertiary));
}
.generate-btn:active {
 transform: translateY(0);
}
/* Responsive Design */
@media (max-width: 768px) {
 .type-selector {
  grid-template-columns: 1fr;
 }
 .checkbox-group {
  grid-template-columns: 1fr;
 }
}
