/* Strikethrough Text Generator Styles */
.strikethrough-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.strikethrough-hero {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    padding: 40px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.strikethrough-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.strikethrough-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.strikethrough-tool-section {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.strikethrough-tool-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.strikethrough-input-container,
.strikethrough-output-container {
    flex: 1;
}

.strikethrough-input-label,
.strikethrough-output-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #444;
    font-size: 1.1rem;
}

.strikethrough-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.3s;
}

.strikethrough-input:focus {
    outline: none;
    border-color: #6e8efb;
}

.strikethrough-options {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.strikethrough-generate-btn {
    background-color: #6e8efb;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
}

.strikethrough-generate-btn:hover {
    background-color: #5a7df4;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.strikethrough-clear-btn {
    background-color: #f5f5f5;
    color: #666;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
}

.strikethrough-clear-btn:hover {
    background-color: #e0e0e0;
}

.strikethrough-output-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.strikethrough-output {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    min-height: 120px;
    background-color: #f9f9f9;
    overflow-wrap: break-word;
}

.strikethrough-copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.strikethrough-copy-btn:hover {
    background-color: #f0f0f0;
}

.strikethrough-preview {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #6e8efb;
}

.strikethrough-preview-label {
    font-weight: 600;
    margin-bottom: 10px;
    color: #555;
}

.strikethrough-preview-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Info Boxes */
.strikethrough-info-section {
    margin-bottom: 40px;
}

.strikethrough-info-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #444;
    position: relative;
}

.strikethrough-info-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #6e8efb, #a777e3);
    margin: 15px auto 0;
    border-radius: 2px;
}

.strikethrough-info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.strikethrough-info-box {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 3px solid #6e8efb;
}

.strikethrough-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.strikethrough-info-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.strikethrough-info-box-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.strikethrough-info-box-text {
    color: #666;
    line-height: 1.6;
}

/* Content Section */
.strikethrough-content-section {
    margin-bottom: 40px;
}

.strikethrough-content-title {
    font-size: 1.8rem;
    color: #444;
    margin-bottom: 20px;
    text-align: center;
}

.strikethrough-content-shape {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #6e8efb, #a777e3);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.strikethrough-content-text {
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
}

.strikethrough-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.strikethrough-feature {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-left: 3px solid #a777e3;
}

.strikethrough-feature-title {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 10px;
}

.strikethrough-feature-text {
    color: #666;
    line-height: 1.6;
}

.strikethrough-related-tool {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
    border: 1px dashed #ccc;
}

.strikethrough-related-text {
    margin: 0;
    color: #555;
}

.strikethrough-related-link {
    color: #6e8efb;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.strikethrough-related-link:hover {
    color: #5a7df4;
    text-decoration: underline;
}

/* FAQ Section */
.strikethrough-faq-section {
    margin-bottom: 40px;
}

.strikethrough-faq-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #444;
}

.strikethrough-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.strikethrough-faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.strikethrough-faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    background-color: white;
    border: none;
    border-left: 4px solid #6e8efb;
    font-size: 1.1rem;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.strikethrough-faq-question:hover {
    background-color: #f9f9f9;
}

.strikethrough-faq-icon {
    font-size: 1.3rem;
    transition: transform 0.3s;
}

.strikethrough-faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: #f9f9f9;
}

.strikethrough-faq-answer p {
    padding: 20px;
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.strikethrough-faq-item.active .strikethrough-faq-answer {
    max-height: 500px;
    padding: 0;
}

.strikethrough-faq-item.active .strikethrough-faq-icon {
    transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .strikethrough-title {
        font-size: 2rem;
    }
    
    .strikethrough-subtitle {
        font-size: 1rem;
    }
    
    .strikethrough-tool-section {
        padding: 20px;
    }
    
    .strikethrough-info-boxes {
        grid-template-columns: 1fr;
    }
    
    .strikethrough-content-title {
        font-size: 1.5rem;
    }
    
    .strikethrough-content-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .strikethrough-options {
        flex-direction: column;
    }
    
    .strikethrough-generate-btn,
    .strikethrough-clear-btn {
        width: 100%;
    }
    
    .strikethrough-title {
        font-size: 1.8rem;
    }
    
    .strikethrough-faq-question {
        font-size: 1rem;
        padding: 15px;
    }
}