/* Hex to Text Converter Styles */
.hex-text-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.hex-text-hero {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
    background: linear-gradient(135deg, #6B73FF 0%, #000DFF 100%);
    border-radius: 10px;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hex-text-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.hex-text-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.hex-text-tool {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.hex-text-input-container, .hex-text-output-container {
    display: flex;
    flex-direction: column;
}

.hex-text-label {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #444;
}

.hex-text-input, .hex-text-output {
    height: 200px;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    resize: vertical;
    transition: border-color 0.3s;
}

.hex-text-input:focus {
    border-color: #6B73FF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(107, 115, 255, 0.2);
}

.hex-text-output {
    background-color: #f9f9f9;
}

.hex-text-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.hex-text-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.convert-btn {
    background-color: #6B73FF;
    color: white;
    flex: 1;
}

.convert-btn:hover {
    background-color: #5a62e0;
    transform: translateY(-2px);
}

.clear-btn {
    background-color: #f1f1f1;
    color: #555;
}

.clear-btn:hover {
    background-color: #e0e0e0;
}

.copy-btn {
    background-color: #4CAF50;
    color: white;
}

.copy-btn:hover {
    background-color: #3e8e41;
}

.hex-text-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

.hex-text-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.hex-text-info-card {
    background: 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;
}

.hex-text-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hex-text-info-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #6B73FF;
    font-weight: 700;
}

.hex-text-info-content {
    line-height: 1.6;
    color: #555;
}

.hex-text-info-list {
    padding-left: 20px;
    line-height: 1.8;
    color: #555;
}

.hex-text-info-list li {
    margin-bottom: 8px;
}

.hex-text-seo-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    line-height: 1.7;
}

.hex-text-seo-content h2 {
    color: #6B73FF;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.hex-text-seo-content h3 {
    color: #6B73FF;
    margin: 20px 0 10px;
    font-size: 1.2rem;
}

.hex-text-seo-content p {
    margin-bottom: 15px;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hex-text-tool {
        grid-template-columns: 1fr;
    }
    
    .hex-text-title {
        font-size: 2rem;
    }
    
    .hex-text-actions {
        flex-direction: column;
    }
    
    .hex-text-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hex-text-container {
        padding: 15px;
    }
    
    .hex-text-hero {
        padding: 20px 0;
    }
    
    .hex-text-title {
        font-size: 1.8rem;
    }
    
    .hex-text-subtitle {
        font-size: 1rem;
    }
}