/* Password Generator Tool Styles - Red Theme */
/* Primary Color: #e74c3c */

/* Reset for our tool only */
.password-generator-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* Tool Description Section */
.tool-description-section {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 50px 0 30px;
    margin-bottom: 0;
    text-align: center;
}

.tool-description-section .password-generator-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tool-main-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tool-subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.5;
}

/* CTA Animation */
.start-generating-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 25px 0 30px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.cta-icon {
    font-size: 1.8rem;
    color: #4cd964;
    animation: bounce 2s infinite;
}

.cta-text {
    font-size: 1.4rem;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-text:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Main Container */
.password-generator-container {
    background-color: #f8fafc;
    padding: 30px 0 50px;
    width: 100%;
}

.password-generator-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Layout */
.tool-layout {
    display: flex;
    gap: 30px;
    position: relative;
    margin-top: 30px;
}

.main-content-area {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-area {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Input Section */
.input-section {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.08);
    padding: 30px;
    border: 1px solid #ffeaea;
}

.input-section h2 {
    color: #e74c3c;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ffeaea;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-icon {
    font-size: 1.5rem;
}

/* Password Preview */
.password-preview-container {
    background: linear-gradient(135deg, #fef5f5 0%, #fff5f5 100%);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    border: 2px solid #ffeaea;
}

.password-display {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

#passwordOutput {
    flex: 1;
    padding: 18px 20px;
    border: 2px solid #e0e6ed;
    border-radius: 10px;
    font-size: 1.1rem;
    font-family: 'Courier New', monospace;
    background: white;
    color: #2c3e50;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
}

#passwordOutput:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.password-actions {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    text-align: center;
    min-height: 48px;
}

.btn-icon {
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
    background-color: #f8f9fa;
    color: #2c3e50;
    border: 2px solid #e0e6ed;
}

.btn-secondary:hover {
    background-color: #edf2f7;
    border-color: #e74c3c;
    transform: translateY(-2px);
}

.btn-copy {
    background-color: #2ecc71;
    color: white;
}

.btn-copy:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
    min-height: auto;
}

/* Strength Meter */
.password-strength {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.strength-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.strength-meter {
    flex: 1;
    height: 10px;
    background: #e0e6ed;
    border-radius: 5px;
    overflow: hidden;
    max-width: 300px;
}

.strength-bar {
    height: 100%;
    width: 0%;
    border-radius: 5px;
    transition: all 0.5s ease;
}

.strength-text {
    font-weight: 700;
    font-size: 1rem;
    min-width: 100px;
}

/* Settings Grid */
.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.setting-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #e74c3c;
    transition: transform 0.3s ease;
}

.setting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.setting-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.setting-header h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0;
}

.setting-icon {
    font-size: 1.3rem;
    color: #e74c3c;
}

/* Slider */
.slider-container {
    position: relative;
    padding: 10px 0 30px;
}

.slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, #e74c3c 0%, #e74c3c 50%, #e0e6ed 50%, #e0e6ed 100%);
    border-radius: 4px;
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: #e74c3c;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: #666;
    font-size: 0.9rem;
}

.slider-labels span:nth-child(2) {
    font-weight: 700;
    color: #e74c3c;
    font-size: 1.1rem;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s;
}

.checkbox-item:hover {
    background: rgba(231, 76, 60, 0.05);
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #bdc3c7;
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s;
}

.checkbox-item input:checked + .checkbox-custom {
    background: #e74c3c;
    border-color: #e74c3c;
}

.checkbox-item input:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-label {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
}

/* Password Controls */
.password-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

/* Privacy Notice */
.privacy-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 25px 0 0;
    padding: 16px 20px;
    background-color: #f0f9ff;
    border: 1px solid #b3e0ff;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #0066cc;
    animation: fadeIn 0.5s ease;
}

.privacy-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.privacy-text {
    line-height: 1.5;
}

/* Results Section */
.results-section {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.08);
    padding: 30px;
}

.results-section h2 {
    color: #e74c3c;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ffeaea;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Multiple Passwords Grid */
.multiple-passwords-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.password-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e0e6ed;
    transition: all 0.3s;
}

.password-item:hover {
    border-color: #e74c3c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.password-value {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 500;
    word-break: break-all;
    padding-right: 10px;
}

/* Export Options */
.export-options {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
}

.export-options h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.export-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

/* Tool Description Content */
.tool-description-content {
    background: white;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.08);
}

.tool-description-content .tool-description {
    margin-bottom: 40px;
}

.tool-description-content .tool-description p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.tool-description-content .tool-features {
    margin-top: 30px;
}

.tool-description-content .tool-features h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    font-size: 1.3rem;
}

.tool-description-content .tool-features ul {
    list-style-type: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.tool-description-content .tool-features li {
    padding: 20px;
    background: linear-gradient(135deg, #fef5f5 0%, #fff5f5 100%);
    border-radius: 10px;
    border-left: 5px solid #e74c3c;
    font-size: 1rem;
    line-height: 1.6;
}

.tool-description-content .tool-features li strong {
    color: #e74c3c;
    display: block;
    margin-bottom: 5px;
}

/* How to Use Section */
.how-to-use-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.how-to-use-section h2 {
    color: #2c3e50;
    margin-bottom: 35px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
}

.step-content h3 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 1.2rem;
}

.step-content p {
    margin: 0;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Ad Container Styles */
.ad-container {
    margin: 30px 0;
    text-align: center;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #eaeaea;
}

.ad-label {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.ad-unit {
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
}

.ad-top-sidebar {
    margin-top: 0;
}

/* Hide mobile ads on desktop */
@media (min-width: 769px) {
    .ad-mobile {
        display: none !important;
    }
}

/* Show mobile ads on mobile */
@media (max-width: 768px) {
    .ad-desktop {
        display: none !important;
    }
    .ad-container {
        margin: 20px 0;
        padding: 15px;
    }
}

/* Sidebar Styles */
.sidebar-area {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sticky-ad {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: white;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.sidebar-widget h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-icon {
    font-size: 1.1rem;
    color: #e74c3c;
}

.tips-list, .tools-list, .guidelines {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.tips-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tips-list li:before {
    content: "✓";
    color: #2ecc71;
    font-weight: bold;
}

.tips-list li:last-child {
    border-bottom: none;
}

.tools-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.tools-list li:last-child {
    border-bottom: none;
}

.tools-list a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: block;
    padding: 5px 0;
}

.tools-list a:hover {
    color: #e74c3c;
    padding-left: 5px;
}

/* Guidelines */
.guideline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.guideline-item:last-child {
    border-bottom: none;
}

.guideline-strength {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guideline-strength.weak {
    background: #ffeaea;
    color: #e74c3c;
}

.guideline-strength.fair {
    background: #fff4e6;
    color: #f39c12;
}

.guideline-strength.good {
    background: #e8f6f3;
    color: #1abc9c;
}

.guideline-strength.strong {
    background: #e8f6e8;
    color: #27ae60;
}

.guideline-desc {
    font-size: 0.9rem;
    color: #666;
}

/* Related Tools Section */
.related-tools-section {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    margin: 40px 0;
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.08);
}

.related-tools-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tool-card {
    background: #f8f9fa;
    border-radius: 14px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.15);
    border-color: #e74c3c;
    background: white;
}

.tool-card-icon {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.tool-card-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.tool-card-desc {
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
    font-size: 1rem;
}

.tool-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-tag {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tool-card-link {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.tool-card-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    color: white;
}

/* FAQ Section - Proper Toggle */
.faq-section {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    margin-top: 40px;
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.08);
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    padding: 22px 0;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: color 0.3s;
    position: relative;
}

.faq-question:hover {
    color: #e74c3c;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #e74c3c;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
    background: #e74c3c;
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-question.active + .faq-answer {
    max-height: 2000px;
    transition: max-height 0.6s ease-in-out;
}

.faq-answer-content {
    padding: 0 0 25px 0;
    margin: 0;
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

.faq-answer-content ul {
    padding-left: 20px;
    margin: 15px 0;
}

.faq-answer-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Breadcrumb Navigation */
.breadcrumb-container {
    background-color: #f8f9fa;
    border-bottom: 1px solid #eaeaea;
    padding: 15px 0;
    margin-bottom: 30px;
}

.breadcrumb {
    font-size: 0.95rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 6px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3498db;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.breadcrumb-link:hover {
    background-color: rgba(52, 152, 219, 0.1);
    color: #2980b9;
    text-decoration: underline;
}

.breadcrumb-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    color: #e74c3c;
    font-weight: 600;
}

.breadcrumb-separator {
    color: #bdc3c7;
    font-size: 0.9rem;
    padding: 0 3px;
}

.breadcrumb-icon {
    font-size: 0.95rem;
}

/* Animations */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tool-layout {
        flex-direction: column;
    }
    
    .sidebar-area {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        order: 2;
    }
    
    .sticky-ad {
        position: static;
    }
    
    .main-content-area {
        order: 1;
    }
    
    .tool-main-title {
        font-size: 2.3rem;
    }
    
    .settings-grid {
        grid-template-columns: 1fr;
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .tool-description-section {
        padding: 40px 0 25px;
    }
    
    .tool-main-title {
        font-size: 2rem;
    }
    
    .tool-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-text {
        font-size: 1.2rem;
        padding: 10px 20px;
    }
    
    .input-section,
    .results-section,
    .tool-description-content,
    .related-tools-section,
    .faq-section {
        padding: 25px 20px;
    }
    
    .input-section h2,
    .results-section h2 {
        font-size: 1.4rem;
    }
    
    .password-display {
        flex-direction: column;
    }
    
    .password-actions {
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .password-controls {
        grid-template-columns: 1fr;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .faq-question {
        font-size: 1.1rem;
        padding: 18px 0;
    }
    
    .faq-answer-content {
        font-size: 1rem;
    }
    
    .breadcrumb-container {
        padding: 12px 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .tool-main-title {
        font-size: 1.7rem;
    }
    
    .tool-subtitle {
        font-size: 1rem;
    }
    
    .section-icon {
        font-size: 1.3rem;
    }
    
    .password-value {
        font-size: 0.9rem;
    }
    
    .tool-card {
        padding: 25px 20px;
    }
    
    .tool-card-title {
        font-size: 1.3rem;
    }
    
    .related-tools-section h2,
    .faq-section h2 {
        font-size: 1.7rem;
    }
}

/* Print Styles */
@media print {
    .ad-container,
    .sidebar-area,
    .password-actions,
    .export-options,
    .related-tools-section,
    .faq-section,
    .breadcrumb-container {
        display: none !important;
    }
    
    .password-generator-container {
        background: white;
        padding: 0;
    }
    
    .tool-description-section {
        background: white !important;
        color: black !important;
        padding: 20px 0 !important;
    }
    
    .tool-main-title {
        color: black !important;
    }
}

/* Add to password-generator.css */
.multiple-passwords-container {
    margin-bottom: 30px;
}

.no-passwords-message {
    text-align: center;
    padding: 40px 20px;
    color: #e74c3c;
    font-weight: 600;
    font-size: 1.1rem;
    background: #fff5f5;
    border-radius: 10px;
    border: 2px dashed #ffcccc;
    grid-column: 1 / -1;
}

.password-item {
    min-height: 70px;
    display: flex;
    align-items: center;
}

.password-value {
    flex: 1;
    min-height: 20px;
}